diff --git a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/mca/mapping/BlockIdMapper.java b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/mca/mapping/BlockIdMapper.java index 89f6c116..9a54359e 100644 --- a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/mca/mapping/BlockIdMapper.java +++ b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/mca/mapping/BlockIdMapper.java @@ -42,7 +42,7 @@ public BlockIdMapper() throws IOException { mappings = new HashMap<>(); GsonConfigurationLoader loader = GsonConfigurationLoader.builder() - .setURL(getClass().getResource("/blockIdMappings.json")) + .setURL(getClass().getResource("/blockIds.json")) .build(); ConfigurationNode node = loader.load(); diff --git a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resourcepack/BlockColorCalculator.java b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resourcepack/BlockColorCalculator.java index 89af92e7..6cddd33a 100644 --- a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resourcepack/BlockColorCalculator.java +++ b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/resourcepack/BlockColorCalculator.java @@ -84,7 +84,7 @@ public void loadColorConfig(File configFile) throws IOException { colorFunction = this::getWaterAverageColor; break; default: - final Vector3f color = MathUtils.color3FromInt(ConfigUtils.readInt(entry.getValue())); + final Vector3f color = MathUtils.color3FromInt(ConfigUtils.readColorInt(entry.getValue())); colorFunction = context -> color; break; } diff --git a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/util/ConfigUtils.java b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/util/ConfigUtils.java index 569e5070..09c9993f 100644 --- a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/util/ConfigUtils.java +++ b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/util/ConfigUtils.java @@ -133,12 +133,12 @@ public static void writeVector4f(ConfigurationNode vectorNode, Vector4f v){ } /** - * Returns an integer The value can be a normal integer, an integer in String-Format, or a string in hexadecimal format prefixed with #. + * Returns an color-integer. The value can be a normal integer, an integer in String-Format, or a string in hexadecimal format prefixed with # (css-style: e.g. #f16 becomes #ff1166). * @param node The Configuration Node with the value * @return The parsed Integer * @throws NumberFormatException If the value is not formatted correctly or if there is no value present. */ - public static int readInt(ConfigurationNode node) throws NumberFormatException { + public static int readColorInt(ConfigurationNode node) throws NumberFormatException { Object value = node.getValue(); if (value == null) throw new NumberFormatException("No value!"); @@ -150,7 +150,11 @@ public static int readInt(ConfigurationNode node) throws NumberFormatException { String val = value.toString(); if (val.charAt(0) == '#') { - return Integer.parseInt(val.substring(1), 16); + val = val.substring(1); + if (val.length() == 3) val = "f" + val; + if (val.length() == 4) val = "" + val.charAt(0) + val.charAt(0) + val.charAt(1) + val.charAt(1) + val.charAt(2) + val.charAt(2) + val.charAt(3) + val.charAt(3); + if (val.length() == 6) val = "ff" + val; + return Integer.parseUnsignedInt(val, 16); } return Integer.parseInt(val); diff --git a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/world/Biome.java b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/world/Biome.java index d8425fc9..8f8fcb30 100644 --- a/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/world/Biome.java +++ b/BlueMapCore/src/main/java/de/bluecolored/bluemap/core/world/Biome.java @@ -96,9 +96,9 @@ public static Biome create(String id, ConfigurationNode node) { biome.ordinal = node.getNode("id").getInt(biome.ordinal); biome.humidity = node.getNode("humidity").getFloat(biome.humidity); biome.temp = node.getNode("temp").getFloat(biome.temp); - try { biome.waterColor = MathUtils.color3FromInt(ConfigUtils.readInt(node.getNode("watercolor"))); } catch (NumberFormatException ignored) {} - try { biome.overlayFoliageColor = MathUtils.color4FromInt(ConfigUtils.readInt(node.getNode("foliagecolor"))); } catch (NumberFormatException ignored) {} - try { biome.overlayGrassColor = MathUtils.color4FromInt(ConfigUtils.readInt(node.getNode("grasscolor"))); } catch (NumberFormatException ignored) {} + try { biome.waterColor = MathUtils.color3FromInt(ConfigUtils.readColorInt(node.getNode("watercolor"))); } catch (NumberFormatException ignored) {} + try { biome.overlayFoliageColor = MathUtils.color4FromInt(ConfigUtils.readColorInt(node.getNode("foliagecolor"))); } catch (NumberFormatException ignored) {} + try { biome.overlayGrassColor = MathUtils.color4FromInt(ConfigUtils.readColorInt(node.getNode("grasscolor"))); } catch (NumberFormatException ignored) {} return biome; } diff --git a/BlueMapCore/src/main/resources/biomes.json b/BlueMapCore/src/main/resources/biomes.json index 946c0b47..6e4a96b3 100644 --- a/BlueMapCore/src/main/resources/biomes.json +++ b/BlueMapCore/src/main/resources/biomes.json @@ -1,452 +1,470 @@ { - "ocean": { - "id": 0, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "plains": { - "id": 1, - "humidity": 0.4, - "temp": 0.8, - "watercolor": 4159204 - }, - "desert": { - "id": 2, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "mountains": { - "id": 3, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "forest": { - "id": 4, - "humidity": 0.8, - "temp": 0.7, - "watercolor": 4159204 - }, - "taiga": { - "id": 5, - "humidity": 0.8, - "temp": 0.25, - "watercolor": 4159204 - }, - "swamp": { - "id": 6, - "humidity": 0.9, - "temp": 0.8, - "watercolor": 6388580 - }, - "river": { - "id": 7, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "nether": { - "id": 8, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "the_end": { - "id": 9, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "frozen_ocean": { - "id": 10, - "humidity": 0.5, - "temp": 0.0, - "watercolor": 3750089 - }, - "frozen_river": { - "id": 11, - "humidity": 0.5, - "temp": 0.0, - "watercolor": 3750089 - }, - "snowy_tundra": { - "id": 12, - "humidity": 0.5, - "temp": 0.0, - "watercolor": 4159204 - }, - "snowy_mountains": { - "id": 13, - "humidity": 0.5, - "temp": 0.0, - "watercolor": 4159204 - }, - "mushroom_fields": { - "id": 14, - "humidity": 1.0, - "temp": 0.9, - "watercolor": 4159204 - }, - "mushroom_field_shore": { - "id": 15, - "humidity": 1.0, - "temp": 0.9, - "watercolor": 4159204 - }, - "beach": { - "id": 16, - "humidity": 0.4, - "temp": 0.8, - "watercolor": 4159204 - }, - "desert_hills": { - "id": 17, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "wooded_hills": { - "id": 18, - "humidity": 0.8, - "temp": 0.7, - "watercolor": 4159204 - }, - "taiga_hills": { - "id": 19, - "humidity": 0.8, - "temp": 0.25, - "watercolor": 4159204 - }, - "mountain_edge": { - "id": 20, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "jungle": { - "id": 21, - "humidity": 0.9, - "temp": 0.95, - "watercolor": 4159204 - }, - "jungle_hills": { - "id": 22, - "humidity": 0.9, - "temp": 0.95, - "watercolor": 4159204 - }, - "jungle_edge": { - "id": 23, - "humidity": 0.8, - "temp": 0.95, - "watercolor": 4159204 - }, - "deep_ocean": { - "id": 24, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "stone_shore": { - "id": 25, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "snowy_beach": { - "id": 26, - "humidity": 0.3, - "temp": 0.05, - "watercolor": 4020182 - }, - "birch_forest": { - "id": 27, - "humidity": 0.6, - "temp": 0.6, - "watercolor": 4159204 - }, - "birch_forest_hills": { - "id": 28, - "humidity": 0.6, - "temp": 0.6, - "watercolor": 4159204 - }, - "dark_forest": { - "id": 29, - "humidity": 0.8, - "temp": 0.7, - "watercolor": 4159204 - }, - "snowy_taiga": { - "id": 30, - "humidity": 0.4, - "temp": -0.5, - "watercolor": 4020182 - }, - "snowy_taiga_hills": { - "id": 31, - "humidity": 0.4, - "temp": -0.5, - "watercolor": 4020182 - }, - "giant_tree_taiga": { - "id": 32, - "humidity": 0.8, - "temp": 0.3, - "watercolor": 4159204 - }, - "giant_tree_taiga_hills": { - "id": 33, - "humidity": 0.8, - "temp": 0.3, - "watercolor": 4159204 - }, - "wooded_mountains": { - "id": 34, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "savanna": { - "id": 35, - "humidity": 0.0, - "temp": 1.2, - "watercolor": 4159204 - }, - "savanna_plateau": { - "id": 36, - "humidity": 0.0, - "temp": 1.0, - "watercolor": 4159204 - }, - "badlands": { - "id": 37, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "wooded_badlands_plateau": { - "id": 38, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "badlands_plateau": { - "id": 39, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "small_end_islands": { - "id": 40, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "end_midlands": { - "id": 41, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "end_highlands": { - "id": 42, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "end_barrens": { - "id": 43, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "warm_ocean": { - "id": 44, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4445678 - }, - "lukewarm_ocean": { - "id": 45, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4566514 - }, - "cold_ocean": { - "id": 46, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4020182 - }, - "deep_warm_ocean": { - "id": 47, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4445678 - }, - "deep_lukewarm_ocean": { - "id": 48, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4566514 - }, - "deep_cold_ocean": { - "id": 49, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4020182 - }, - "deep_frozen_ocean": { - "id": 50, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 3750089 - }, - "the_void": { - "id": 127, - "humidity": 0.5, - "temp": 0.5, - "watercolor": 4159204 - }, - "sunflower_plains": { - "id": 129, - "humidity": 0.4, - "temp": 0.8, - "watercolor": 4159204 - }, - "desert_lakes": { - "id": 130, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "gravelly_mountains": { - "id": 131, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "flower_forest": { - "id": 132, - "humidity": 0.8, - "temp": 0.7, - "watercolor": 4159204 - }, - "taiga_mountains": { - "id": 133, - "humidity": 0.8, - "temp": 0.25, - "watercolor": 4159204 - }, - "swamp_hills": { - "id": 134, - "humidity": 0.9, - "temp": 0.8, - "watercolor": 6388580 - }, - "ice_spikes": { - "id": 140, - "humidity": 0.5, - "temp": 0.0, - "watercolor": 4159204 - }, - "modified_jungle": { - "id": 149, - "humidity": 0.9, - "temp": 0.95, - "watercolor": 4159204 - }, - "modified_jungle_edge": { - "id": 151, - "humidity": 0.8, - "temp": 0.95, - "watercolor": 4159204 - }, - "tall_birch_forest": { - "id": 155, - "humidity": 0.6, - "temp": 0.6, - "watercolor": 4159204 - }, - "tall_birch_hills": { - "id": 156, - "humidity": 0.6, - "temp": 0.6, - "watercolor": 4159204 - }, - "dark_forest_hills": { - "id": 157, - "humidity": 0.8, - "temp": 0.7, - "watercolor": 4159204 - }, - "snowy_taiga_mountains": { - "id": 158, - "humidity": 0.4, - "temp": -0.5, - "watercolor": 4020182 - }, - "giant_spruce_taiga": { - "id": 160, - "humidity": 0.8, - "temp": 0.25, - "watercolor": 4159204 - }, - "giant_spruce_taiga_hills": { - "id": 161, - "humidity": 0.8, - "temp": 0.25, - "watercolor": 4159204 - }, - "modified_gravelly_mountains": { - "id": 162, - "humidity": 0.3, - "temp": 0.2, - "watercolor": 4159204 - }, - "shattered_savanna": { - "id": 163, - "humidity": 0.0, - "temp": 1.1, - "watercolor": 4159204 - }, - "shattered_savanna_plateau": { - "id": 164, - "humidity": 0.0, - "temp": 1.0, - "watercolor": 4159204 - }, - "eroded_badlands": { - "id": 165, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "modified_wooded_badlands_plateau": { - "id": 166, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "modified_badlands_plateau": { - "id": 167, - "humidity": 0.0, - "temp": 2.0, - "watercolor": 4159204 - }, - "bamboo_jungle": { - "id": 168, - "humidity": 0.9, - "temp": 0.95, - "watercolor": 4159204 - }, - "bamboo_jungle_hills": { - "id": 169, - "humidity": 0.9, - "temp": 0.95, - "watercolor": 4159204 - } -} + "minecraft:ocean": { + "id": 0, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:plains": { + "id": 1, + "humidity": 0.4, + "temp": 0.8, + "watercolor": 4159204 + }, + "minecraft:desert": { + "id": 2, + "humidity": 0.0, + "temp": 2.0, + "watercolor": 4159204 + }, + "minecraft:mountains": { + "id": 3, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:forest": { + "id": 4, + "humidity": 0.8, + "temp": 0.7, + "watercolor": 4159204 + }, + "minecraft:taiga": { + "id": 5, + "humidity": 0.8, + "temp": 0.25, + "watercolor": 4159204 + }, + "minecraft:swamp": { + "id": 6, + "humidity": 0.9, + "temp": 0.8, + "foliagecolor": "#6A7039", + "grasscolor": "#6A7039", + "watercolor": 6388580 + }, + "minecraft:river": { + "id": 7, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:nether": { + "id": 8, + "humidity": 0.0, + "temp": 2.0, + "watercolor": 4159204 + }, + "minecraft:the_end": { + "id": 9, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:frozen_ocean": { + "id": 10, + "humidity": 0.5, + "temp": 0.0, + "watercolor": 3750089 + }, + "minecraft:frozen_river": { + "id": 11, + "humidity": 0.5, + "temp": 0.0, + "watercolor": 3750089 + }, + "minecraft:snowy_tundra": { + "id": 12, + "humidity": 0.5, + "temp": 0.0, + "watercolor": 4159204 + }, + "minecraft:snowy_mountains": { + "id": 13, + "humidity": 0.5, + "temp": 0.0, + "watercolor": 4159204 + }, + "minecraft:mushroom_fields": { + "id": 14, + "humidity": 1.0, + "temp": 0.9, + "watercolor": 4159204 + }, + "minecraft:mushroom_field_shore": { + "id": 15, + "humidity": 1.0, + "temp": 0.9, + "watercolor": 4159204 + }, + "minecraft:beach": { + "id": 16, + "humidity": 0.4, + "temp": 0.8, + "watercolor": 4159204 + }, + "minecraft:desert_hills": { + "id": 17, + "humidity": 0.0, + "temp": 2.0, + "watercolor": 4159204 + }, + "minecraft:wooded_hills": { + "id": 18, + "humidity": 0.8, + "temp": 0.7, + "watercolor": 4159204 + }, + "minecraft:taiga_hills": { + "id": 19, + "humidity": 0.8, + "temp": 0.25, + "watercolor": 4159204 + }, + "minecraft:mountain_edge": { + "id": 20, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:jungle": { + "id": 21, + "humidity": 0.9, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:jungle_hills": { + "id": 22, + "humidity": 0.9, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:jungle_edge": { + "id": 23, + "humidity": 0.8, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:deep_ocean": { + "id": 24, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:stone_shore": { + "id": 25, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:snowy_beach": { + "id": 26, + "humidity": 0.3, + "temp": 0.05, + "watercolor": 4020182 + }, + "minecraft:birch_forest": { + "id": 27, + "humidity": 0.6, + "temp": 0.6, + "watercolor": 4159204 + }, + "minecraft:birch_forest_hills": { + "id": 28, + "humidity": 0.6, + "temp": 0.6, + "watercolor": 4159204 + }, + "minecraft:dark_forest": { + "id": 29, + "humidity": 0.8, + "temp": 0.7, + "foliagecolor": "#5528340a", + "grasscolor": "#8828340a", + "watercolor": 4159204 + }, + "minecraft:snowy_taiga": { + "id": 30, + "humidity": 0.4, + "temp": -0.5, + "watercolor": 4020182 + }, + "minecraft:snowy_taiga_hills": { + "id": 31, + "humidity": 0.4, + "temp": -0.5, + "watercolor": 4020182 + }, + "minecraft:giant_tree_taiga": { + "id": 32, + "humidity": 0.8, + "temp": 0.3, + "watercolor": 4159204 + }, + "minecraft:giant_tree_taiga_hills": { + "id": 33, + "humidity": 0.8, + "temp": 0.3, + "watercolor": 4159204 + }, + "minecraft:wooded_mountains": { + "id": 34, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:savanna": { + "id": 35, + "humidity": 0.0, + "temp": 1.2, + "watercolor": 4159204 + }, + "minecraft:savanna_plateau": { + "id": 36, + "humidity": 0.0, + "temp": 1.0, + "watercolor": 4159204 + }, + "minecraft:badlands": { + "id": 37, + "humidity": 0.0, + "temp": 2.0, + "foliagecolor": "#9e814d", + "grasscolor": "#90814d", + "watercolor": 4159204 + }, + "minecraft:wooded_badlands_plateau": { + "id": 38, + "humidity": 0.0, + "temp": 2.0, + "foliagecolor": "#9e814d", + "grasscolor": "#90814d", + "watercolor": 4159204 + }, + "minecraft:badlands_plateau": { + "id": 39, + "humidity": 0.0, + "temp": 2.0, + "foliagecolor": "#9e814d", + "grasscolor": "#90814d", + "watercolor": 4159204 + }, + "minecraft:small_end_islands": { + "id": 40, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:end_midlands": { + "id": 41, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:end_highlands": { + "id": 42, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:end_barrens": { + "id": 43, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:warm_ocean": { + "id": 44, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4445678 + }, + "minecraft:lukewarm_ocean": { + "id": 45, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4566514 + }, + "minecraft:cold_ocean": { + "id": 46, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4020182 + }, + "minecraft:deep_warm_ocean": { + "id": 47, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4445678 + }, + "minecraft:deep_lukewarm_ocean": { + "id": 48, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4566514 + }, + "minecraft:deep_cold_ocean": { + "id": 49, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4020182 + }, + "minecraft:deep_frozen_ocean": { + "id": 50, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 3750089 + }, + "minecraft:the_void": { + "id": 127, + "humidity": 0.5, + "temp": 0.5, + "watercolor": 4159204 + }, + "minecraft:sunflower_plains": { + "id": 129, + "humidity": 0.4, + "temp": 0.8, + "watercolor": 4159204 + }, + "minecraft:desert_lakes": { + "id": 130, + "humidity": 0.0, + "temp": 2.0, + "watercolor": 4159204 + }, + "minecraft:gravelly_mountains": { + "id": 131, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:flower_forest": { + "id": 132, + "humidity": 0.8, + "temp": 0.7, + "watercolor": 4159204 + }, + "minecraft:taiga_mountains": { + "id": 133, + "humidity": 0.8, + "temp": 0.25, + "watercolor": 4159204 + }, + "minecraft:swamp_hills": { + "id": 134, + "humidity": 0.9, + "temp": 0.8, + "foliagecolor": "#6A7039", + "grasscolor": "#6A7039", + "watercolor": 6388580 + }, + "minecraft:ice_spikes": { + "id": 140, + "humidity": 0.5, + "temp": 0.0, + "watercolor": 4159204 + }, + "minecraft:modified_jungle": { + "id": 149, + "humidity": 0.9, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:modified_jungle_edge": { + "id": 151, + "humidity": 0.8, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:tall_birch_forest": { + "id": 155, + "humidity": 0.6, + "temp": 0.6, + "watercolor": 4159204 + }, + "minecraft:tall_birch_hills": { + "id": 156, + "humidity": 0.6, + "temp": 0.6, + "watercolor": 4159204 + }, + "minecraft:dark_forest_hills": { + "id": 157, + "humidity": 0.8, + "temp": 0.7, + "foliagecolor": "#5528340a", + "grasscolor": "#8828340a", + "watercolor": 4159204 + }, + "minecraft:snowy_taiga_mountains": { + "id": 158, + "humidity": 0.4, + "temp": -0.5, + "watercolor": 4020182 + }, + "minecraft:giant_spruce_taiga": { + "id": 160, + "humidity": 0.8, + "temp": 0.25, + "watercolor": 4159204 + }, + "minecraft:giant_spruce_taiga_hills": { + "id": 161, + "humidity": 0.8, + "temp": 0.25, + "watercolor": 4159204 + }, + "minecraft:modified_gravelly_mountains": { + "id": 162, + "humidity": 0.3, + "temp": 0.2, + "watercolor": 4159204 + }, + "minecraft:shattered_savanna": { + "id": 163, + "humidity": 0.0, + "temp": 1.1, + "watercolor": 4159204 + }, + "minecraft:shattered_savanna_plateau": { + "id": 164, + "humidity": 0.0, + "temp": 1.0, + "watercolor": 4159204 + }, + "minecraft:eroded_badlands": { + "id": 165, + "humidity": 0.0, + "temp": 2.0, + "foliagecolor": "#9e814d", + "grasscolor": "#90814d", + "watercolor": 4159204 + }, + "minecraft:modified_wooded_badlands_plateau": { + "id": 166, + "humidity": 0.0, + "temp": 2.0, + "watercolor": 4159204 + }, + "minecraft:modified_badlands_plateau": { + "id": 167, + "humidity": 0.0, + "temp": 2.0, + "foliagecolor": "#9e814d", + "grasscolor": "#90814d", + "watercolor": 4159204 + }, + "minecraft:bamboo_jungle": { + "id": 168, + "humidity": 0.9, + "temp": 0.95, + "watercolor": 4159204 + }, + "minecraft:bamboo_jungle_hills": { + "id": 169, + "humidity": 0.9, + "temp": 0.95, + "watercolor": 4159204 + } +} \ No newline at end of file diff --git a/BlueMapCore/src/main/resources/blockColors.json b/BlueMapCore/src/main/resources/blockColors.json index 08001cf4..f53cedb1 100644 --- a/BlueMapCore/src/main/resources/blockColors.json +++ b/BlueMapCore/src/main/resources/blockColors.json @@ -1,12 +1,12 @@ { "default": "@foliage", - "minecraft:water" : "@water", - "minecraft:grass_block" : "@grass", - "minecraft:grass" : "@grass", - "minecraft:tall_grass" : "@grass", - "minecraft:fern" : "@grass", - "minecraft:large_fern" : "@grass", - "minecraft:redstone_wire" : "#ff0000", - "minecraft:birch_leaves" : "#86a863", - "minecraft:spruce_leaves" : "#51946b" + "minecraft:water": "@water", + "minecraft:grass_block": "@grass", + "minecraft:grass": "@grass", + "minecraft:tall_grass": "@grass", + "minecraft:fern": "@grass", + "minecraft:large_fern": "@grass", + "minecraft:redstone_wire": "#ff0000", + "minecraft:birch_leaves": "#86a863", + "minecraft:spruce_leaves": "#51946b" } \ No newline at end of file diff --git a/BlueMapCore/src/main/resources/blockIdMappings.json b/BlueMapCore/src/main/resources/blockIdMappings.json deleted file mode 100644 index e146a386..00000000 --- a/BlueMapCore/src/main/resources/blockIdMappings.json +++ /dev/null @@ -1,1487 +0,0 @@ -{ - "1:0": "minecraft:stone", - "1:1": "minecraft:granite", - "1:2": "minecraft:polished_granite", - "1:3": "minecraft:diorite", - "1:4": "minecraft:polished_diorite", - "1:5": "minecraft:andesite", - "1:6": "minecraft:polished_andesite", - "2:0": "minecraft:grass_block[snowy=false]", - "3:0": "minecraft:dirt", - "3:1": "minecraft:coarse_dirt", - "3:2": "minecraft:podzol[snowy=false]", - "4:0": "minecraft:cobblestone", - "5:0": "minecraft:oak_planks", - "5:1": "minecraft:spruce_planks", - "5:2": "minecraft:birch_planks", - "5:3": "minecraft:jungle_planks", - "5:4": "minecraft:acacia_planks", - "5:5": "minecraft:dark_oak_planks", - "6:0": "minecraft:oak_sapling[stage=0]", - "6:1": "minecraft:spruce_sapling[stage=0]", - "6:2": "minecraft:birch_sapling[stage=0]", - "6:3": "minecraft:jungle_sapling[stage=0]", - "6:4": "minecraft:acacia_sapling[stage=0]", - "6:5": "minecraft:dark_oak_sapling[stage=0]", - "6:8": "minecraft:oak_sapling[stage=1]", - "6:9": "minecraft:spruce_sapling[stage=1]", - "6:10": "minecraft:birch_sapling[stage=1]", - "6:11": "minecraft:jungle_sapling[stage=1]", - "6:12": "minecraft:acacia_sapling[stage=1]", - "6:13": "minecraft:dark_oak_sapling[stage=1]", - "7:0": "minecraft:bedrock", - "8:0": "minecraft:water[level=0]", - "8:1": "minecraft:water[level=1]", - "8:2": "minecraft:water[level=2]", - "8:3": "minecraft:water[level=3]", - "8:4": "minecraft:water[level=4]", - "8:5": "minecraft:water[level=5]", - "8:6": "minecraft:water[level=6]", - "8:7": "minecraft:water[level=7]", - "8:8": "minecraft:water[level=8]", - "8:9": "minecraft:water[level=9]", - "8:10": "minecraft:water[level=10]", - "8:11": "minecraft:water[level=11]", - "8:12": "minecraft:water[level=12]", - "8:13": "minecraft:water[level=13]", - "8:14": "minecraft:water[level=14]", - "8:15": "minecraft:water[level=15]", - "9:0": "minecraft:water[level=0]", - "9:1": "minecraft:water[level=1]", - "9:2": "minecraft:water[level=2]", - "9:3": "minecraft:water[level=3]", - "9:4": "minecraft:water[level=4]", - "9:5": "minecraft:water[level=5]", - "9:6": "minecraft:water[level=6]", - "9:7": "minecraft:water[level=7]", - "9:8": "minecraft:water[level=8]", - "9:9": "minecraft:water[level=9]", - "9:10": "minecraft:water[level=10]", - "9:11": "minecraft:water[level=11]", - "9:12": "minecraft:water[level=12]", - "9:13": "minecraft:water[level=13]", - "9:14": "minecraft:water[level=14]", - "9:15": "minecraft:water[level=15]", - "10:0": "minecraft:lava[level=0]", - "10:1": "minecraft:lava[level=1]", - "10:2": "minecraft:lava[level=2]", - "10:3": "minecraft:lava[level=3]", - "10:4": "minecraft:lava[level=4]", - "10:5": "minecraft:lava[level=5]", - "10:6": "minecraft:lava[level=6]", - "10:7": "minecraft:lava[level=7]", - "10:8": "minecraft:lava[level=8]", - "10:9": "minecraft:lava[level=9]", - "10:10": "minecraft:lava[level=10]", - "10:11": "minecraft:lava[level=11]", - "10:12": "minecraft:lava[level=12]", - "10:13": "minecraft:lava[level=13]", - "10:14": "minecraft:lava[level=14]", - "10:15": "minecraft:lava[level=15]", - "11:0": "minecraft:lava[level=0]", - "11:1": "minecraft:lava[level=1]", - "11:2": "minecraft:lava[level=2]", - "11:3": "minecraft:lava[level=3]", - "11:4": "minecraft:lava[level=4]", - "11:5": "minecraft:lava[level=5]", - "11:6": "minecraft:lava[level=6]", - "11:7": "minecraft:lava[level=7]", - "11:8": "minecraft:lava[level=8]", - "11:9": "minecraft:lava[level=9]", - "11:10": "minecraft:lava[level=10]", - "11:11": "minecraft:lava[level=11]", - "11:12": "minecraft:lava[level=12]", - "11:13": "minecraft:lava[level=13]", - "11:14": "minecraft:lava[level=14]", - "11:15": "minecraft:lava[level=15]", - "12:0": "minecraft:sand", - "12:1": "minecraft:red_sand", - "13:0": "minecraft:gravel", - "14:0": "minecraft:gold_ore", - "15:0": "minecraft:iron_ore", - "16:0": "minecraft:coal_ore", - "17:0": "minecraft:oak_log[axis=y]", - "17:1": "minecraft:spruce_log[axis=y]", - "17:2": "minecraft:birch_log[axis=y]", - "17:3": "minecraft:jungle_log[axis=y]", - "17:4": "minecraft:oak_log[axis=x]", - "17:5": "minecraft:spruce_log[axis=x]", - "17:6": "minecraft:birch_log[axis=x]", - "17:7": "minecraft:jungle_log[axis=x]", - "17:8": "minecraft:oak_log[axis=z]", - "17:9": "minecraft:spruce_log[axis=z]", - "17:10": "minecraft:birch_log[axis=z]", - "17:11": "minecraft:jungle_log[axis=z]", - "17:12": "minecraft:oak_bark", - "17:13": "minecraft:spruce_bark", - "17:14": "minecraft:birch_bark", - "17:15": "minecraft:jungle_bark", - "18:0": "minecraft:oak_leaves[check_decay=false,decayable=true]", - "18:1": "minecraft:spruce_leaves[check_decay=false,decayable=true]", - "18:2": "minecraft:birch_leaves[check_decay=false,decayable=true]", - "18:3": "minecraft:jungle_leaves[check_decay=false,decayable=true]", - "18:4": "minecraft:oak_leaves[check_decay=false,decayable=false]", - "18:5": "minecraft:spruce_leaves[check_decay=false,decayable=false]", - "18:6": "minecraft:birch_leaves[check_decay=false,decayable=false]", - "18:7": "minecraft:jungle_leaves[check_decay=false,decayable=false]", - "18:8": "minecraft:oak_leaves[check_decay=true,decayable=true]", - "18:9": "minecraft:spruce_leaves[check_decay=true,decayable=true]", - "18:10": "minecraft:birch_leaves[check_decay=true,decayable=true]", - "18:11": "minecraft:jungle_leaves[check_decay=true,decayable=true]", - "18:12": "minecraft:oak_leaves[check_decay=true,decayable=false]", - "18:13": "minecraft:spruce_leaves[check_decay=true,decayable=false]", - "18:14": "minecraft:birch_leaves[check_decay=true,decayable=false]", - "18:15": "minecraft:jungle_leaves[check_decay=true,decayable=false]", - "19:0": "minecraft:sponge", - "19:1": "minecraft:wet_sponge", - "20:0": "minecraft:glass", - "21:0": "minecraft:lapis_ore", - "22:0": "minecraft:lapis_block", - "23:0": "minecraft:dispenser[facing=down,triggered=false]", - "23:1": "minecraft:dispenser[facing=up,triggered=false]", - "23:2": "minecraft:dispenser[facing=north,triggered=false]", - "23:3": "minecraft:dispenser[facing=south,triggered=false]", - "23:4": "minecraft:dispenser[facing=west,triggered=false]", - "23:5": "minecraft:dispenser[facing=east,triggered=false]", - "23:8": "minecraft:dispenser[facing=down,triggered=true]", - "23:9": "minecraft:dispenser[facing=up,triggered=true]", - "23:10": "minecraft:dispenser[facing=north,triggered=true]", - "23:11": "minecraft:dispenser[facing=south,triggered=true]", - "23:12": "minecraft:dispenser[facing=west,triggered=true]", - "23:13": "minecraft:dispenser[facing=east,triggered=true]", - "24:0": "minecraft:sandstone", - "24:1": "minecraft:chiseled_sandstone", - "24:2": "minecraft:cut_sandstone", - "25:0": "minecraft:note_block", - "27:0": "minecraft:powered_rail[powered=false,shape=north_south]", - "27:1": "minecraft:powered_rail[powered=false,shape=east_west]", - "27:2": "minecraft:powered_rail[powered=false,shape=ascending_east]", - "27:3": "minecraft:powered_rail[powered=false,shape=ascending_west]", - "27:4": "minecraft:powered_rail[powered=false,shape=ascending_north]", - "27:5": "minecraft:powered_rail[powered=false,shape=ascending_south]", - "27:8": "minecraft:powered_rail[powered=true,shape=north_south]", - "27:9": "minecraft:powered_rail[powered=true,shape=east_west]", - "27:10": "minecraft:powered_rail[powered=true,shape=ascending_east]", - "27:11": "minecraft:powered_rail[powered=true,shape=ascending_west]", - "27:12": "minecraft:powered_rail[powered=true,shape=ascending_north]", - "27:13": "minecraft:powered_rail[powered=true,shape=ascending_south]", - "28:0": "minecraft:detector_rail[powered=false,shape=north_south]", - "28:1": "minecraft:detector_rail[powered=false,shape=east_west]", - "28:2": "minecraft:detector_rail[powered=false,shape=ascending_east]", - "28:3": "minecraft:detector_rail[powered=false,shape=ascending_west]", - "28:4": "minecraft:detector_rail[powered=false,shape=ascending_north]", - "28:5": "minecraft:detector_rail[powered=false,shape=ascending_south]", - "28:8": "minecraft:detector_rail[powered=true,shape=north_south]", - "28:9": "minecraft:detector_rail[powered=true,shape=east_west]", - "28:10": "minecraft:detector_rail[powered=true,shape=ascending_east]", - "28:11": "minecraft:detector_rail[powered=true,shape=ascending_west]", - "28:12": "minecraft:detector_rail[powered=true,shape=ascending_north]", - "28:13": "minecraft:detector_rail[powered=true,shape=ascending_south]", - "29:0": "minecraft:sticky_piston[facing=down,extended=false]", - "29:1": "minecraft:sticky_piston[facing=up,extended=false]", - "29:2": "minecraft:sticky_piston[facing=north,extended=false]", - "29:3": "minecraft:sticky_piston[facing=south,extended=false]", - "29:4": "minecraft:sticky_piston[facing=west,extended=false]", - "29:5": "minecraft:sticky_piston[facing=east,extended=false]", - "29:8": "minecraft:sticky_piston[facing=down,extended=true]", - "29:9": "minecraft:sticky_piston[facing=up,extended=true]", - "29:10": "minecraft:sticky_piston[facing=north,extended=true]", - "29:11": "minecraft:sticky_piston[facing=south,extended=true]", - "29:12": "minecraft:sticky_piston[facing=west,extended=true]", - "29:13": "minecraft:sticky_piston[facing=east,extended=true]", - "30:0": "minecraft:cobweb", - "31:0": "minecraft:dead_bush", - "31:1": "minecraft:grass", - "31:2": "minecraft:fern", - "32:0": "minecraft:dead_bush", - "33:0": "minecraft:piston[facing=down,extended=false]", - "33:1": "minecraft:piston[facing=up,extended=false]", - "33:2": "minecraft:piston[facing=north,extended=false]", - "33:3": "minecraft:piston[facing=south,extended=false]", - "33:4": "minecraft:piston[facing=west,extended=false]", - "33:5": "minecraft:piston[facing=east,extended=false]", - "33:8": "minecraft:piston[facing=down,extended=true]", - "33:9": "minecraft:piston[facing=up,extended=true]", - "33:10": "minecraft:piston[facing=north,extended=true]", - "33:11": "minecraft:piston[facing=south,extended=true]", - "33:12": "minecraft:piston[facing=west,extended=true]", - "33:13": "minecraft:piston[facing=east,extended=true]", - "34:0": "minecraft:piston_head[facing=down,short=false,type=normal]", - "34:1": "minecraft:piston_head[facing=up,short=false,type=normal]", - "34:2": "minecraft:piston_head[facing=north,short=false,type=normal]", - "34:3": "minecraft:piston_head[facing=south,short=false,type=normal]", - "34:4": "minecraft:piston_head[facing=west,short=false,type=normal]", - "34:5": "minecraft:piston_head[facing=east,short=false,type=normal]", - "34:8": "minecraft:piston_head[facing=down,short=false,type=sticky]", - "34:9": "minecraft:piston_head[facing=up,short=false,type=sticky]", - "34:10": "minecraft:piston_head[facing=north,short=false,type=sticky]", - "34:11": "minecraft:piston_head[facing=south,short=false,type=sticky]", - "34:12": "minecraft:piston_head[facing=west,short=false,type=sticky]", - "34:13": "minecraft:piston_head[facing=east,short=false,type=sticky]", - "35:0": "minecraft:white_wool", - "35:1": "minecraft:orange_wool", - "35:2": "minecraft:magenta_wool", - "35:3": "minecraft:light_blue_wool", - "35:4": "minecraft:yellow_wool", - "35:5": "minecraft:lime_wool", - "35:6": "minecraft:pink_wool", - "35:7": "minecraft:gray_wool", - "35:8": "minecraft:light_gray_wool", - "35:9": "minecraft:cyan_wool", - "35:10": "minecraft:purple_wool", - "35:11": "minecraft:blue_wool", - "35:12": "minecraft:brown_wool", - "35:13": "minecraft:green_wool", - "35:14": "minecraft:red_wool", - "35:15": "minecraft:black_wool", - "37:0": "minecraft:dandelion", - "38:0": "minecraft:poppy", - "38:1": "minecraft:blue_orchid", - "38:2": "minecraft:allium", - "38:3": "minecraft:azure_bluet", - "38:4": "minecraft:red_tulip", - "38:5": "minecraft:orange_tulip", - "38:6": "minecraft:white_tulip", - "38:7": "minecraft:pink_tulip", - "38:8": "minecraft:oxeye_daisy", - "39:0": "minecraft:brown_mushroom", - "40:0": "minecraft:red_mushroom", - "41:0": "minecraft:gold_block", - "42:0": "minecraft:iron_block", - "43:0": "minecraft:stone_slab[type=double]", - "43:1": "minecraft:sandstone_slab[type=double]", - "43:2": "minecraft:petrified_oak_slab[type=double]", - "43:3": "minecraft:cobblestone_slab[type=double]", - "43:4": "minecraft:brick_slab[type=double]", - "43:5": "minecraft:stone_brick_slab[type=double]", - "43:6": "minecraft:nether_brick_slab[type=double]", - "43:7": "minecraft:quartz_slab[type=double]", - "43:8": "minecraft:smooth_stone", - "43:9": "minecraft:smooth_sandstone", - "43:10": "minecraft:petrified_oak_slab[type=double]", - "43:11": "minecraft:cobblestone_slab[type=double]", - "43:12": "minecraft:brick_slab[type=double]", - "43:13": "minecraft:stone_brick_slab[type=double]", - "43:14": "minecraft:nether_brick_slab[type=double]", - "43:15": "minecraft:smooth_quartz", - "44:0": "minecraft:stone_slab[type=bottom]", - "44:1": "minecraft:sandstone_slab[type=bottom]", - "44:2": "minecraft:petrified_oak_slab[type=bottom]", - "44:3": "minecraft:cobblestone_slab[type=bottom]", - "44:4": "minecraft:brick_slab[type=bottom]", - "44:5": "minecraft:stone_brick_slab[type=bottom]", - "44:6": "minecraft:nether_brick_slab[type=bottom]", - "44:7": "minecraft:quartz_slab[type=bottom]", - "44:8": "minecraft:stone_slab[type=top]", - "44:9": "minecraft:sandstone_slab[type=top]", - "44:10": "minecraft:petrified_oak_slab[type=top]", - "44:11": "minecraft:cobblestone_slab[type=top]", - "44:12": "minecraft:brick_slab[type=top]", - "44:13": "minecraft:stone_brick_slab[type=top]", - "44:14": "minecraft:nether_brick_slab[type=top]", - "44:15": "minecraft:quartz_slab[type=top]", - "45:0": "minecraft:bricks", - "46:0": "minecraft:tnt[unstable=false]", - "46:1": "minecraft:tnt[unstable=true]", - "47:0": "minecraft:bookshelf", - "48:0": "minecraft:mossy_cobblestone", - "49:0": "minecraft:obsidian", - "50:1": "minecraft:wall_torch[facing=east]", - "50:2": "minecraft:wall_torch[facing=west]", - "50:3": "minecraft:wall_torch[facing=south]", - "50:4": "minecraft:wall_torch[facing=north]", - "50:5": "minecraft:torch", - "51:0": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=0]", - "51:1": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=1]", - "51:2": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=2]", - "51:3": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=3]", - "51:4": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=4]", - "51:5": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=5]", - "51:6": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=6]", - "51:7": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=7]", - "51:8": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=8]", - "51:9": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=9]", - "51:10": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=10]", - "51:11": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=11]", - "51:12": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=12]", - "51:13": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=13]", - "51:14": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=14]", - "51:15": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=15]", - "52:0": "minecraft:mob_spawner", - "53:0": "minecraft:oak_stairs[facing=east,half=bottom,shape=straight]", - "53:1": "minecraft:oak_stairs[facing=west,half=bottom,shape=straight]", - "53:2": "minecraft:oak_stairs[facing=south,half=bottom,shape=straight]", - "53:3": "minecraft:oak_stairs[facing=north,half=bottom,shape=straight]", - "53:4": "minecraft:oak_stairs[facing=east,half=top,shape=straight]", - "53:5": "minecraft:oak_stairs[facing=west,half=top,shape=straight]", - "53:6": "minecraft:oak_stairs[facing=south,half=top,shape=straight]", - "53:7": "minecraft:oak_stairs[facing=north,half=top,shape=straight]", - "55:0": "minecraft:redstone_wire[west=none,east=none,power=0,south=none,north=none]", - "55:1": "minecraft:redstone_wire[west=none,east=none,power=1,south=none,north=none]", - "55:2": "minecraft:redstone_wire[west=none,east=none,power=2,south=none,north=none]", - "55:3": "minecraft:redstone_wire[west=none,east=none,power=3,south=none,north=none]", - "55:4": "minecraft:redstone_wire[west=none,east=none,power=4,south=none,north=none]", - "55:5": "minecraft:redstone_wire[west=none,east=none,power=5,south=none,north=none]", - "55:6": "minecraft:redstone_wire[west=none,east=none,power=6,south=none,north=none]", - "55:7": "minecraft:redstone_wire[west=none,east=none,power=7,south=none,north=none]", - "55:8": "minecraft:redstone_wire[west=none,east=none,power=8,south=none,north=none]", - "55:9": "minecraft:redstone_wire[west=none,east=none,power=9,south=none,north=none]", - "55:10": "minecraft:redstone_wire[west=none,east=none,power=10,south=none,north=none]", - "55:11": "minecraft:redstone_wire[west=none,east=none,power=11,south=none,north=none]", - "55:12": "minecraft:redstone_wire[west=none,east=none,power=12,south=none,north=none]", - "55:13": "minecraft:redstone_wire[west=none,east=none,power=13,south=none,north=none]", - "55:14": "minecraft:redstone_wire[west=none,east=none,power=14,south=none,north=none]", - "55:15": "minecraft:redstone_wire[west=none,east=none,power=15,south=none,north=none]", - "56:0": "minecraft:diamond_ore", - "57:0": "minecraft:diamond_block", - "58:0": "minecraft:crafting_table", - "59:0": "minecraft:wheat[age=0]", - "59:1": "minecraft:wheat[age=1]", - "59:2": "minecraft:wheat[age=2]", - "59:3": "minecraft:wheat[age=3]", - "59:4": "minecraft:wheat[age=4]", - "59:5": "minecraft:wheat[age=5]", - "59:6": "minecraft:wheat[age=6]", - "59:7": "minecraft:wheat[age=7]", - "60:0": "minecraft:farmland[moisture=0]", - "60:1": "minecraft:farmland[moisture=1]", - "60:2": "minecraft:farmland[moisture=2]", - "60:3": "minecraft:farmland[moisture=3]", - "60:4": "minecraft:farmland[moisture=4]", - "60:5": "minecraft:farmland[moisture=5]", - "60:6": "minecraft:farmland[moisture=6]", - "60:7": "minecraft:farmland[moisture=7]", - "61:2": "minecraft:furnace[facing=north,lit=false]", - "61:3": "minecraft:furnace[facing=south,lit=false]", - "61:4": "minecraft:furnace[facing=west,lit=false]", - "61:5": "minecraft:furnace[facing=east,lit=false]", - "62:2": "minecraft:furnace[facing=north,lit=true]", - "62:3": "minecraft:furnace[facing=south,lit=true]", - "62:4": "minecraft:furnace[facing=west,lit=true]", - "62:5": "minecraft:furnace[facing=east,lit=true]", - "64:0": "minecraft:oak_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "64:1": "minecraft:oak_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "64:2": "minecraft:oak_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "64:3": "minecraft:oak_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "64:4": "minecraft:oak_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "64:5": "minecraft:oak_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "64:6": "minecraft:oak_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "64:7": "minecraft:oak_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "64:8": "minecraft:oak_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "64:9": "minecraft:oak_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "64:10": "minecraft:oak_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "64:11": "minecraft:oak_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "65:2": "minecraft:ladder[facing=north]", - "65:3": "minecraft:ladder[facing=south]", - "65:4": "minecraft:ladder[facing=west]", - "65:5": "minecraft:ladder[facing=east]", - "66:0": "minecraft:rail[shape=north_south]", - "66:1": "minecraft:rail[shape=east_west]", - "66:2": "minecraft:rail[shape=ascending_east]", - "66:3": "minecraft:rail[shape=ascending_west]", - "66:4": "minecraft:rail[shape=ascending_north]", - "66:5": "minecraft:rail[shape=ascending_south]", - "66:6": "minecraft:rail[shape=south_east]", - "66:7": "minecraft:rail[shape=south_west]", - "66:8": "minecraft:rail[shape=north_west]", - "66:9": "minecraft:rail[shape=north_east]", - "67:0": "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight]", - "67:1": "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight]", - "67:2": "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight]", - "67:3": "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight]", - "67:4": "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight]", - "67:5": "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight]", - "67:6": "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight]", - "67:7": "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight]", - "69:0": "minecraft:lever[facing=west,face=ceiling,powered=false]", - "69:1": "minecraft:lever[facing=east,face=wall,powered=false]", - "69:2": "minecraft:lever[facing=west,face=wall,powered=false]", - "69:3": "minecraft:lever[facing=south,face=wall,powered=false]", - "69:4": "minecraft:lever[facing=north,face=wall,powered=false]", - "69:5": "minecraft:lever[facing=north,face=floor,powered=false]", - "69:6": "minecraft:lever[facing=west,face=floor,powered=false]", - "69:7": "minecraft:lever[facing=north,face=ceiling,powered=false]", - "69:8": "minecraft:lever[facing=west,face=ceiling,powered=true]", - "69:9": "minecraft:lever[facing=east,face=wall,powered=true]", - "69:10": "minecraft:lever[facing=west,face=wall,powered=true]", - "69:11": "minecraft:lever[facing=south,face=wall,powered=true]", - "69:12": "minecraft:lever[facing=north,face=wall,powered=true]", - "69:13": "minecraft:lever[facing=north,face=floor,powered=true]", - "69:14": "minecraft:lever[facing=west,face=floor,powered=true]", - "69:15": "minecraft:lever[facing=north,face=ceiling,powered=true]", - "70:0": "minecraft:stone_pressure_plate[powered=false]", - "70:1": "minecraft:stone_pressure_plate[powered=true]", - "71:0": "minecraft:iron_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "71:1": "minecraft:iron_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "71:2": "minecraft:iron_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "71:3": "minecraft:iron_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "71:4": "minecraft:iron_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "71:5": "minecraft:iron_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "71:6": "minecraft:iron_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "71:7": "minecraft:iron_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "71:8": "minecraft:iron_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "71:9": "minecraft:iron_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "71:10": "minecraft:iron_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "71:11": "minecraft:iron_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "72:0": "minecraft:oak_pressure_plate[powered=false]", - "72:1": "minecraft:oak_pressure_plate[powered=true]", - "73:0": "minecraft:redstone_ore[lit=false]", - "74:0": "minecraft:redstone_ore[lit=true]", - "75:1": "minecraft:redstone_wall_torch[facing=east,lit=false]", - "75:2": "minecraft:redstone_wall_torch[facing=west,lit=false]", - "75:3": "minecraft:redstone_wall_torch[facing=south,lit=false]", - "75:4": "minecraft:redstone_wall_torch[facing=north,lit=false]", - "75:5": "minecraft:redstone_torch[lit=false]", - "76:1": "minecraft:redstone_wall_torch[facing=east,lit=true]", - "76:2": "minecraft:redstone_wall_torch[facing=west,lit=true]", - "76:3": "minecraft:redstone_wall_torch[facing=south,lit=true]", - "76:4": "minecraft:redstone_wall_torch[facing=north,lit=true]", - "76:5": "minecraft:redstone_torch[lit=true]", - "77:0": "minecraft:stone_button[facing=north,face=ceiling,powered=false]", - "77:1": "minecraft:stone_button[facing=east,face=wall,powered=false]", - "77:2": "minecraft:stone_button[facing=west,face=wall,powered=false]", - "77:3": "minecraft:stone_button[facing=south,face=wall,powered=false]", - "77:4": "minecraft:stone_button[facing=north,face=wall,powered=false]", - "77:5": "minecraft:stone_button[facing=north,face=floor,powered=false]", - "77:8": "minecraft:stone_button[facing=north,face=ceiling,powered=true]", - "77:9": "minecraft:stone_button[facing=east,face=wall,powered=true]", - "77:10": "minecraft:stone_button[facing=west,face=wall,powered=true]", - "77:11": "minecraft:stone_button[facing=south,face=wall,powered=true]", - "77:12": "minecraft:stone_button[facing=north,face=wall,powered=true]", - "77:13": "minecraft:stone_button[facing=north,face=floor,powered=true]", - "78:0": "minecraft:snow[layers=1]", - "78:1": "minecraft:snow[layers=2]", - "78:2": "minecraft:snow[layers=3]", - "78:3": "minecraft:snow[layers=4]", - "78:4": "minecraft:snow[layers=5]", - "78:5": "minecraft:snow[layers=6]", - "78:6": "minecraft:snow[layers=7]", - "78:7": "minecraft:snow[layers=8]", - "79:0": "minecraft:ice", - "80:0": "minecraft:snow_block", - "81:0": "minecraft:cactus[age=0]", - "81:1": "minecraft:cactus[age=1]", - "81:2": "minecraft:cactus[age=2]", - "81:3": "minecraft:cactus[age=3]", - "81:4": "minecraft:cactus[age=4]", - "81:5": "minecraft:cactus[age=5]", - "81:6": "minecraft:cactus[age=6]", - "81:7": "minecraft:cactus[age=7]", - "81:8": "minecraft:cactus[age=8]", - "81:9": "minecraft:cactus[age=9]", - "81:10": "minecraft:cactus[age=10]", - "81:11": "minecraft:cactus[age=11]", - "81:12": "minecraft:cactus[age=12]", - "81:13": "minecraft:cactus[age=13]", - "81:14": "minecraft:cactus[age=14]", - "81:15": "minecraft:cactus[age=15]", - "82:0": "minecraft:clay", - "83:0": "minecraft:sugar_cane[age=0]", - "83:1": "minecraft:sugar_cane[age=1]", - "83:2": "minecraft:sugar_cane[age=2]", - "83:3": "minecraft:sugar_cane[age=3]", - "83:4": "minecraft:sugar_cane[age=4]", - "83:5": "minecraft:sugar_cane[age=5]", - "83:6": "minecraft:sugar_cane[age=6]", - "83:7": "minecraft:sugar_cane[age=7]", - "83:8": "minecraft:sugar_cane[age=8]", - "83:9": "minecraft:sugar_cane[age=9]", - "83:10": "minecraft:sugar_cane[age=10]", - "83:11": "minecraft:sugar_cane[age=11]", - "83:12": "minecraft:sugar_cane[age=12]", - "83:13": "minecraft:sugar_cane[age=13]", - "83:14": "minecraft:sugar_cane[age=14]", - "83:15": "minecraft:sugar_cane[age=15]", - "84:0": "minecraft:jukebox[has_record=false]", - "84:1": "minecraft:jukebox[has_record=true]", - "85:0": "minecraft:oak_fence[west=false,east=false,south=false,north=false]", - "86:0": "minecraft:carved_pumpkin[facing=south]", - "86:1": "minecraft:carved_pumpkin[facing=west]", - "86:2": "minecraft:carved_pumpkin[facing=north]", - "86:3": "minecraft:carved_pumpkin[facing=east]", - "87:0": "minecraft:netherrack", - "88:0": "minecraft:soul_sand", - "89:0": "minecraft:glowstone", - "90:1": "minecraft:portal[axis=x]", - "90:2": "minecraft:portal[axis=z]", - "91:0": "minecraft:jack_o_lantern[facing=south]", - "91:1": "minecraft:jack_o_lantern[facing=west]", - "91:2": "minecraft:jack_o_lantern[facing=north]", - "91:3": "minecraft:jack_o_lantern[facing=east]", - "92:0": "minecraft:cake[bites=0]", - "92:1": "minecraft:cake[bites=1]", - "92:2": "minecraft:cake[bites=2]", - "92:3": "minecraft:cake[bites=3]", - "92:4": "minecraft:cake[bites=4]", - "92:5": "minecraft:cake[bites=5]", - "92:6": "minecraft:cake[bites=6]", - "93:0": "minecraft:repeater[facing=south,delay=1,powered=false,locked=false]", - "93:1": "minecraft:repeater[facing=west,delay=1,powered=false,locked=false]", - "93:2": "minecraft:repeater[facing=north,delay=1,powered=false,locked=false]", - "93:3": "minecraft:repeater[facing=east,delay=1,powered=false,locked=false]", - "93:4": "minecraft:repeater[facing=south,delay=2,powered=false,locked=false]", - "93:5": "minecraft:repeater[facing=west,delay=2,powered=false,locked=false]", - "93:6": "minecraft:repeater[facing=north,delay=2,powered=false,locked=false]", - "93:7": "minecraft:repeater[facing=east,delay=2,powered=false,locked=false]", - "93:8": "minecraft:repeater[facing=south,delay=3,powered=false,locked=false]", - "93:9": "minecraft:repeater[facing=west,delay=3,powered=false,locked=false]", - "93:10": "minecraft:repeater[facing=north,delay=3,powered=false,locked=false]", - "93:11": "minecraft:repeater[facing=east,delay=3,powered=false,locked=false]", - "93:12": "minecraft:repeater[facing=south,delay=4,powered=false,locked=false]", - "93:13": "minecraft:repeater[facing=west,delay=4,powered=false,locked=false]", - "93:14": "minecraft:repeater[facing=north,delay=4,powered=false,locked=false]", - "93:15": "minecraft:repeater[facing=east,delay=4,powered=false,locked=false]", - "94:0": "minecraft:repeater[facing=south,delay=1,powered=true,locked=false]", - "94:1": "minecraft:repeater[facing=west,delay=1,powered=true,locked=false]", - "94:2": "minecraft:repeater[facing=north,delay=1,powered=true,locked=false]", - "94:3": "minecraft:repeater[facing=east,delay=1,powered=true,locked=false]", - "94:4": "minecraft:repeater[facing=south,delay=2,powered=true,locked=false]", - "94:5": "minecraft:repeater[facing=west,delay=2,powered=true,locked=false]", - "94:6": "minecraft:repeater[facing=north,delay=2,powered=true,locked=false]", - "94:7": "minecraft:repeater[facing=east,delay=2,powered=true,locked=false]", - "94:8": "minecraft:repeater[facing=south,delay=3,powered=true,locked=false]", - "94:9": "minecraft:repeater[facing=west,delay=3,powered=true,locked=false]", - "94:10": "minecraft:repeater[facing=north,delay=3,powered=true,locked=false]", - "94:11": "minecraft:repeater[facing=east,delay=3,powered=true,locked=false]", - "94:12": "minecraft:repeater[facing=south,delay=4,powered=true,locked=false]", - "94:13": "minecraft:repeater[facing=west,delay=4,powered=true,locked=false]", - "94:14": "minecraft:repeater[facing=north,delay=4,powered=true,locked=false]", - "94:15": "minecraft:repeater[facing=east,delay=4,powered=true,locked=false]", - "95:0": "minecraft:white_stained_glass", - "95:1": "minecraft:orange_stained_glass", - "95:2": "minecraft:magenta_stained_glass", - "95:3": "minecraft:light_blue_stained_glass", - "95:4": "minecraft:yellow_stained_glass", - "95:5": "minecraft:lime_stained_glass", - "95:6": "minecraft:pink_stained_glass", - "95:7": "minecraft:gray_stained_glass", - "95:8": "minecraft:light_gray_stained_glass", - "95:9": "minecraft:cyan_stained_glass", - "95:10": "minecraft:purple_stained_glass", - "95:11": "minecraft:blue_stained_glass", - "95:12": "minecraft:brown_stained_glass", - "95:13": "minecraft:green_stained_glass", - "95:14": "minecraft:red_stained_glass", - "95:15": "minecraft:black_stained_glass", - "96:0": "minecraft:oak_trapdoor[facing=north,half=bottom,open=false]", - "96:1": "minecraft:oak_trapdoor[facing=south,half=bottom,open=false]", - "96:2": "minecraft:oak_trapdoor[facing=west,half=bottom,open=false]", - "96:3": "minecraft:oak_trapdoor[facing=east,half=bottom,open=false]", - "96:4": "minecraft:oak_trapdoor[facing=north,half=bottom,open=true]", - "96:5": "minecraft:oak_trapdoor[facing=south,half=bottom,open=true]", - "96:6": "minecraft:oak_trapdoor[facing=west,half=bottom,open=true]", - "96:7": "minecraft:oak_trapdoor[facing=east,half=bottom,open=true]", - "96:8": "minecraft:oak_trapdoor[facing=north,half=top,open=false]", - "96:9": "minecraft:oak_trapdoor[facing=south,half=top,open=false]", - "96:10": "minecraft:oak_trapdoor[facing=west,half=top,open=false]", - "96:11": "minecraft:oak_trapdoor[facing=east,half=top,open=false]", - "96:12": "minecraft:oak_trapdoor[facing=north,half=top,open=true]", - "96:13": "minecraft:oak_trapdoor[facing=south,half=top,open=true]", - "96:14": "minecraft:oak_trapdoor[facing=west,half=top,open=true]", - "96:15": "minecraft:oak_trapdoor[facing=east,half=top,open=true]", - "97:0": "minecraft:infested_stone", - "97:1": "minecraft:infested_cobblestone", - "97:2": "minecraft:infested_stone_bricks", - "97:3": "minecraft:infested_mossy_stone_bricks", - "97:4": "minecraft:infested_cracked_stone_bricks", - "97:5": "minecraft:infested_chiseled_stone_bricks", - "98:0": "minecraft:stone_bricks", - "98:1": "minecraft:mossy_stone_bricks", - "98:2": "minecraft:cracked_stone_bricks", - "98:3": "minecraft:chiseled_stone_bricks", - "99:0": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]", - "99:1": "minecraft:brown_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]", - "99:2": "minecraft:brown_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]", - "99:3": "minecraft:brown_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]", - "99:4": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]", - "99:5": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]", - "99:6": "minecraft:brown_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]", - "99:7": "minecraft:brown_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]", - "99:8": "minecraft:brown_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]", - "99:9": "minecraft:brown_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]", - "99:10": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]", - "99:14": "minecraft:brown_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]", - "99:15": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]", - "100:0": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]", - "100:1": "minecraft:red_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]", - "100:2": "minecraft:red_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]", - "100:3": "minecraft:red_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]", - "100:4": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]", - "100:5": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]", - "100:6": "minecraft:red_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]", - "100:7": "minecraft:red_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]", - "100:8": "minecraft:red_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]", - "100:9": "minecraft:red_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]", - "100:10": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]", - "100:14": "minecraft:red_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]", - "100:15": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]", - "101:0": "minecraft:iron_bars[west=false,east=false,south=false,north=false]", - "102:0": "minecraft:glass_pane[west=false,east=false,south=false,north=false]", - "103:0": "minecraft:melon_block", - "104:0": "minecraft:pumpkin_stem[age=0]", - "104:1": "minecraft:pumpkin_stem[age=1]", - "104:2": "minecraft:pumpkin_stem[age=2]", - "104:3": "minecraft:pumpkin_stem[age=3]", - "104:4": "minecraft:pumpkin_stem[age=4]", - "104:5": "minecraft:pumpkin_stem[age=5]", - "104:6": "minecraft:pumpkin_stem[age=6]", - "104:7": "minecraft:pumpkin_stem[age=7]", - "105:0": "minecraft:melon_stem[age=0]", - "105:1": "minecraft:melon_stem[age=1]", - "105:2": "minecraft:melon_stem[age=2]", - "105:3": "minecraft:melon_stem[age=3]", - "105:4": "minecraft:melon_stem[age=4]", - "105:5": "minecraft:melon_stem[age=5]", - "105:6": "minecraft:melon_stem[age=6]", - "105:7": "minecraft:melon_stem[age=7]", - "106:0": "minecraft:vine[west=false,east=false,up=false,south=false,north=false]", - "106:1": "minecraft:vine[west=false,east=false,up=false,south=true,north=false]", - "106:2": "minecraft:vine[west=true,east=false,up=false,south=false,north=false]", - "106:3": "minecraft:vine[west=true,east=false,up=false,south=true,north=false]", - "106:4": "minecraft:vine[west=false,east=false,up=false,south=false,north=true]", - "106:5": "minecraft:vine[west=false,east=false,up=false,south=true,north=true]", - "106:6": "minecraft:vine[west=true,east=false,up=false,south=false,north=true]", - "106:7": "minecraft:vine[west=true,east=false,up=false,south=true,north=true]", - "106:8": "minecraft:vine[west=false,east=true,up=false,south=false,north=false]", - "106:9": "minecraft:vine[west=false,east=true,up=false,south=true,north=false]", - "106:10": "minecraft:vine[west=true,east=true,up=false,south=false,north=false]", - "106:11": "minecraft:vine[west=true,east=true,up=false,south=true,north=false]", - "106:12": "minecraft:vine[west=false,east=true,up=false,south=false,north=true]", - "106:13": "minecraft:vine[west=false,east=true,up=false,south=true,north=true]", - "106:14": "minecraft:vine[west=true,east=true,up=false,south=false,north=true]", - "106:15": "minecraft:vine[west=true,east=true,up=false,south=true,north=true]", - "107:0": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "107:1": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "107:2": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "107:3": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "107:4": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "107:5": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "107:6": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "107:7": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "107:8": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "107:9": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "107:10": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "107:11": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "107:12": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "107:13": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "107:14": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "107:15": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "108:0": "minecraft:brick_stairs[facing=east,half=bottom,shape=straight]", - "108:1": "minecraft:brick_stairs[facing=west,half=bottom,shape=straight]", - "108:2": "minecraft:brick_stairs[facing=south,half=bottom,shape=straight]", - "108:3": "minecraft:brick_stairs[facing=north,half=bottom,shape=straight]", - "108:4": "minecraft:brick_stairs[facing=east,half=top,shape=straight]", - "108:5": "minecraft:brick_stairs[facing=west,half=top,shape=straight]", - "108:6": "minecraft:brick_stairs[facing=south,half=top,shape=straight]", - "108:7": "minecraft:brick_stairs[facing=north,half=top,shape=straight]", - "109:0": "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight]", - "109:1": "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight]", - "109:2": "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight]", - "109:3": "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight]", - "109:4": "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight]", - "109:5": "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight]", - "109:6": "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight]", - "109:7": "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight]", - "110:0": "minecraft:mycelium[snowy=false]", - "111:0": "minecraft:lily_pad", - "112:0": "minecraft:nether_bricks", - "113:0": "minecraft:nether_brick_fence[west=false,east=false,south=false,north=false]", - "114:0": "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight]", - "114:1": "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight]", - "114:2": "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight]", - "114:3": "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight]", - "114:4": "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight]", - "114:5": "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight]", - "114:6": "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight]", - "114:7": "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight]", - "115:0": "minecraft:nether_wart[age=0]", - "115:1": "minecraft:nether_wart[age=1]", - "115:2": "minecraft:nether_wart[age=2]", - "115:3": "minecraft:nether_wart[age=3]", - "116:0": "minecraft:enchanting_table", - "117:0": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]", - "117:1": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]", - "117:2": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]", - "117:3": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]", - "117:4": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]", - "117:5": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]", - "117:6": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]", - "117:7": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]", - "118:0": "minecraft:cauldron[level=0]", - "118:1": "minecraft:cauldron[level=1]", - "118:2": "minecraft:cauldron[level=2]", - "118:3": "minecraft:cauldron[level=3]", - "120:0": "minecraft:end_portal_frame[eye=false,facing=south]", - "120:1": "minecraft:end_portal_frame[eye=false,facing=west]", - "120:2": "minecraft:end_portal_frame[eye=false,facing=north]", - "120:3": "minecraft:end_portal_frame[eye=false,facing=east]", - "120:4": "minecraft:end_portal_frame[eye=true,facing=south]", - "120:5": "minecraft:end_portal_frame[eye=true,facing=west]", - "120:6": "minecraft:end_portal_frame[eye=true,facing=north]", - "120:7": "minecraft:end_portal_frame[eye=true,facing=east]", - "121:0": "minecraft:end_stone", - "122:0": "minecraft:dragon_egg", - "123:0": "minecraft:redstone_lamp[lit=false]", - "124:0": "minecraft:redstone_lamp[lit=true]", - "125:0": "minecraft:oak_slab[type=double]", - "125:1": "minecraft:spruce_slab[type=double]", - "125:2": "minecraft:birch_slab[type=double]", - "125:3": "minecraft:jungle_slab[type=double]", - "125:4": "minecraft:acacia_slab[type=double]", - "125:5": "minecraft:dark_oak_slab[type=double]", - "126:0": "minecraft:oak_slab[type=bottom]", - "126:1": "minecraft:spruce_slab[type=bottom]", - "126:2": "minecraft:birch_slab[type=bottom]", - "126:3": "minecraft:jungle_slab[type=bottom]", - "126:4": "minecraft:acacia_slab[type=bottom]", - "126:5": "minecraft:dark_oak_slab[type=bottom]", - "126:8": "minecraft:oak_slab[type=top]", - "126:9": "minecraft:spruce_slab[type=top]", - "126:10": "minecraft:birch_slab[type=top]", - "126:11": "minecraft:jungle_slab[type=top]", - "126:12": "minecraft:acacia_slab[type=top]", - "126:13": "minecraft:dark_oak_slab[type=top]", - "127:0": "minecraft:cocoa[facing=south,age=0]", - "127:1": "minecraft:cocoa[facing=west,age=0]", - "127:2": "minecraft:cocoa[facing=north,age=0]", - "127:3": "minecraft:cocoa[facing=east,age=0]", - "127:4": "minecraft:cocoa[facing=south,age=1]", - "127:5": "minecraft:cocoa[facing=west,age=1]", - "127:6": "minecraft:cocoa[facing=north,age=1]", - "127:7": "minecraft:cocoa[facing=east,age=1]", - "127:8": "minecraft:cocoa[facing=south,age=2]", - "127:9": "minecraft:cocoa[facing=west,age=2]", - "127:10": "minecraft:cocoa[facing=north,age=2]", - "127:11": "minecraft:cocoa[facing=east,age=2]", - "128:0": "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight]", - "128:1": "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight]", - "128:2": "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight]", - "128:3": "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight]", - "128:4": "minecraft:sandstone_stairs[facing=east,half=top,shape=straight]", - "128:5": "minecraft:sandstone_stairs[facing=west,half=top,shape=straight]", - "128:6": "minecraft:sandstone_stairs[facing=south,half=top,shape=straight]", - "128:7": "minecraft:sandstone_stairs[facing=north,half=top,shape=straight]", - "129:0": "minecraft:emerald_ore", - "131:0": "minecraft:tripwire_hook[attached=false,facing=south,powered=false]", - "131:1": "minecraft:tripwire_hook[attached=false,facing=west,powered=false]", - "131:2": "minecraft:tripwire_hook[attached=false,facing=north,powered=false]", - "131:3": "minecraft:tripwire_hook[attached=false,facing=east,powered=false]", - "131:4": "minecraft:tripwire_hook[attached=true,facing=south,powered=false]", - "131:5": "minecraft:tripwire_hook[attached=true,facing=west,powered=false]", - "131:6": "minecraft:tripwire_hook[attached=true,facing=north,powered=false]", - "131:7": "minecraft:tripwire_hook[attached=true,facing=east,powered=false]", - "131:8": "minecraft:tripwire_hook[attached=false,facing=south,powered=true]", - "131:9": "minecraft:tripwire_hook[attached=false,facing=west,powered=true]", - "131:10": "minecraft:tripwire_hook[attached=false,facing=north,powered=true]", - "131:11": "minecraft:tripwire_hook[attached=false,facing=east,powered=true]", - "131:12": "minecraft:tripwire_hook[attached=true,facing=south,powered=true]", - "131:13": "minecraft:tripwire_hook[attached=true,facing=west,powered=true]", - "131:14": "minecraft:tripwire_hook[attached=true,facing=north,powered=true]", - "131:15": "minecraft:tripwire_hook[attached=true,facing=east,powered=true]", - "132:0": "minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=false,west=false]", - "132:1": "minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=false,west=false]", - "132:4": "minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=true,west=false]", - "132:5": "minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=true,west=false]", - "132:8": "minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=false,west=false]", - "132:9": "minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=false,west=false]", - "132:12": "minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=true,west=false]", - "132:13": "minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=true,west=false]", - "133:0": "minecraft:emerald_block", - "134:0": "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight]", - "134:1": "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight]", - "134:2": "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight]", - "134:3": "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight]", - "134:4": "minecraft:spruce_stairs[facing=east,half=top,shape=straight]", - "134:5": "minecraft:spruce_stairs[facing=west,half=top,shape=straight]", - "134:6": "minecraft:spruce_stairs[facing=south,half=top,shape=straight]", - "134:7": "minecraft:spruce_stairs[facing=north,half=top,shape=straight]", - "135:0": "minecraft:birch_stairs[facing=east,half=bottom,shape=straight]", - "135:1": "minecraft:birch_stairs[facing=west,half=bottom,shape=straight]", - "135:2": "minecraft:birch_stairs[facing=south,half=bottom,shape=straight]", - "135:3": "minecraft:birch_stairs[facing=north,half=bottom,shape=straight]", - "135:4": "minecraft:birch_stairs[facing=east,half=top,shape=straight]", - "135:5": "minecraft:birch_stairs[facing=west,half=top,shape=straight]", - "135:6": "minecraft:birch_stairs[facing=south,half=top,shape=straight]", - "135:7": "minecraft:birch_stairs[facing=north,half=top,shape=straight]", - "136:0": "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight]", - "136:1": "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight]", - "136:2": "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight]", - "136:3": "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight]", - "136:4": "minecraft:jungle_stairs[facing=east,half=top,shape=straight]", - "136:5": "minecraft:jungle_stairs[facing=west,half=top,shape=straight]", - "136:6": "minecraft:jungle_stairs[facing=south,half=top,shape=straight]", - "136:7": "minecraft:jungle_stairs[facing=north,half=top,shape=straight]", - "137:0": "minecraft:command_block[conditional=false,facing=down]", - "137:1": "minecraft:command_block[conditional=false,facing=up]", - "137:2": "minecraft:command_block[conditional=false,facing=north]", - "137:3": "minecraft:command_block[conditional=false,facing=south]", - "137:4": "minecraft:command_block[conditional=false,facing=west]", - "137:5": "minecraft:command_block[conditional=false,facing=east]", - "137:8": "minecraft:command_block[conditional=true,facing=down]", - "137:9": "minecraft:command_block[conditional=true,facing=up]", - "137:10": "minecraft:command_block[conditional=true,facing=north]", - "137:11": "minecraft:command_block[conditional=true,facing=south]", - "137:12": "minecraft:command_block[conditional=true,facing=west]", - "137:13": "minecraft:command_block[conditional=true,facing=east]", - "138:0": "minecraft:beacon", - "139:0": "minecraft:cobblestone_wall[west=false,east=false,up=false,south=false,north=false]", - "139:1": "minecraft:mossy_cobblestone_wall[west=false,east=false,up=false,south=false,north=false]", - "140:0": "minecraft:potted_cactus", - "140:1": "minecraft:potted_cactus", - "140:2": "minecraft:potted_cactus", - "140:3": "minecraft:potted_cactus", - "140:4": "minecraft:potted_cactus", - "140:5": "minecraft:potted_cactus", - "140:6": "minecraft:potted_cactus", - "140:7": "minecraft:potted_cactus", - "140:8": "minecraft:potted_cactus", - "140:9": "minecraft:potted_cactus", - "140:10": "minecraft:potted_cactus", - "140:11": "minecraft:potted_cactus", - "140:12": "minecraft:potted_cactus", - "140:13": "minecraft:potted_cactus", - "140:14": "minecraft:potted_cactus", - "140:15": "minecraft:potted_cactus", - "141:0": "minecraft:carrots[age=0]", - "141:1": "minecraft:carrots[age=1]", - "141:2": "minecraft:carrots[age=2]", - "141:3": "minecraft:carrots[age=3]", - "141:4": "minecraft:carrots[age=4]", - "141:5": "minecraft:carrots[age=5]", - "141:6": "minecraft:carrots[age=6]", - "141:7": "minecraft:carrots[age=7]", - "142:0": "minecraft:potatoes[age=0]", - "142:1": "minecraft:potatoes[age=1]", - "142:2": "minecraft:potatoes[age=2]", - "142:3": "minecraft:potatoes[age=3]", - "142:4": "minecraft:potatoes[age=4]", - "142:5": "minecraft:potatoes[age=5]", - "142:6": "minecraft:potatoes[age=6]", - "142:7": "minecraft:potatoes[age=7]", - "143:0": "minecraft:oak_button[facing=north,face=ceiling,powered=false]", - "143:1": "minecraft:oak_button[facing=east,face=wall,powered=false]", - "143:2": "minecraft:oak_button[facing=west,face=wall,powered=false]", - "143:3": "minecraft:oak_button[facing=south,face=wall,powered=false]", - "143:4": "minecraft:oak_button[facing=north,face=wall,powered=false]", - "143:5": "minecraft:oak_button[facing=north,face=floor,powered=false]", - "143:8": "minecraft:oak_button[facing=north,face=ceiling,powered=true]", - "143:9": "minecraft:oak_button[facing=east,face=wall,powered=true]", - "143:10": "minecraft:oak_button[facing=west,face=wall,powered=true]", - "143:11": "minecraft:oak_button[facing=south,face=wall,powered=true]", - "143:12": "minecraft:oak_button[facing=north,face=wall,powered=true]", - "143:13": "minecraft:oak_button[facing=north,face=floor,powered=true]", - "145:0": "minecraft:anvil[facing=south]", - "145:1": "minecraft:anvil[facing=west]", - "145:2": "minecraft:anvil[facing=north]", - "145:3": "minecraft:anvil[facing=east]", - "145:4": "minecraft:chipped_anvil[facing=south]", - "145:5": "minecraft:chipped_anvil[facing=west]", - "145:6": "minecraft:chipped_anvil[facing=north]", - "145:7": "minecraft:chipped_anvil[facing=east]", - "145:8": "minecraft:damaged_anvil[facing=south]", - "145:9": "minecraft:damaged_anvil[facing=west]", - "145:10": "minecraft:damaged_anvil[facing=north]", - "145:11": "minecraft:damaged_anvil[facing=east]", - "147:0": "minecraft:light_weighted_pressure_plate[power=0]", - "147:1": "minecraft:light_weighted_pressure_plate[power=1]", - "147:2": "minecraft:light_weighted_pressure_plate[power=2]", - "147:3": "minecraft:light_weighted_pressure_plate[power=3]", - "147:4": "minecraft:light_weighted_pressure_plate[power=4]", - "147:5": "minecraft:light_weighted_pressure_plate[power=5]", - "147:6": "minecraft:light_weighted_pressure_plate[power=6]", - "147:7": "minecraft:light_weighted_pressure_plate[power=7]", - "147:8": "minecraft:light_weighted_pressure_plate[power=8]", - "147:9": "minecraft:light_weighted_pressure_plate[power=9]", - "147:10": "minecraft:light_weighted_pressure_plate[power=10]", - "147:11": "minecraft:light_weighted_pressure_plate[power=11]", - "147:12": "minecraft:light_weighted_pressure_plate[power=12]", - "147:13": "minecraft:light_weighted_pressure_plate[power=13]", - "147:14": "minecraft:light_weighted_pressure_plate[power=14]", - "147:15": "minecraft:light_weighted_pressure_plate[power=15]", - "148:0": "minecraft:heavy_weighted_pressure_plate[power=0]", - "148:1": "minecraft:heavy_weighted_pressure_plate[power=1]", - "148:2": "minecraft:heavy_weighted_pressure_plate[power=2]", - "148:3": "minecraft:heavy_weighted_pressure_plate[power=3]", - "148:4": "minecraft:heavy_weighted_pressure_plate[power=4]", - "148:5": "minecraft:heavy_weighted_pressure_plate[power=5]", - "148:6": "minecraft:heavy_weighted_pressure_plate[power=6]", - "148:7": "minecraft:heavy_weighted_pressure_plate[power=7]", - "148:8": "minecraft:heavy_weighted_pressure_plate[power=8]", - "148:9": "minecraft:heavy_weighted_pressure_plate[power=9]", - "148:10": "minecraft:heavy_weighted_pressure_plate[power=10]", - "148:11": "minecraft:heavy_weighted_pressure_plate[power=11]", - "148:12": "minecraft:heavy_weighted_pressure_plate[power=12]", - "148:13": "minecraft:heavy_weighted_pressure_plate[power=13]", - "148:14": "minecraft:heavy_weighted_pressure_plate[power=14]", - "148:15": "minecraft:heavy_weighted_pressure_plate[power=15]", - "149:0": "minecraft:comparator[mode=compare,facing=south,powered=false]", - "149:1": "minecraft:comparator[mode=compare,facing=west,powered=false]", - "149:2": "minecraft:comparator[mode=compare,facing=north,powered=false]", - "149:3": "minecraft:comparator[mode=compare,facing=east,powered=false]", - "149:4": "minecraft:comparator[mode=subtract,facing=south,powered=false]", - "149:5": "minecraft:comparator[mode=subtract,facing=west,powered=false]", - "149:6": "minecraft:comparator[mode=subtract,facing=north,powered=false]", - "149:7": "minecraft:comparator[mode=subtract,facing=east,powered=false]", - "149:8": "minecraft:comparator[mode=compare,facing=south,powered=true]", - "149:9": "minecraft:comparator[mode=compare,facing=west,powered=true]", - "149:10": "minecraft:comparator[mode=compare,facing=north,powered=true]", - "149:11": "minecraft:comparator[mode=compare,facing=east,powered=true]", - "149:12": "minecraft:comparator[mode=subtract,facing=south,powered=true]", - "149:13": "minecraft:comparator[mode=subtract,facing=west,powered=true]", - "149:14": "minecraft:comparator[mode=subtract,facing=north,powered=true]", - "149:15": "minecraft:comparator[mode=subtract,facing=east,powered=true]", - "150:0": "minecraft:comparator[mode=compare,facing=south,powered=false]", - "150:1": "minecraft:comparator[mode=compare,facing=west,powered=false]", - "150:2": "minecraft:comparator[mode=compare,facing=north,powered=false]", - "150:3": "minecraft:comparator[mode=compare,facing=east,powered=false]", - "150:4": "minecraft:comparator[mode=subtract,facing=south,powered=false]", - "150:5": "minecraft:comparator[mode=subtract,facing=west,powered=false]", - "150:6": "minecraft:comparator[mode=subtract,facing=north,powered=false]", - "150:7": "minecraft:comparator[mode=subtract,facing=east,powered=false]", - "150:8": "minecraft:comparator[mode=compare,facing=south,powered=true]", - "150:9": "minecraft:comparator[mode=compare,facing=west,powered=true]", - "150:10": "minecraft:comparator[mode=compare,facing=north,powered=true]", - "150:11": "minecraft:comparator[mode=compare,facing=east,powered=true]", - "150:12": "minecraft:comparator[mode=subtract,facing=south,powered=true]", - "150:13": "minecraft:comparator[mode=subtract,facing=west,powered=true]", - "150:14": "minecraft:comparator[mode=subtract,facing=north,powered=true]", - "150:15": "minecraft:comparator[mode=subtract,facing=east,powered=true]", - "151:0": "minecraft:daylight_detector[inverted=false,power=0]", - "151:1": "minecraft:daylight_detector[inverted=false,power=1]", - "151:2": "minecraft:daylight_detector[inverted=false,power=2]", - "151:3": "minecraft:daylight_detector[inverted=false,power=3]", - "151:4": "minecraft:daylight_detector[inverted=false,power=4]", - "151:5": "minecraft:daylight_detector[inverted=false,power=5]", - "151:6": "minecraft:daylight_detector[inverted=false,power=6]", - "151:7": "minecraft:daylight_detector[inverted=false,power=7]", - "151:8": "minecraft:daylight_detector[inverted=false,power=8]", - "151:9": "minecraft:daylight_detector[inverted=false,power=9]", - "151:10": "minecraft:daylight_detector[inverted=false,power=10]", - "151:11": "minecraft:daylight_detector[inverted=false,power=11]", - "151:12": "minecraft:daylight_detector[inverted=false,power=12]", - "151:13": "minecraft:daylight_detector[inverted=false,power=13]", - "151:14": "minecraft:daylight_detector[inverted=false,power=14]", - "151:15": "minecraft:daylight_detector[inverted=false,power=15]", - "152:0": "minecraft:redstone_block", - "153:0": "minecraft:nether_quartz_ore", - "154:0": "minecraft:hopper[facing=down,enabled=true]", - "154:2": "minecraft:hopper[facing=north,enabled=true]", - "154:3": "minecraft:hopper[facing=south,enabled=true]", - "154:4": "minecraft:hopper[facing=west,enabled=true]", - "154:5": "minecraft:hopper[facing=east,enabled=true]", - "154:8": "minecraft:hopper[facing=down,enabled=false]", - "154:10": "minecraft:hopper[facing=north,enabled=false]", - "154:11": "minecraft:hopper[facing=south,enabled=false]", - "154:12": "minecraft:hopper[facing=west,enabled=false]", - "154:13": "minecraft:hopper[facing=east,enabled=false]", - "155:0": "minecraft:quartz_block", - "155:1": "minecraft:chiseled_quartz_block", - "155:2": "minecraft:quartz_pillar[axis=y]", - "155:3": "minecraft:quartz_pillar[axis=x]", - "155:4": "minecraft:quartz_pillar[axis=z]", - "156:0": "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight]", - "156:1": "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight]", - "156:2": "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight]", - "156:3": "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight]", - "156:4": "minecraft:quartz_stairs[facing=east,half=top,shape=straight]", - "156:5": "minecraft:quartz_stairs[facing=west,half=top,shape=straight]", - "156:6": "minecraft:quartz_stairs[facing=south,half=top,shape=straight]", - "156:7": "minecraft:quartz_stairs[facing=north,half=top,shape=straight]", - "157:0": "minecraft:activator_rail[powered=false,shape=north_south]", - "157:1": "minecraft:activator_rail[powered=false,shape=east_west]", - "157:2": "minecraft:activator_rail[powered=false,shape=ascending_east]", - "157:3": "minecraft:activator_rail[powered=false,shape=ascending_west]", - "157:4": "minecraft:activator_rail[powered=false,shape=ascending_north]", - "157:5": "minecraft:activator_rail[powered=false,shape=ascending_south]", - "157:8": "minecraft:activator_rail[powered=true,shape=north_south]", - "157:9": "minecraft:activator_rail[powered=true,shape=east_west]", - "157:10": "minecraft:activator_rail[powered=true,shape=ascending_east]", - "157:11": "minecraft:activator_rail[powered=true,shape=ascending_west]", - "157:12": "minecraft:activator_rail[powered=true,shape=ascending_north]", - "157:13": "minecraft:activator_rail[powered=true,shape=ascending_south]", - "158:0": "minecraft:dropper[facing=down,triggered=false]", - "158:1": "minecraft:dropper[facing=up,triggered=false]", - "158:2": "minecraft:dropper[facing=north,triggered=false]", - "158:3": "minecraft:dropper[facing=south,triggered=false]", - "158:4": "minecraft:dropper[facing=west,triggered=false]", - "158:5": "minecraft:dropper[facing=east,triggered=false]", - "158:8": "minecraft:dropper[facing=down,triggered=true]", - "158:9": "minecraft:dropper[facing=up,triggered=true]", - "158:10": "minecraft:dropper[facing=north,triggered=true]", - "158:11": "minecraft:dropper[facing=south,triggered=true]", - "158:12": "minecraft:dropper[facing=west,triggered=true]", - "158:13": "minecraft:dropper[facing=east,triggered=true]", - "159:0": "minecraft:white_terracotta", - "159:1": "minecraft:orange_terracotta", - "159:2": "minecraft:magenta_terracotta", - "159:3": "minecraft:light_blue_terracotta", - "159:4": "minecraft:yellow_terracotta", - "159:5": "minecraft:lime_terracotta", - "159:6": "minecraft:pink_terracotta", - "159:7": "minecraft:gray_terracotta", - "159:8": "minecraft:light_gray_terracotta", - "159:9": "minecraft:cyan_terracotta", - "159:10": "minecraft:purple_terracotta", - "159:11": "minecraft:blue_terracotta", - "159:12": "minecraft:brown_terracotta", - "159:13": "minecraft:green_terracotta", - "159:14": "minecraft:red_terracotta", - "159:15": "minecraft:black_terracotta", - "160:0": "minecraft:white_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:1": "minecraft:orange_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:2": "minecraft:magenta_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:3": "minecraft:light_blue_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:4": "minecraft:yellow_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:5": "minecraft:lime_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:6": "minecraft:pink_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:7": "minecraft:gray_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:8": "minecraft:light_gray_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:9": "minecraft:cyan_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:10": "minecraft:purple_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:11": "minecraft:blue_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:12": "minecraft:brown_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:13": "minecraft:green_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:14": "minecraft:red_stained_glass_pane[west=false,east=false,south=false,north=false]", - "160:15": "minecraft:black_stained_glass_pane[west=false,east=false,south=false,north=false]", - "161:0": "minecraft:acacia_leaves[check_decay=false,decayable=true]", - "161:1": "minecraft:dark_oak_leaves[check_decay=false,decayable=true]", - "161:4": "minecraft:acacia_leaves[check_decay=false,decayable=false]", - "161:5": "minecraft:dark_oak_leaves[check_decay=false,decayable=false]", - "161:8": "minecraft:acacia_leaves[check_decay=true,decayable=true]", - "161:9": "minecraft:dark_oak_leaves[check_decay=true,decayable=true]", - "161:12": "minecraft:acacia_leaves[check_decay=true,decayable=false]", - "161:13": "minecraft:dark_oak_leaves[check_decay=true,decayable=false]", - "162:0": "minecraft:acacia_log[axis=y]", - "162:1": "minecraft:dark_oak_log[axis=y]", - "162:4": "minecraft:acacia_log[axis=x]", - "162:5": "minecraft:dark_oak_log[axis=x]", - "162:8": "minecraft:acacia_log[axis=z]", - "162:9": "minecraft:dark_oak_log[axis=z]", - "162:12": "minecraft:acacia_bark", - "162:13": "minecraft:dark_oak_bark", - "163:0": "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight]", - "163:1": "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight]", - "163:2": "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight]", - "163:3": "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight]", - "163:4": "minecraft:acacia_stairs[facing=east,half=top,shape=straight]", - "163:5": "minecraft:acacia_stairs[facing=west,half=top,shape=straight]", - "163:6": "minecraft:acacia_stairs[facing=south,half=top,shape=straight]", - "163:7": "minecraft:acacia_stairs[facing=north,half=top,shape=straight]", - "164:0": "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight]", - "164:1": "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight]", - "164:2": "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight]", - "164:3": "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight]", - "164:4": "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight]", - "164:5": "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight]", - "164:6": "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight]", - "164:7": "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight]", - "165:0": "minecraft:slime_block", - "167:0": "minecraft:iron_trapdoor[facing=north,half=bottom,open=false]", - "167:1": "minecraft:iron_trapdoor[facing=south,half=bottom,open=false]", - "167:2": "minecraft:iron_trapdoor[facing=west,half=bottom,open=false]", - "167:3": "minecraft:iron_trapdoor[facing=east,half=bottom,open=false]", - "167:4": "minecraft:iron_trapdoor[facing=north,half=bottom,open=true]", - "167:5": "minecraft:iron_trapdoor[facing=south,half=bottom,open=true]", - "167:6": "minecraft:iron_trapdoor[facing=west,half=bottom,open=true]", - "167:7": "minecraft:iron_trapdoor[facing=east,half=bottom,open=true]", - "167:8": "minecraft:iron_trapdoor[facing=north,half=top,open=false]", - "167:9": "minecraft:iron_trapdoor[facing=south,half=top,open=false]", - "167:10": "minecraft:iron_trapdoor[facing=west,half=top,open=false]", - "167:11": "minecraft:iron_trapdoor[facing=east,half=top,open=false]", - "167:12": "minecraft:iron_trapdoor[facing=north,half=top,open=true]", - "167:13": "minecraft:iron_trapdoor[facing=south,half=top,open=true]", - "167:14": "minecraft:iron_trapdoor[facing=west,half=top,open=true]", - "167:15": "minecraft:iron_trapdoor[facing=east,half=top,open=true]", - "168:0": "minecraft:prismarine", - "168:1": "minecraft:prismarine_bricks", - "168:2": "minecraft:dark_prismarine", - "169:0": "minecraft:sea_lantern", - "170:0": "minecraft:hay_block[axis=y]", - "170:4": "minecraft:hay_block[axis=x]", - "170:8": "minecraft:hay_block[axis=z]", - "171:0": "minecraft:white_carpet", - "171:1": "minecraft:orange_carpet", - "171:2": "minecraft:magenta_carpet", - "171:3": "minecraft:light_blue_carpet", - "171:4": "minecraft:yellow_carpet", - "171:5": "minecraft:lime_carpet", - "171:6": "minecraft:pink_carpet", - "171:7": "minecraft:gray_carpet", - "171:8": "minecraft:light_gray_carpet", - "171:9": "minecraft:cyan_carpet", - "171:10": "minecraft:purple_carpet", - "171:11": "minecraft:blue_carpet", - "171:12": "minecraft:brown_carpet", - "171:13": "minecraft:green_carpet", - "171:14": "minecraft:red_carpet", - "171:15": "minecraft:black_carpet", - "172:0": "minecraft:terracotta", - "173:0": "minecraft:coal_block", - "174:0": "minecraft:packed_ice", - "175:0": "minecraft:sunflower[half=lower]", - "175:1": "minecraft:lilac[half=lower]", - "175:2": "minecraft:tall_grass[half=lower]", - "175:3": "minecraft:large_fern[half=lower]", - "175:4": "minecraft:rose_bush[half=lower]", - "175:5": "minecraft:peony[half=lower]", - "175:8": "minecraft:peony[half=upper]", - "175:9": "minecraft:peony[half=upper]", - "175:10": "minecraft:peony[half=upper]", - "175:11": "minecraft:peony[half=upper]", - "178:0": "minecraft:daylight_detector[inverted=true,power=0]", - "178:1": "minecraft:daylight_detector[inverted=true,power=1]", - "178:2": "minecraft:daylight_detector[inverted=true,power=2]", - "178:3": "minecraft:daylight_detector[inverted=true,power=3]", - "178:4": "minecraft:daylight_detector[inverted=true,power=4]", - "178:5": "minecraft:daylight_detector[inverted=true,power=5]", - "178:6": "minecraft:daylight_detector[inverted=true,power=6]", - "178:7": "minecraft:daylight_detector[inverted=true,power=7]", - "178:8": "minecraft:daylight_detector[inverted=true,power=8]", - "178:9": "minecraft:daylight_detector[inverted=true,power=9]", - "178:10": "minecraft:daylight_detector[inverted=true,power=10]", - "178:11": "minecraft:daylight_detector[inverted=true,power=11]", - "178:12": "minecraft:daylight_detector[inverted=true,power=12]", - "178:13": "minecraft:daylight_detector[inverted=true,power=13]", - "178:14": "minecraft:daylight_detector[inverted=true,power=14]", - "178:15": "minecraft:daylight_detector[inverted=true,power=15]", - "179:0": "minecraft:red_sandstone", - "179:1": "minecraft:chiseled_red_sandstone", - "179:2": "minecraft:cut_red_sandstone", - "180:0": "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight]", - "180:1": "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight]", - "180:2": "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight]", - "180:3": "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight]", - "180:4": "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight]", - "180:5": "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight]", - "180:6": "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight]", - "180:7": "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight]", - "181:0": "minecraft:red_sandstone_slab[type=double]", - "181:8": "minecraft:smooth_red_sandstone", - "182:0": "minecraft:red_sandstone_slab[type=bottom]", - "182:8": "minecraft:red_sandstone_slab[type=top]", - "183:0": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "183:1": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "183:2": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "183:3": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "183:4": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "183:5": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "183:6": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "183:7": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "183:8": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "183:9": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "183:10": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "183:11": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "183:12": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "183:13": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "183:14": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "183:15": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "184:0": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "184:1": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "184:2": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "184:3": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "184:4": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "184:5": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "184:6": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "184:7": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "184:8": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "184:9": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "184:10": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "184:11": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "184:12": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "184:13": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "184:14": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "184:15": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "185:0": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "185:1": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "185:2": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "185:3": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "185:4": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "185:5": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "185:6": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "185:7": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "185:8": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "185:9": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "185:10": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "185:11": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "185:12": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "185:13": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "185:14": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "185:15": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "186:0": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "186:1": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "186:2": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "186:3": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "186:4": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "186:5": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "186:6": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "186:7": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "186:8": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "186:9": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "186:10": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "186:11": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "186:12": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "186:13": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "186:14": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "186:15": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "187:0": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=false,open=false]", - "187:1": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=false,open=false]", - "187:2": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=false,open=false]", - "187:3": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=false,open=false]", - "187:4": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=false,open=true]", - "187:5": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=false,open=true]", - "187:6": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=false,open=true]", - "187:7": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=false,open=true]", - "187:8": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=true,open=false]", - "187:9": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=true,open=false]", - "187:10": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=true,open=false]", - "187:11": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=true,open=false]", - "187:12": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=true,open=true]", - "187:13": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=true,open=true]", - "187:14": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=true,open=true]", - "187:15": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=true,open=true]", - "188:0": "minecraft:spruce_fence[west=false,east=false,south=false,north=false]", - "189:0": "minecraft:birch_fence[west=false,east=false,south=false,north=false]", - "190:0": "minecraft:jungle_fence[west=false,east=false,south=false,north=false]", - "191:0": "minecraft:dark_oak_fence[west=false,east=false,south=false,north=false]", - "192:0": "minecraft:acacia_fence[west=false,east=false,south=false,north=false]", - "193:0": "minecraft:spruce_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "193:1": "minecraft:spruce_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "193:2": "minecraft:spruce_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "193:3": "minecraft:spruce_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "193:4": "minecraft:spruce_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "193:5": "minecraft:spruce_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "193:6": "minecraft:spruce_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "193:7": "minecraft:spruce_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "193:8": "minecraft:spruce_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "193:9": "minecraft:spruce_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "193:10": "minecraft:spruce_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "193:11": "minecraft:spruce_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "194:0": "minecraft:birch_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "194:1": "minecraft:birch_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "194:2": "minecraft:birch_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "194:3": "minecraft:birch_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "194:4": "minecraft:birch_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "194:5": "minecraft:birch_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "194:6": "minecraft:birch_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "194:7": "minecraft:birch_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "194:8": "minecraft:birch_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "194:9": "minecraft:birch_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "194:10": "minecraft:birch_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "194:11": "minecraft:birch_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "195:0": "minecraft:jungle_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "195:1": "minecraft:jungle_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "195:2": "minecraft:jungle_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "195:3": "minecraft:jungle_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "195:4": "minecraft:jungle_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "195:5": "minecraft:jungle_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "195:6": "minecraft:jungle_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "195:7": "minecraft:jungle_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "195:8": "minecraft:jungle_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "195:9": "minecraft:jungle_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "195:10": "minecraft:jungle_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "195:11": "minecraft:jungle_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "196:0": "minecraft:acacia_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "196:1": "minecraft:acacia_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "196:2": "minecraft:acacia_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "196:3": "minecraft:acacia_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "196:4": "minecraft:acacia_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "196:5": "minecraft:acacia_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "196:6": "minecraft:acacia_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "196:7": "minecraft:acacia_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "196:8": "minecraft:acacia_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "196:9": "minecraft:acacia_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "196:10": "minecraft:acacia_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "196:11": "minecraft:acacia_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "197:0": "minecraft:dark_oak_door[hinge=right,facing=east,half=lower,powered=false,open=false]", - "197:1": "minecraft:dark_oak_door[hinge=right,facing=south,half=lower,powered=false,open=false]", - "197:2": "minecraft:dark_oak_door[hinge=right,facing=west,half=lower,powered=false,open=false]", - "197:3": "minecraft:dark_oak_door[hinge=right,facing=north,half=lower,powered=false,open=false]", - "197:4": "minecraft:dark_oak_door[hinge=right,facing=east,half=lower,powered=false,open=true]", - "197:5": "minecraft:dark_oak_door[hinge=right,facing=south,half=lower,powered=false,open=true]", - "197:6": "minecraft:dark_oak_door[hinge=right,facing=west,half=lower,powered=false,open=true]", - "197:7": "minecraft:dark_oak_door[hinge=right,facing=north,half=lower,powered=false,open=true]", - "197:8": "minecraft:dark_oak_door[hinge=left,facing=east,half=upper,powered=false,open=false]", - "197:9": "minecraft:dark_oak_door[hinge=right,facing=east,half=upper,powered=false,open=false]", - "197:10": "minecraft:dark_oak_door[hinge=left,facing=east,half=upper,powered=true,open=false]", - "197:11": "minecraft:dark_oak_door[hinge=right,facing=east,half=upper,powered=true,open=false]", - "198:0": "minecraft:end_rod[facing=down]", - "198:1": "minecraft:end_rod[facing=up]", - "198:2": "minecraft:end_rod[facing=north]", - "198:3": "minecraft:end_rod[facing=south]", - "198:4": "minecraft:end_rod[facing=west]", - "198:5": "minecraft:end_rod[facing=east]", - "199:0": "minecraft:chorus_plant[east=false,south=false,north=false,west=false,up=false,down=false]", - "200:0": "minecraft:chorus_flower[age=0]", - "200:1": "minecraft:chorus_flower[age=1]", - "200:2": "minecraft:chorus_flower[age=2]", - "200:3": "minecraft:chorus_flower[age=3]", - "200:4": "minecraft:chorus_flower[age=4]", - "200:5": "minecraft:chorus_flower[age=5]", - "201:0": "minecraft:purpur_block", - "202:0": "minecraft:purpur_pillar[axis=y]", - "202:4": "minecraft:purpur_pillar[axis=x]", - "202:8": "minecraft:purpur_pillar[axis=z]", - "203:0": "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight]", - "203:1": "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight]", - "203:2": "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight]", - "203:3": "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight]", - "203:4": "minecraft:purpur_stairs[facing=east,half=top,shape=straight]", - "203:5": "minecraft:purpur_stairs[facing=west,half=top,shape=straight]", - "203:6": "minecraft:purpur_stairs[facing=south,half=top,shape=straight]", - "203:7": "minecraft:purpur_stairs[facing=north,half=top,shape=straight]", - "204:0": "minecraft:purpur_slab[type=double]", - "205:0": "minecraft:purpur_slab[type=bottom]", - "205:8": "minecraft:purpur_slab[type=top]", - "206:0": "minecraft:end_stone_bricks", - "207:0": "minecraft:beetroots[age=0]", - "207:1": "minecraft:beetroots[age=1]", - "207:2": "minecraft:beetroots[age=2]", - "207:3": "minecraft:beetroots[age=3]", - "208:0": "minecraft:grass_path", - "210:0": "minecraft:repeating_command_block[conditional=false,facing=down]", - "210:1": "minecraft:repeating_command_block[conditional=false,facing=up]", - "210:2": "minecraft:repeating_command_block[conditional=false,facing=north]", - "210:3": "minecraft:repeating_command_block[conditional=false,facing=south]", - "210:4": "minecraft:repeating_command_block[conditional=false,facing=west]", - "210:5": "minecraft:repeating_command_block[conditional=false,facing=east]", - "210:8": "minecraft:repeating_command_block[conditional=true,facing=down]", - "210:9": "minecraft:repeating_command_block[conditional=true,facing=up]", - "210:10": "minecraft:repeating_command_block[conditional=true,facing=north]", - "210:11": "minecraft:repeating_command_block[conditional=true,facing=south]", - "210:12": "minecraft:repeating_command_block[conditional=true,facing=west]", - "210:13": "minecraft:repeating_command_block[conditional=true,facing=east]", - "211:0": "minecraft:chain_command_block[conditional=false,facing=down]", - "211:1": "minecraft:chain_command_block[conditional=false,facing=up]", - "211:2": "minecraft:chain_command_block[conditional=false,facing=north]", - "211:3": "minecraft:chain_command_block[conditional=false,facing=south]", - "211:4": "minecraft:chain_command_block[conditional=false,facing=west]", - "211:5": "minecraft:chain_command_block[conditional=false,facing=east]", - "211:8": "minecraft:chain_command_block[conditional=true,facing=down]", - "211:9": "minecraft:chain_command_block[conditional=true,facing=up]", - "211:10": "minecraft:chain_command_block[conditional=true,facing=north]", - "211:11": "minecraft:chain_command_block[conditional=true,facing=south]", - "211:12": "minecraft:chain_command_block[conditional=true,facing=west]", - "211:13": "minecraft:chain_command_block[conditional=true,facing=east]", - "212:0": "minecraft:frosted_ice[age=0]", - "212:1": "minecraft:frosted_ice[age=1]", - "212:2": "minecraft:frosted_ice[age=2]", - "212:3": "minecraft:frosted_ice[age=3]", - "213:0": "minecraft:magma_block", - "214:0": "minecraft:nether_wart_block", - "215:0": "minecraft:red_nether_bricks", - "216:0": "minecraft:bone_block[axis=y]", - "216:4": "minecraft:bone_block[axis=x]", - "216:8": "minecraft:bone_block[axis=z]", - "218:0": "minecraft:observer[powered=false,facing=down]", - "218:1": "minecraft:observer[powered=false,facing=up]", - "218:2": "minecraft:observer[powered=false,facing=north]", - "218:3": "minecraft:observer[powered=false,facing=south]", - "218:4": "minecraft:observer[powered=false,facing=west]", - "218:5": "minecraft:observer[powered=false,facing=east]", - "218:8": "minecraft:observer[powered=true,facing=down]", - "218:9": "minecraft:observer[powered=true,facing=up]", - "218:10": "minecraft:observer[powered=true,facing=north]", - "218:11": "minecraft:observer[powered=true,facing=south]", - "218:12": "minecraft:observer[powered=true,facing=west]", - "218:13": "minecraft:observer[powered=true,facing=east]", - "235:0": "minecraft:white_glazed_terracotta[facing=south]", - "235:1": "minecraft:white_glazed_terracotta[facing=west]", - "235:2": "minecraft:white_glazed_terracotta[facing=north]", - "235:3": "minecraft:white_glazed_terracotta[facing=east]", - "236:0": "minecraft:orange_glazed_terracotta[facing=south]", - "236:1": "minecraft:orange_glazed_terracotta[facing=west]", - "236:2": "minecraft:orange_glazed_terracotta[facing=north]", - "236:3": "minecraft:orange_glazed_terracotta[facing=east]", - "237:0": "minecraft:magenta_glazed_terracotta[facing=south]", - "237:1": "minecraft:magenta_glazed_terracotta[facing=west]", - "237:2": "minecraft:magenta_glazed_terracotta[facing=north]", - "237:3": "minecraft:magenta_glazed_terracotta[facing=east]", - "238:0": "minecraft:light_blue_glazed_terracotta[facing=south]", - "238:1": "minecraft:light_blue_glazed_terracotta[facing=west]", - "238:2": "minecraft:light_blue_glazed_terracotta[facing=north]", - "238:3": "minecraft:light_blue_glazed_terracotta[facing=east]", - "239:0": "minecraft:yellow_glazed_terracotta[facing=south]", - "239:1": "minecraft:yellow_glazed_terracotta[facing=west]", - "239:2": "minecraft:yellow_glazed_terracotta[facing=north]", - "239:3": "minecraft:yellow_glazed_terracotta[facing=east]", - "240:0": "minecraft:lime_glazed_terracotta[facing=south]", - "240:1": "minecraft:lime_glazed_terracotta[facing=west]", - "240:2": "minecraft:lime_glazed_terracotta[facing=north]", - "240:3": "minecraft:lime_glazed_terracotta[facing=east]", - "241:0": "minecraft:pink_glazed_terracotta[facing=south]", - "241:1": "minecraft:pink_glazed_terracotta[facing=west]", - "241:2": "minecraft:pink_glazed_terracotta[facing=north]", - "241:3": "minecraft:pink_glazed_terracotta[facing=east]", - "242:0": "minecraft:gray_glazed_terracotta[facing=south]", - "242:1": "minecraft:gray_glazed_terracotta[facing=west]", - "242:2": "minecraft:gray_glazed_terracotta[facing=north]", - "242:3": "minecraft:gray_glazed_terracotta[facing=east]", - "243:0": "minecraft:light_gray_glazed_terracotta[facing=south]", - "243:1": "minecraft:light_gray_glazed_terracotta[facing=west]", - "243:2": "minecraft:light_gray_glazed_terracotta[facing=north]", - "243:3": "minecraft:light_gray_glazed_terracotta[facing=east]", - "244:0": "minecraft:cyan_glazed_terracotta[facing=south]", - "244:1": "minecraft:cyan_glazed_terracotta[facing=west]", - "244:2": "minecraft:cyan_glazed_terracotta[facing=north]", - "244:3": "minecraft:cyan_glazed_terracotta[facing=east]", - "245:0": "minecraft:purple_glazed_terracotta[facing=south]", - "245:1": "minecraft:purple_glazed_terracotta[facing=west]", - "245:2": "minecraft:purple_glazed_terracotta[facing=north]", - "245:3": "minecraft:purple_glazed_terracotta[facing=east]", - "246:0": "minecraft:blue_glazed_terracotta[facing=south]", - "246:1": "minecraft:blue_glazed_terracotta[facing=west]", - "246:2": "minecraft:blue_glazed_terracotta[facing=north]", - "246:3": "minecraft:blue_glazed_terracotta[facing=east]", - "247:0": "minecraft:brown_glazed_terracotta[facing=south]", - "247:1": "minecraft:brown_glazed_terracotta[facing=west]", - "247:2": "minecraft:brown_glazed_terracotta[facing=north]", - "247:3": "minecraft:brown_glazed_terracotta[facing=east]", - "248:0": "minecraft:green_glazed_terracotta[facing=south]", - "248:1": "minecraft:green_glazed_terracotta[facing=west]", - "248:2": "minecraft:green_glazed_terracotta[facing=north]", - "248:3": "minecraft:green_glazed_terracotta[facing=east]", - "249:0": "minecraft:red_glazed_terracotta[facing=south]", - "249:1": "minecraft:red_glazed_terracotta[facing=west]", - "249:2": "minecraft:red_glazed_terracotta[facing=north]", - "249:3": "minecraft:red_glazed_terracotta[facing=east]", - "250:0": "minecraft:black_glazed_terracotta[facing=south]", - "250:1": "minecraft:black_glazed_terracotta[facing=west]", - "250:2": "minecraft:black_glazed_terracotta[facing=north]", - "250:3": "minecraft:black_glazed_terracotta[facing=east]", - "251:0": "minecraft:white_concrete", - "251:1": "minecraft:orange_concrete", - "251:2": "minecraft:magenta_concrete", - "251:3": "minecraft:light_blue_concrete", - "251:4": "minecraft:yellow_concrete", - "251:5": "minecraft:lime_concrete", - "251:6": "minecraft:pink_concrete", - "251:7": "minecraft:gray_concrete", - "251:8": "minecraft:light_gray_concrete", - "251:9": "minecraft:cyan_concrete", - "251:10": "minecraft:purple_concrete", - "251:11": "minecraft:blue_concrete", - "251:12": "minecraft:brown_concrete", - "251:13": "minecraft:green_concrete", - "251:14": "minecraft:red_concrete", - "251:15": "minecraft:black_concrete", - "252:0": "minecraft:white_concrete_powder", - "252:1": "minecraft:orange_concrete_powder", - "252:2": "minecraft:magenta_concrete_powder", - "252:3": "minecraft:light_blue_concrete_powder", - "252:4": "minecraft:yellow_concrete_powder", - "252:5": "minecraft:lime_concrete_powder", - "252:6": "minecraft:pink_concrete_powder", - "252:7": "minecraft:gray_concrete_powder", - "252:8": "minecraft:light_gray_concrete_powder", - "252:9": "minecraft:cyan_concrete_powder", - "252:10": "minecraft:purple_concrete_powder", - "252:11": "minecraft:blue_concrete_powder", - "252:12": "minecraft:brown_concrete_powder", - "252:13": "minecraft:green_concrete_powder", - "252:14": "minecraft:red_concrete_powder", - "252:15": "minecraft:black_concrete_powder", - "255:0": "minecraft:structure_block[mode=save]", - "255:1": "minecraft:structure_block[mode=load]", - "255:2": "minecraft:structure_block[mode=corner]", - "255:3": "minecraft:structure_block[mode=data]" -} diff --git a/BlueMapCore/src/main/resources/blockIds.json b/BlueMapCore/src/main/resources/blockIds.json new file mode 100644 index 00000000..a2556d6b --- /dev/null +++ b/BlueMapCore/src/main/resources/blockIds.json @@ -0,0 +1,1487 @@ +{ + "1:0": "minecraft:stone", + "1:1": "minecraft:granite", + "1:2": "minecraft:polished_granite", + "1:3": "minecraft:diorite", + "1:4": "minecraft:polished_diorite", + "1:5": "minecraft:andesite", + "1:6": "minecraft:polished_andesite", + "2:0": "minecraft:grass_block[snowy=false]", + "3:0": "minecraft:dirt", + "3:1": "minecraft:coarse_dirt", + "3:2": "minecraft:podzol[snowy=false]", + "4:0": "minecraft:cobblestone", + "5:0": "minecraft:oak_planks", + "5:1": "minecraft:spruce_planks", + "5:2": "minecraft:birch_planks", + "5:3": "minecraft:jungle_planks", + "5:4": "minecraft:acacia_planks", + "5:5": "minecraft:dark_oak_planks", + "6:0": "minecraft:oak_sapling[stage=0]", + "6:1": "minecraft:spruce_sapling[stage=0]", + "6:2": "minecraft:birch_sapling[stage=0]", + "6:3": "minecraft:jungle_sapling[stage=0]", + "6:4": "minecraft:acacia_sapling[stage=0]", + "6:5": "minecraft:dark_oak_sapling[stage=0]", + "6:8": "minecraft:oak_sapling[stage=1]", + "6:9": "minecraft:spruce_sapling[stage=1]", + "6:10": "minecraft:birch_sapling[stage=1]", + "6:11": "minecraft:jungle_sapling[stage=1]", + "6:12": "minecraft:acacia_sapling[stage=1]", + "6:13": "minecraft:dark_oak_sapling[stage=1]", + "7:0": "minecraft:bedrock", + "8:0": "minecraft:water[level=0]", + "8:1": "minecraft:water[level=1]", + "8:2": "minecraft:water[level=2]", + "8:3": "minecraft:water[level=3]", + "8:4": "minecraft:water[level=4]", + "8:5": "minecraft:water[level=5]", + "8:6": "minecraft:water[level=6]", + "8:7": "minecraft:water[level=7]", + "8:8": "minecraft:water[level=8]", + "8:9": "minecraft:water[level=9]", + "8:10": "minecraft:water[level=10]", + "8:11": "minecraft:water[level=11]", + "8:12": "minecraft:water[level=12]", + "8:13": "minecraft:water[level=13]", + "8:14": "minecraft:water[level=14]", + "8:15": "minecraft:water[level=15]", + "9:0": "minecraft:water[level=0]", + "9:1": "minecraft:water[level=1]", + "9:2": "minecraft:water[level=2]", + "9:3": "minecraft:water[level=3]", + "9:4": "minecraft:water[level=4]", + "9:5": "minecraft:water[level=5]", + "9:6": "minecraft:water[level=6]", + "9:7": "minecraft:water[level=7]", + "9:8": "minecraft:water[level=8]", + "9:9": "minecraft:water[level=9]", + "9:10": "minecraft:water[level=10]", + "9:11": "minecraft:water[level=11]", + "9:12": "minecraft:water[level=12]", + "9:13": "minecraft:water[level=13]", + "9:14": "minecraft:water[level=14]", + "9:15": "minecraft:water[level=15]", + "10:0": "minecraft:lava[level=0]", + "10:1": "minecraft:lava[level=1]", + "10:2": "minecraft:lava[level=2]", + "10:3": "minecraft:lava[level=3]", + "10:4": "minecraft:lava[level=4]", + "10:5": "minecraft:lava[level=5]", + "10:6": "minecraft:lava[level=6]", + "10:7": "minecraft:lava[level=7]", + "10:8": "minecraft:lava[level=8]", + "10:9": "minecraft:lava[level=9]", + "10:10": "minecraft:lava[level=10]", + "10:11": "minecraft:lava[level=11]", + "10:12": "minecraft:lava[level=12]", + "10:13": "minecraft:lava[level=13]", + "10:14": "minecraft:lava[level=14]", + "10:15": "minecraft:lava[level=15]", + "11:0": "minecraft:lava[level=0]", + "11:1": "minecraft:lava[level=1]", + "11:2": "minecraft:lava[level=2]", + "11:3": "minecraft:lava[level=3]", + "11:4": "minecraft:lava[level=4]", + "11:5": "minecraft:lava[level=5]", + "11:6": "minecraft:lava[level=6]", + "11:7": "minecraft:lava[level=7]", + "11:8": "minecraft:lava[level=8]", + "11:9": "minecraft:lava[level=9]", + "11:10": "minecraft:lava[level=10]", + "11:11": "minecraft:lava[level=11]", + "11:12": "minecraft:lava[level=12]", + "11:13": "minecraft:lava[level=13]", + "11:14": "minecraft:lava[level=14]", + "11:15": "minecraft:lava[level=15]", + "12:0": "minecraft:sand", + "12:1": "minecraft:red_sand", + "13:0": "minecraft:gravel", + "14:0": "minecraft:gold_ore", + "15:0": "minecraft:iron_ore", + "16:0": "minecraft:coal_ore", + "17:0": "minecraft:oak_log[axis=y]", + "17:1": "minecraft:spruce_log[axis=y]", + "17:2": "minecraft:birch_log[axis=y]", + "17:3": "minecraft:jungle_log[axis=y]", + "17:4": "minecraft:oak_log[axis=x]", + "17:5": "minecraft:spruce_log[axis=x]", + "17:6": "minecraft:birch_log[axis=x]", + "17:7": "minecraft:jungle_log[axis=x]", + "17:8": "minecraft:oak_log[axis=z]", + "17:9": "minecraft:spruce_log[axis=z]", + "17:10": "minecraft:birch_log[axis=z]", + "17:11": "minecraft:jungle_log[axis=z]", + "17:12": "minecraft:oak_bark", + "17:13": "minecraft:spruce_bark", + "17:14": "minecraft:birch_bark", + "17:15": "minecraft:jungle_bark", + "18:0": "minecraft:oak_leaves[check_decay=false,decayable=true]", + "18:1": "minecraft:spruce_leaves[check_decay=false,decayable=true]", + "18:2": "minecraft:birch_leaves[check_decay=false,decayable=true]", + "18:3": "minecraft:jungle_leaves[check_decay=false,decayable=true]", + "18:4": "minecraft:oak_leaves[check_decay=false,decayable=false]", + "18:5": "minecraft:spruce_leaves[check_decay=false,decayable=false]", + "18:6": "minecraft:birch_leaves[check_decay=false,decayable=false]", + "18:7": "minecraft:jungle_leaves[check_decay=false,decayable=false]", + "18:8": "minecraft:oak_leaves[check_decay=true,decayable=true]", + "18:9": "minecraft:spruce_leaves[check_decay=true,decayable=true]", + "18:10": "minecraft:birch_leaves[check_decay=true,decayable=true]", + "18:11": "minecraft:jungle_leaves[check_decay=true,decayable=true]", + "18:12": "minecraft:oak_leaves[check_decay=true,decayable=false]", + "18:13": "minecraft:spruce_leaves[check_decay=true,decayable=false]", + "18:14": "minecraft:birch_leaves[check_decay=true,decayable=false]", + "18:15": "minecraft:jungle_leaves[check_decay=true,decayable=false]", + "19:0": "minecraft:sponge", + "19:1": "minecraft:wet_sponge", + "20:0": "minecraft:glass", + "21:0": "minecraft:lapis_ore", + "22:0": "minecraft:lapis_block", + "23:0": "minecraft:dispenser[facing=down,triggered=false]", + "23:1": "minecraft:dispenser[facing=up,triggered=false]", + "23:2": "minecraft:dispenser[facing=north,triggered=false]", + "23:3": "minecraft:dispenser[facing=south,triggered=false]", + "23:4": "minecraft:dispenser[facing=west,triggered=false]", + "23:5": "minecraft:dispenser[facing=east,triggered=false]", + "23:8": "minecraft:dispenser[facing=down,triggered=true]", + "23:9": "minecraft:dispenser[facing=up,triggered=true]", + "23:10": "minecraft:dispenser[facing=north,triggered=true]", + "23:11": "minecraft:dispenser[facing=south,triggered=true]", + "23:12": "minecraft:dispenser[facing=west,triggered=true]", + "23:13": "minecraft:dispenser[facing=east,triggered=true]", + "24:0": "minecraft:sandstone", + "24:1": "minecraft:chiseled_sandstone", + "24:2": "minecraft:cut_sandstone", + "25:0": "minecraft:note_block", + "27:0": "minecraft:powered_rail[powered=false,shape=north_south]", + "27:1": "minecraft:powered_rail[powered=false,shape=east_west]", + "27:2": "minecraft:powered_rail[powered=false,shape=ascending_east]", + "27:3": "minecraft:powered_rail[powered=false,shape=ascending_west]", + "27:4": "minecraft:powered_rail[powered=false,shape=ascending_north]", + "27:5": "minecraft:powered_rail[powered=false,shape=ascending_south]", + "27:8": "minecraft:powered_rail[powered=true,shape=north_south]", + "27:9": "minecraft:powered_rail[powered=true,shape=east_west]", + "27:10": "minecraft:powered_rail[powered=true,shape=ascending_east]", + "27:11": "minecraft:powered_rail[powered=true,shape=ascending_west]", + "27:12": "minecraft:powered_rail[powered=true,shape=ascending_north]", + "27:13": "minecraft:powered_rail[powered=true,shape=ascending_south]", + "28:0": "minecraft:detector_rail[powered=false,shape=north_south]", + "28:1": "minecraft:detector_rail[powered=false,shape=east_west]", + "28:2": "minecraft:detector_rail[powered=false,shape=ascending_east]", + "28:3": "minecraft:detector_rail[powered=false,shape=ascending_west]", + "28:4": "minecraft:detector_rail[powered=false,shape=ascending_north]", + "28:5": "minecraft:detector_rail[powered=false,shape=ascending_south]", + "28:8": "minecraft:detector_rail[powered=true,shape=north_south]", + "28:9": "minecraft:detector_rail[powered=true,shape=east_west]", + "28:10": "minecraft:detector_rail[powered=true,shape=ascending_east]", + "28:11": "minecraft:detector_rail[powered=true,shape=ascending_west]", + "28:12": "minecraft:detector_rail[powered=true,shape=ascending_north]", + "28:13": "minecraft:detector_rail[powered=true,shape=ascending_south]", + "29:0": "minecraft:sticky_piston[facing=down,extended=false]", + "29:1": "minecraft:sticky_piston[facing=up,extended=false]", + "29:2": "minecraft:sticky_piston[facing=north,extended=false]", + "29:3": "minecraft:sticky_piston[facing=south,extended=false]", + "29:4": "minecraft:sticky_piston[facing=west,extended=false]", + "29:5": "minecraft:sticky_piston[facing=east,extended=false]", + "29:8": "minecraft:sticky_piston[facing=down,extended=true]", + "29:9": "minecraft:sticky_piston[facing=up,extended=true]", + "29:10": "minecraft:sticky_piston[facing=north,extended=true]", + "29:11": "minecraft:sticky_piston[facing=south,extended=true]", + "29:12": "minecraft:sticky_piston[facing=west,extended=true]", + "29:13": "minecraft:sticky_piston[facing=east,extended=true]", + "30:0": "minecraft:cobweb", + "31:0": "minecraft:dead_bush", + "31:1": "minecraft:grass", + "31:2": "minecraft:fern", + "32:0": "minecraft:dead_bush", + "33:0": "minecraft:piston[facing=down,extended=false]", + "33:1": "minecraft:piston[facing=up,extended=false]", + "33:2": "minecraft:piston[facing=north,extended=false]", + "33:3": "minecraft:piston[facing=south,extended=false]", + "33:4": "minecraft:piston[facing=west,extended=false]", + "33:5": "minecraft:piston[facing=east,extended=false]", + "33:8": "minecraft:piston[facing=down,extended=true]", + "33:9": "minecraft:piston[facing=up,extended=true]", + "33:10": "minecraft:piston[facing=north,extended=true]", + "33:11": "minecraft:piston[facing=south,extended=true]", + "33:12": "minecraft:piston[facing=west,extended=true]", + "33:13": "minecraft:piston[facing=east,extended=true]", + "34:0": "minecraft:piston_head[facing=down,short=false,type=normal]", + "34:1": "minecraft:piston_head[facing=up,short=false,type=normal]", + "34:2": "minecraft:piston_head[facing=north,short=false,type=normal]", + "34:3": "minecraft:piston_head[facing=south,short=false,type=normal]", + "34:4": "minecraft:piston_head[facing=west,short=false,type=normal]", + "34:5": "minecraft:piston_head[facing=east,short=false,type=normal]", + "34:8": "minecraft:piston_head[facing=down,short=false,type=sticky]", + "34:9": "minecraft:piston_head[facing=up,short=false,type=sticky]", + "34:10": "minecraft:piston_head[facing=north,short=false,type=sticky]", + "34:11": "minecraft:piston_head[facing=south,short=false,type=sticky]", + "34:12": "minecraft:piston_head[facing=west,short=false,type=sticky]", + "34:13": "minecraft:piston_head[facing=east,short=false,type=sticky]", + "35:0": "minecraft:white_wool", + "35:1": "minecraft:orange_wool", + "35:2": "minecraft:magenta_wool", + "35:3": "minecraft:light_blue_wool", + "35:4": "minecraft:yellow_wool", + "35:5": "minecraft:lime_wool", + "35:6": "minecraft:pink_wool", + "35:7": "minecraft:gray_wool", + "35:8": "minecraft:light_gray_wool", + "35:9": "minecraft:cyan_wool", + "35:10": "minecraft:purple_wool", + "35:11": "minecraft:blue_wool", + "35:12": "minecraft:brown_wool", + "35:13": "minecraft:green_wool", + "35:14": "minecraft:red_wool", + "35:15": "minecraft:black_wool", + "37:0": "minecraft:dandelion", + "38:0": "minecraft:poppy", + "38:1": "minecraft:blue_orchid", + "38:2": "minecraft:allium", + "38:3": "minecraft:azure_bluet", + "38:4": "minecraft:red_tulip", + "38:5": "minecraft:orange_tulip", + "38:6": "minecraft:white_tulip", + "38:7": "minecraft:pink_tulip", + "38:8": "minecraft:oxeye_daisy", + "39:0": "minecraft:brown_mushroom", + "40:0": "minecraft:red_mushroom", + "41:0": "minecraft:gold_block", + "42:0": "minecraft:iron_block", + "43:0": "minecraft:stone_slab[type=double]", + "43:1": "minecraft:sandstone_slab[type=double]", + "43:2": "minecraft:petrified_oak_slab[type=double]", + "43:3": "minecraft:cobblestone_slab[type=double]", + "43:4": "minecraft:brick_slab[type=double]", + "43:5": "minecraft:stone_brick_slab[type=double]", + "43:6": "minecraft:nether_brick_slab[type=double]", + "43:7": "minecraft:quartz_slab[type=double]", + "43:8": "minecraft:smooth_stone", + "43:9": "minecraft:smooth_sandstone", + "43:10": "minecraft:petrified_oak_slab[type=double]", + "43:11": "minecraft:cobblestone_slab[type=double]", + "43:12": "minecraft:brick_slab[type=double]", + "43:13": "minecraft:stone_brick_slab[type=double]", + "43:14": "minecraft:nether_brick_slab[type=double]", + "43:15": "minecraft:smooth_quartz", + "44:0": "minecraft:stone_slab[type=bottom]", + "44:1": "minecraft:sandstone_slab[type=bottom]", + "44:2": "minecraft:petrified_oak_slab[type=bottom]", + "44:3": "minecraft:cobblestone_slab[type=bottom]", + "44:4": "minecraft:brick_slab[type=bottom]", + "44:5": "minecraft:stone_brick_slab[type=bottom]", + "44:6": "minecraft:nether_brick_slab[type=bottom]", + "44:7": "minecraft:quartz_slab[type=bottom]", + "44:8": "minecraft:stone_slab[type=top]", + "44:9": "minecraft:sandstone_slab[type=top]", + "44:10": "minecraft:petrified_oak_slab[type=top]", + "44:11": "minecraft:cobblestone_slab[type=top]", + "44:12": "minecraft:brick_slab[type=top]", + "44:13": "minecraft:stone_brick_slab[type=top]", + "44:14": "minecraft:nether_brick_slab[type=top]", + "44:15": "minecraft:quartz_slab[type=top]", + "45:0": "minecraft:bricks", + "46:0": "minecraft:tnt[unstable=false]", + "46:1": "minecraft:tnt[unstable=true]", + "47:0": "minecraft:bookshelf", + "48:0": "minecraft:mossy_cobblestone", + "49:0": "minecraft:obsidian", + "50:1": "minecraft:wall_torch[facing=east]", + "50:2": "minecraft:wall_torch[facing=west]", + "50:3": "minecraft:wall_torch[facing=south]", + "50:4": "minecraft:wall_torch[facing=north]", + "50:5": "minecraft:torch", + "51:0": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=0]", + "51:1": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=1]", + "51:2": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=2]", + "51:3": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=3]", + "51:4": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=4]", + "51:5": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=5]", + "51:6": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=6]", + "51:7": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=7]", + "51:8": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=8]", + "51:9": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=9]", + "51:10": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=10]", + "51:11": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=11]", + "51:12": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=12]", + "51:13": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=13]", + "51:14": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=14]", + "51:15": "minecraft:fire[east=false,south=false,north=false,west=false,up=false,age=15]", + "52:0": "minecraft:mob_spawner", + "53:0": "minecraft:oak_stairs[facing=east,half=bottom,shape=straight]", + "53:1": "minecraft:oak_stairs[facing=west,half=bottom,shape=straight]", + "53:2": "minecraft:oak_stairs[facing=south,half=bottom,shape=straight]", + "53:3": "minecraft:oak_stairs[facing=north,half=bottom,shape=straight]", + "53:4": "minecraft:oak_stairs[facing=east,half=top,shape=straight]", + "53:5": "minecraft:oak_stairs[facing=west,half=top,shape=straight]", + "53:6": "minecraft:oak_stairs[facing=south,half=top,shape=straight]", + "53:7": "minecraft:oak_stairs[facing=north,half=top,shape=straight]", + "55:0": "minecraft:redstone_wire[west=none,east=none,power=0,south=none,north=none]", + "55:1": "minecraft:redstone_wire[west=none,east=none,power=1,south=none,north=none]", + "55:2": "minecraft:redstone_wire[west=none,east=none,power=2,south=none,north=none]", + "55:3": "minecraft:redstone_wire[west=none,east=none,power=3,south=none,north=none]", + "55:4": "minecraft:redstone_wire[west=none,east=none,power=4,south=none,north=none]", + "55:5": "minecraft:redstone_wire[west=none,east=none,power=5,south=none,north=none]", + "55:6": "minecraft:redstone_wire[west=none,east=none,power=6,south=none,north=none]", + "55:7": "minecraft:redstone_wire[west=none,east=none,power=7,south=none,north=none]", + "55:8": "minecraft:redstone_wire[west=none,east=none,power=8,south=none,north=none]", + "55:9": "minecraft:redstone_wire[west=none,east=none,power=9,south=none,north=none]", + "55:10": "minecraft:redstone_wire[west=none,east=none,power=10,south=none,north=none]", + "55:11": "minecraft:redstone_wire[west=none,east=none,power=11,south=none,north=none]", + "55:12": "minecraft:redstone_wire[west=none,east=none,power=12,south=none,north=none]", + "55:13": "minecraft:redstone_wire[west=none,east=none,power=13,south=none,north=none]", + "55:14": "minecraft:redstone_wire[west=none,east=none,power=14,south=none,north=none]", + "55:15": "minecraft:redstone_wire[west=none,east=none,power=15,south=none,north=none]", + "56:0": "minecraft:diamond_ore", + "57:0": "minecraft:diamond_block", + "58:0": "minecraft:crafting_table", + "59:0": "minecraft:wheat[age=0]", + "59:1": "minecraft:wheat[age=1]", + "59:2": "minecraft:wheat[age=2]", + "59:3": "minecraft:wheat[age=3]", + "59:4": "minecraft:wheat[age=4]", + "59:5": "minecraft:wheat[age=5]", + "59:6": "minecraft:wheat[age=6]", + "59:7": "minecraft:wheat[age=7]", + "60:0": "minecraft:farmland[moisture=0]", + "60:1": "minecraft:farmland[moisture=1]", + "60:2": "minecraft:farmland[moisture=2]", + "60:3": "minecraft:farmland[moisture=3]", + "60:4": "minecraft:farmland[moisture=4]", + "60:5": "minecraft:farmland[moisture=5]", + "60:6": "minecraft:farmland[moisture=6]", + "60:7": "minecraft:farmland[moisture=7]", + "61:2": "minecraft:furnace[facing=north,lit=false]", + "61:3": "minecraft:furnace[facing=south,lit=false]", + "61:4": "minecraft:furnace[facing=west,lit=false]", + "61:5": "minecraft:furnace[facing=east,lit=false]", + "62:2": "minecraft:furnace[facing=north,lit=true]", + "62:3": "minecraft:furnace[facing=south,lit=true]", + "62:4": "minecraft:furnace[facing=west,lit=true]", + "62:5": "minecraft:furnace[facing=east,lit=true]", + "64:0": "minecraft:oak_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "64:1": "minecraft:oak_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "64:2": "minecraft:oak_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "64:3": "minecraft:oak_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "64:4": "minecraft:oak_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "64:5": "minecraft:oak_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "64:6": "minecraft:oak_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "64:7": "minecraft:oak_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "64:8": "minecraft:oak_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "64:9": "minecraft:oak_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "64:10": "minecraft:oak_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "64:11": "minecraft:oak_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "65:2": "minecraft:ladder[facing=north]", + "65:3": "minecraft:ladder[facing=south]", + "65:4": "minecraft:ladder[facing=west]", + "65:5": "minecraft:ladder[facing=east]", + "66:0": "minecraft:rail[shape=north_south]", + "66:1": "minecraft:rail[shape=east_west]", + "66:2": "minecraft:rail[shape=ascending_east]", + "66:3": "minecraft:rail[shape=ascending_west]", + "66:4": "minecraft:rail[shape=ascending_north]", + "66:5": "minecraft:rail[shape=ascending_south]", + "66:6": "minecraft:rail[shape=south_east]", + "66:7": "minecraft:rail[shape=south_west]", + "66:8": "minecraft:rail[shape=north_west]", + "66:9": "minecraft:rail[shape=north_east]", + "67:0": "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight]", + "67:1": "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight]", + "67:2": "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight]", + "67:3": "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight]", + "67:4": "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight]", + "67:5": "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight]", + "67:6": "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight]", + "67:7": "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight]", + "69:0": "minecraft:lever[facing=west,face=ceiling,powered=false]", + "69:1": "minecraft:lever[facing=east,face=wall,powered=false]", + "69:2": "minecraft:lever[facing=west,face=wall,powered=false]", + "69:3": "minecraft:lever[facing=south,face=wall,powered=false]", + "69:4": "minecraft:lever[facing=north,face=wall,powered=false]", + "69:5": "minecraft:lever[facing=north,face=floor,powered=false]", + "69:6": "minecraft:lever[facing=west,face=floor,powered=false]", + "69:7": "minecraft:lever[facing=north,face=ceiling,powered=false]", + "69:8": "minecraft:lever[facing=west,face=ceiling,powered=true]", + "69:9": "minecraft:lever[facing=east,face=wall,powered=true]", + "69:10": "minecraft:lever[facing=west,face=wall,powered=true]", + "69:11": "minecraft:lever[facing=south,face=wall,powered=true]", + "69:12": "minecraft:lever[facing=north,face=wall,powered=true]", + "69:13": "minecraft:lever[facing=north,face=floor,powered=true]", + "69:14": "minecraft:lever[facing=west,face=floor,powered=true]", + "69:15": "minecraft:lever[facing=north,face=ceiling,powered=true]", + "70:0": "minecraft:stone_pressure_plate[powered=false]", + "70:1": "minecraft:stone_pressure_plate[powered=true]", + "71:0": "minecraft:iron_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "71:1": "minecraft:iron_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "71:2": "minecraft:iron_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "71:3": "minecraft:iron_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "71:4": "minecraft:iron_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "71:5": "minecraft:iron_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "71:6": "minecraft:iron_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "71:7": "minecraft:iron_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "71:8": "minecraft:iron_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "71:9": "minecraft:iron_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "71:10": "minecraft:iron_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "71:11": "minecraft:iron_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "72:0": "minecraft:oak_pressure_plate[powered=false]", + "72:1": "minecraft:oak_pressure_plate[powered=true]", + "73:0": "minecraft:redstone_ore[lit=false]", + "74:0": "minecraft:redstone_ore[lit=true]", + "75:1": "minecraft:redstone_wall_torch[facing=east,lit=false]", + "75:2": "minecraft:redstone_wall_torch[facing=west,lit=false]", + "75:3": "minecraft:redstone_wall_torch[facing=south,lit=false]", + "75:4": "minecraft:redstone_wall_torch[facing=north,lit=false]", + "75:5": "minecraft:redstone_torch[lit=false]", + "76:1": "minecraft:redstone_wall_torch[facing=east,lit=true]", + "76:2": "minecraft:redstone_wall_torch[facing=west,lit=true]", + "76:3": "minecraft:redstone_wall_torch[facing=south,lit=true]", + "76:4": "minecraft:redstone_wall_torch[facing=north,lit=true]", + "76:5": "minecraft:redstone_torch[lit=true]", + "77:0": "minecraft:stone_button[facing=north,face=ceiling,powered=false]", + "77:1": "minecraft:stone_button[facing=east,face=wall,powered=false]", + "77:2": "minecraft:stone_button[facing=west,face=wall,powered=false]", + "77:3": "minecraft:stone_button[facing=south,face=wall,powered=false]", + "77:4": "minecraft:stone_button[facing=north,face=wall,powered=false]", + "77:5": "minecraft:stone_button[facing=north,face=floor,powered=false]", + "77:8": "minecraft:stone_button[facing=north,face=ceiling,powered=true]", + "77:9": "minecraft:stone_button[facing=east,face=wall,powered=true]", + "77:10": "minecraft:stone_button[facing=west,face=wall,powered=true]", + "77:11": "minecraft:stone_button[facing=south,face=wall,powered=true]", + "77:12": "minecraft:stone_button[facing=north,face=wall,powered=true]", + "77:13": "minecraft:stone_button[facing=north,face=floor,powered=true]", + "78:0": "minecraft:snow[layers=1]", + "78:1": "minecraft:snow[layers=2]", + "78:2": "minecraft:snow[layers=3]", + "78:3": "minecraft:snow[layers=4]", + "78:4": "minecraft:snow[layers=5]", + "78:5": "minecraft:snow[layers=6]", + "78:6": "minecraft:snow[layers=7]", + "78:7": "minecraft:snow[layers=8]", + "79:0": "minecraft:ice", + "80:0": "minecraft:snow_block", + "81:0": "minecraft:cactus[age=0]", + "81:1": "minecraft:cactus[age=1]", + "81:2": "minecraft:cactus[age=2]", + "81:3": "minecraft:cactus[age=3]", + "81:4": "minecraft:cactus[age=4]", + "81:5": "minecraft:cactus[age=5]", + "81:6": "minecraft:cactus[age=6]", + "81:7": "minecraft:cactus[age=7]", + "81:8": "minecraft:cactus[age=8]", + "81:9": "minecraft:cactus[age=9]", + "81:10": "minecraft:cactus[age=10]", + "81:11": "minecraft:cactus[age=11]", + "81:12": "minecraft:cactus[age=12]", + "81:13": "minecraft:cactus[age=13]", + "81:14": "minecraft:cactus[age=14]", + "81:15": "minecraft:cactus[age=15]", + "82:0": "minecraft:clay", + "83:0": "minecraft:sugar_cane[age=0]", + "83:1": "minecraft:sugar_cane[age=1]", + "83:2": "minecraft:sugar_cane[age=2]", + "83:3": "minecraft:sugar_cane[age=3]", + "83:4": "minecraft:sugar_cane[age=4]", + "83:5": "minecraft:sugar_cane[age=5]", + "83:6": "minecraft:sugar_cane[age=6]", + "83:7": "minecraft:sugar_cane[age=7]", + "83:8": "minecraft:sugar_cane[age=8]", + "83:9": "minecraft:sugar_cane[age=9]", + "83:10": "minecraft:sugar_cane[age=10]", + "83:11": "minecraft:sugar_cane[age=11]", + "83:12": "minecraft:sugar_cane[age=12]", + "83:13": "minecraft:sugar_cane[age=13]", + "83:14": "minecraft:sugar_cane[age=14]", + "83:15": "minecraft:sugar_cane[age=15]", + "84:0": "minecraft:jukebox[has_record=false]", + "84:1": "minecraft:jukebox[has_record=true]", + "85:0": "minecraft:oak_fence[west=false,east=false,south=false,north=false]", + "86:0": "minecraft:carved_pumpkin[facing=south]", + "86:1": "minecraft:carved_pumpkin[facing=west]", + "86:2": "minecraft:carved_pumpkin[facing=north]", + "86:3": "minecraft:carved_pumpkin[facing=east]", + "87:0": "minecraft:netherrack", + "88:0": "minecraft:soul_sand", + "89:0": "minecraft:glowstone", + "90:1": "minecraft:portal[axis=x]", + "90:2": "minecraft:portal[axis=z]", + "91:0": "minecraft:jack_o_lantern[facing=south]", + "91:1": "minecraft:jack_o_lantern[facing=west]", + "91:2": "minecraft:jack_o_lantern[facing=north]", + "91:3": "minecraft:jack_o_lantern[facing=east]", + "92:0": "minecraft:cake[bites=0]", + "92:1": "minecraft:cake[bites=1]", + "92:2": "minecraft:cake[bites=2]", + "92:3": "minecraft:cake[bites=3]", + "92:4": "minecraft:cake[bites=4]", + "92:5": "minecraft:cake[bites=5]", + "92:6": "minecraft:cake[bites=6]", + "93:0": "minecraft:repeater[facing=south,delay=1,powered=false,locked=false]", + "93:1": "minecraft:repeater[facing=west,delay=1,powered=false,locked=false]", + "93:2": "minecraft:repeater[facing=north,delay=1,powered=false,locked=false]", + "93:3": "minecraft:repeater[facing=east,delay=1,powered=false,locked=false]", + "93:4": "minecraft:repeater[facing=south,delay=2,powered=false,locked=false]", + "93:5": "minecraft:repeater[facing=west,delay=2,powered=false,locked=false]", + "93:6": "minecraft:repeater[facing=north,delay=2,powered=false,locked=false]", + "93:7": "minecraft:repeater[facing=east,delay=2,powered=false,locked=false]", + "93:8": "minecraft:repeater[facing=south,delay=3,powered=false,locked=false]", + "93:9": "minecraft:repeater[facing=west,delay=3,powered=false,locked=false]", + "93:10": "minecraft:repeater[facing=north,delay=3,powered=false,locked=false]", + "93:11": "minecraft:repeater[facing=east,delay=3,powered=false,locked=false]", + "93:12": "minecraft:repeater[facing=south,delay=4,powered=false,locked=false]", + "93:13": "minecraft:repeater[facing=west,delay=4,powered=false,locked=false]", + "93:14": "minecraft:repeater[facing=north,delay=4,powered=false,locked=false]", + "93:15": "minecraft:repeater[facing=east,delay=4,powered=false,locked=false]", + "94:0": "minecraft:repeater[facing=south,delay=1,powered=true,locked=false]", + "94:1": "minecraft:repeater[facing=west,delay=1,powered=true,locked=false]", + "94:2": "minecraft:repeater[facing=north,delay=1,powered=true,locked=false]", + "94:3": "minecraft:repeater[facing=east,delay=1,powered=true,locked=false]", + "94:4": "minecraft:repeater[facing=south,delay=2,powered=true,locked=false]", + "94:5": "minecraft:repeater[facing=west,delay=2,powered=true,locked=false]", + "94:6": "minecraft:repeater[facing=north,delay=2,powered=true,locked=false]", + "94:7": "minecraft:repeater[facing=east,delay=2,powered=true,locked=false]", + "94:8": "minecraft:repeater[facing=south,delay=3,powered=true,locked=false]", + "94:9": "minecraft:repeater[facing=west,delay=3,powered=true,locked=false]", + "94:10": "minecraft:repeater[facing=north,delay=3,powered=true,locked=false]", + "94:11": "minecraft:repeater[facing=east,delay=3,powered=true,locked=false]", + "94:12": "minecraft:repeater[facing=south,delay=4,powered=true,locked=false]", + "94:13": "minecraft:repeater[facing=west,delay=4,powered=true,locked=false]", + "94:14": "minecraft:repeater[facing=north,delay=4,powered=true,locked=false]", + "94:15": "minecraft:repeater[facing=east,delay=4,powered=true,locked=false]", + "95:0": "minecraft:white_stained_glass", + "95:1": "minecraft:orange_stained_glass", + "95:2": "minecraft:magenta_stained_glass", + "95:3": "minecraft:light_blue_stained_glass", + "95:4": "minecraft:yellow_stained_glass", + "95:5": "minecraft:lime_stained_glass", + "95:6": "minecraft:pink_stained_glass", + "95:7": "minecraft:gray_stained_glass", + "95:8": "minecraft:light_gray_stained_glass", + "95:9": "minecraft:cyan_stained_glass", + "95:10": "minecraft:purple_stained_glass", + "95:11": "minecraft:blue_stained_glass", + "95:12": "minecraft:brown_stained_glass", + "95:13": "minecraft:green_stained_glass", + "95:14": "minecraft:red_stained_glass", + "95:15": "minecraft:black_stained_glass", + "96:0": "minecraft:oak_trapdoor[facing=north,half=bottom,open=false]", + "96:1": "minecraft:oak_trapdoor[facing=south,half=bottom,open=false]", + "96:2": "minecraft:oak_trapdoor[facing=west,half=bottom,open=false]", + "96:3": "minecraft:oak_trapdoor[facing=east,half=bottom,open=false]", + "96:4": "minecraft:oak_trapdoor[facing=north,half=bottom,open=true]", + "96:5": "minecraft:oak_trapdoor[facing=south,half=bottom,open=true]", + "96:6": "minecraft:oak_trapdoor[facing=west,half=bottom,open=true]", + "96:7": "minecraft:oak_trapdoor[facing=east,half=bottom,open=true]", + "96:8": "minecraft:oak_trapdoor[facing=north,half=top,open=false]", + "96:9": "minecraft:oak_trapdoor[facing=south,half=top,open=false]", + "96:10": "minecraft:oak_trapdoor[facing=west,half=top,open=false]", + "96:11": "minecraft:oak_trapdoor[facing=east,half=top,open=false]", + "96:12": "minecraft:oak_trapdoor[facing=north,half=top,open=true]", + "96:13": "minecraft:oak_trapdoor[facing=south,half=top,open=true]", + "96:14": "minecraft:oak_trapdoor[facing=west,half=top,open=true]", + "96:15": "minecraft:oak_trapdoor[facing=east,half=top,open=true]", + "97:0": "minecraft:infested_stone", + "97:1": "minecraft:infested_cobblestone", + "97:2": "minecraft:infested_stone_bricks", + "97:3": "minecraft:infested_mossy_stone_bricks", + "97:4": "minecraft:infested_cracked_stone_bricks", + "97:5": "minecraft:infested_chiseled_stone_bricks", + "98:0": "minecraft:stone_bricks", + "98:1": "minecraft:mossy_stone_bricks", + "98:2": "minecraft:cracked_stone_bricks", + "98:3": "minecraft:chiseled_stone_bricks", + "99:0": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]", + "99:1": "minecraft:brown_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]", + "99:2": "minecraft:brown_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]", + "99:3": "minecraft:brown_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]", + "99:4": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]", + "99:5": "minecraft:brown_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]", + "99:6": "minecraft:brown_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]", + "99:7": "minecraft:brown_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]", + "99:8": "minecraft:brown_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]", + "99:9": "minecraft:brown_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]", + "99:10": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]", + "99:14": "minecraft:brown_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]", + "99:15": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]", + "100:0": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=false,down=false]", + "100:1": "minecraft:red_mushroom_block[east=false,south=false,north=true,west=true,up=true,down=false]", + "100:2": "minecraft:red_mushroom_block[east=false,south=false,north=true,west=false,up=true,down=false]", + "100:3": "minecraft:red_mushroom_block[east=true,south=false,north=true,west=false,up=true,down=false]", + "100:4": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=true,up=true,down=false]", + "100:5": "minecraft:red_mushroom_block[east=false,south=false,north=false,west=false,up=true,down=false]", + "100:6": "minecraft:red_mushroom_block[east=true,south=false,north=false,west=false,up=true,down=false]", + "100:7": "minecraft:red_mushroom_block[east=false,south=true,north=false,west=true,up=true,down=false]", + "100:8": "minecraft:red_mushroom_block[east=false,south=true,north=false,west=false,up=true,down=false]", + "100:9": "minecraft:red_mushroom_block[east=true,south=true,north=false,west=false,up=true,down=false]", + "100:10": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=false,down=false]", + "100:14": "minecraft:red_mushroom_block[east=true,south=true,north=true,west=true,up=true,down=true]", + "100:15": "minecraft:mushroom_stem[east=true,south=true,north=true,west=true,up=true,down=true]", + "101:0": "minecraft:iron_bars[west=false,east=false,south=false,north=false]", + "102:0": "minecraft:glass_pane[west=false,east=false,south=false,north=false]", + "103:0": "minecraft:melon_block", + "104:0": "minecraft:pumpkin_stem[age=0]", + "104:1": "minecraft:pumpkin_stem[age=1]", + "104:2": "minecraft:pumpkin_stem[age=2]", + "104:3": "minecraft:pumpkin_stem[age=3]", + "104:4": "minecraft:pumpkin_stem[age=4]", + "104:5": "minecraft:pumpkin_stem[age=5]", + "104:6": "minecraft:pumpkin_stem[age=6]", + "104:7": "minecraft:pumpkin_stem[age=7]", + "105:0": "minecraft:melon_stem[age=0]", + "105:1": "minecraft:melon_stem[age=1]", + "105:2": "minecraft:melon_stem[age=2]", + "105:3": "minecraft:melon_stem[age=3]", + "105:4": "minecraft:melon_stem[age=4]", + "105:5": "minecraft:melon_stem[age=5]", + "105:6": "minecraft:melon_stem[age=6]", + "105:7": "minecraft:melon_stem[age=7]", + "106:0": "minecraft:vine[west=false,east=false,up=false,south=false,north=false]", + "106:1": "minecraft:vine[west=false,east=false,up=false,south=true,north=false]", + "106:2": "minecraft:vine[west=true,east=false,up=false,south=false,north=false]", + "106:3": "minecraft:vine[west=true,east=false,up=false,south=true,north=false]", + "106:4": "minecraft:vine[west=false,east=false,up=false,south=false,north=true]", + "106:5": "minecraft:vine[west=false,east=false,up=false,south=true,north=true]", + "106:6": "minecraft:vine[west=true,east=false,up=false,south=false,north=true]", + "106:7": "minecraft:vine[west=true,east=false,up=false,south=true,north=true]", + "106:8": "minecraft:vine[west=false,east=true,up=false,south=false,north=false]", + "106:9": "minecraft:vine[west=false,east=true,up=false,south=true,north=false]", + "106:10": "minecraft:vine[west=true,east=true,up=false,south=false,north=false]", + "106:11": "minecraft:vine[west=true,east=true,up=false,south=true,north=false]", + "106:12": "minecraft:vine[west=false,east=true,up=false,south=false,north=true]", + "106:13": "minecraft:vine[west=false,east=true,up=false,south=true,north=true]", + "106:14": "minecraft:vine[west=true,east=true,up=false,south=false,north=true]", + "106:15": "minecraft:vine[west=true,east=true,up=false,south=true,north=true]", + "107:0": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "107:1": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "107:2": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "107:3": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "107:4": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "107:5": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "107:6": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "107:7": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "107:8": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "107:9": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "107:10": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "107:11": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "107:12": "minecraft:oak_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "107:13": "minecraft:oak_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "107:14": "minecraft:oak_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "107:15": "minecraft:oak_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "108:0": "minecraft:brick_stairs[facing=east,half=bottom,shape=straight]", + "108:1": "minecraft:brick_stairs[facing=west,half=bottom,shape=straight]", + "108:2": "minecraft:brick_stairs[facing=south,half=bottom,shape=straight]", + "108:3": "minecraft:brick_stairs[facing=north,half=bottom,shape=straight]", + "108:4": "minecraft:brick_stairs[facing=east,half=top,shape=straight]", + "108:5": "minecraft:brick_stairs[facing=west,half=top,shape=straight]", + "108:6": "minecraft:brick_stairs[facing=south,half=top,shape=straight]", + "108:7": "minecraft:brick_stairs[facing=north,half=top,shape=straight]", + "109:0": "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight]", + "109:1": "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight]", + "109:2": "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight]", + "109:3": "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight]", + "109:4": "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight]", + "109:5": "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight]", + "109:6": "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight]", + "109:7": "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight]", + "110:0": "minecraft:mycelium[snowy=false]", + "111:0": "minecraft:lily_pad", + "112:0": "minecraft:nether_bricks", + "113:0": "minecraft:nether_brick_fence[west=false,east=false,south=false,north=false]", + "114:0": "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight]", + "114:1": "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight]", + "114:2": "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight]", + "114:3": "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight]", + "114:4": "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight]", + "114:5": "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight]", + "114:6": "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight]", + "114:7": "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight]", + "115:0": "minecraft:nether_wart[age=0]", + "115:1": "minecraft:nether_wart[age=1]", + "115:2": "minecraft:nether_wart[age=2]", + "115:3": "minecraft:nether_wart[age=3]", + "116:0": "minecraft:enchanting_table", + "117:0": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]", + "117:1": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]", + "117:2": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]", + "117:3": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]", + "117:4": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]", + "117:5": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]", + "117:6": "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]", + "117:7": "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]", + "118:0": "minecraft:cauldron[level=0]", + "118:1": "minecraft:cauldron[level=1]", + "118:2": "minecraft:cauldron[level=2]", + "118:3": "minecraft:cauldron[level=3]", + "120:0": "minecraft:end_portal_frame[eye=false,facing=south]", + "120:1": "minecraft:end_portal_frame[eye=false,facing=west]", + "120:2": "minecraft:end_portal_frame[eye=false,facing=north]", + "120:3": "minecraft:end_portal_frame[eye=false,facing=east]", + "120:4": "minecraft:end_portal_frame[eye=true,facing=south]", + "120:5": "minecraft:end_portal_frame[eye=true,facing=west]", + "120:6": "minecraft:end_portal_frame[eye=true,facing=north]", + "120:7": "minecraft:end_portal_frame[eye=true,facing=east]", + "121:0": "minecraft:end_stone", + "122:0": "minecraft:dragon_egg", + "123:0": "minecraft:redstone_lamp[lit=false]", + "124:0": "minecraft:redstone_lamp[lit=true]", + "125:0": "minecraft:oak_slab[type=double]", + "125:1": "minecraft:spruce_slab[type=double]", + "125:2": "minecraft:birch_slab[type=double]", + "125:3": "minecraft:jungle_slab[type=double]", + "125:4": "minecraft:acacia_slab[type=double]", + "125:5": "minecraft:dark_oak_slab[type=double]", + "126:0": "minecraft:oak_slab[type=bottom]", + "126:1": "minecraft:spruce_slab[type=bottom]", + "126:2": "minecraft:birch_slab[type=bottom]", + "126:3": "minecraft:jungle_slab[type=bottom]", + "126:4": "minecraft:acacia_slab[type=bottom]", + "126:5": "minecraft:dark_oak_slab[type=bottom]", + "126:8": "minecraft:oak_slab[type=top]", + "126:9": "minecraft:spruce_slab[type=top]", + "126:10": "minecraft:birch_slab[type=top]", + "126:11": "minecraft:jungle_slab[type=top]", + "126:12": "minecraft:acacia_slab[type=top]", + "126:13": "minecraft:dark_oak_slab[type=top]", + "127:0": "minecraft:cocoa[facing=south,age=0]", + "127:1": "minecraft:cocoa[facing=west,age=0]", + "127:2": "minecraft:cocoa[facing=north,age=0]", + "127:3": "minecraft:cocoa[facing=east,age=0]", + "127:4": "minecraft:cocoa[facing=south,age=1]", + "127:5": "minecraft:cocoa[facing=west,age=1]", + "127:6": "minecraft:cocoa[facing=north,age=1]", + "127:7": "minecraft:cocoa[facing=east,age=1]", + "127:8": "minecraft:cocoa[facing=south,age=2]", + "127:9": "minecraft:cocoa[facing=west,age=2]", + "127:10": "minecraft:cocoa[facing=north,age=2]", + "127:11": "minecraft:cocoa[facing=east,age=2]", + "128:0": "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight]", + "128:1": "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight]", + "128:2": "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight]", + "128:3": "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight]", + "128:4": "minecraft:sandstone_stairs[facing=east,half=top,shape=straight]", + "128:5": "minecraft:sandstone_stairs[facing=west,half=top,shape=straight]", + "128:6": "minecraft:sandstone_stairs[facing=south,half=top,shape=straight]", + "128:7": "minecraft:sandstone_stairs[facing=north,half=top,shape=straight]", + "129:0": "minecraft:emerald_ore", + "131:0": "minecraft:tripwire_hook[attached=false,facing=south,powered=false]", + "131:1": "minecraft:tripwire_hook[attached=false,facing=west,powered=false]", + "131:2": "minecraft:tripwire_hook[attached=false,facing=north,powered=false]", + "131:3": "minecraft:tripwire_hook[attached=false,facing=east,powered=false]", + "131:4": "minecraft:tripwire_hook[attached=true,facing=south,powered=false]", + "131:5": "minecraft:tripwire_hook[attached=true,facing=west,powered=false]", + "131:6": "minecraft:tripwire_hook[attached=true,facing=north,powered=false]", + "131:7": "minecraft:tripwire_hook[attached=true,facing=east,powered=false]", + "131:8": "minecraft:tripwire_hook[attached=false,facing=south,powered=true]", + "131:9": "minecraft:tripwire_hook[attached=false,facing=west,powered=true]", + "131:10": "minecraft:tripwire_hook[attached=false,facing=north,powered=true]", + "131:11": "minecraft:tripwire_hook[attached=false,facing=east,powered=true]", + "131:12": "minecraft:tripwire_hook[attached=true,facing=south,powered=true]", + "131:13": "minecraft:tripwire_hook[attached=true,facing=west,powered=true]", + "131:14": "minecraft:tripwire_hook[attached=true,facing=north,powered=true]", + "131:15": "minecraft:tripwire_hook[attached=true,facing=east,powered=true]", + "132:0": "minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=false,west=false]", + "132:1": "minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=false,west=false]", + "132:4": "minecraft:tripwire[disarmed=false,east=false,powered=false,south=false,north=false,attached=true,west=false]", + "132:5": "minecraft:tripwire[disarmed=false,east=false,powered=true,south=false,north=false,attached=true,west=false]", + "132:8": "minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=false,west=false]", + "132:9": "minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=false,west=false]", + "132:12": "minecraft:tripwire[disarmed=true,east=false,powered=false,south=false,north=false,attached=true,west=false]", + "132:13": "minecraft:tripwire[disarmed=true,east=false,powered=true,south=false,north=false,attached=true,west=false]", + "133:0": "minecraft:emerald_block", + "134:0": "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight]", + "134:1": "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight]", + "134:2": "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight]", + "134:3": "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight]", + "134:4": "minecraft:spruce_stairs[facing=east,half=top,shape=straight]", + "134:5": "minecraft:spruce_stairs[facing=west,half=top,shape=straight]", + "134:6": "minecraft:spruce_stairs[facing=south,half=top,shape=straight]", + "134:7": "minecraft:spruce_stairs[facing=north,half=top,shape=straight]", + "135:0": "minecraft:birch_stairs[facing=east,half=bottom,shape=straight]", + "135:1": "minecraft:birch_stairs[facing=west,half=bottom,shape=straight]", + "135:2": "minecraft:birch_stairs[facing=south,half=bottom,shape=straight]", + "135:3": "minecraft:birch_stairs[facing=north,half=bottom,shape=straight]", + "135:4": "minecraft:birch_stairs[facing=east,half=top,shape=straight]", + "135:5": "minecraft:birch_stairs[facing=west,half=top,shape=straight]", + "135:6": "minecraft:birch_stairs[facing=south,half=top,shape=straight]", + "135:7": "minecraft:birch_stairs[facing=north,half=top,shape=straight]", + "136:0": "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight]", + "136:1": "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight]", + "136:2": "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight]", + "136:3": "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight]", + "136:4": "minecraft:jungle_stairs[facing=east,half=top,shape=straight]", + "136:5": "minecraft:jungle_stairs[facing=west,half=top,shape=straight]", + "136:6": "minecraft:jungle_stairs[facing=south,half=top,shape=straight]", + "136:7": "minecraft:jungle_stairs[facing=north,half=top,shape=straight]", + "137:0": "minecraft:command_block[conditional=false,facing=down]", + "137:1": "minecraft:command_block[conditional=false,facing=up]", + "137:2": "minecraft:command_block[conditional=false,facing=north]", + "137:3": "minecraft:command_block[conditional=false,facing=south]", + "137:4": "minecraft:command_block[conditional=false,facing=west]", + "137:5": "minecraft:command_block[conditional=false,facing=east]", + "137:8": "minecraft:command_block[conditional=true,facing=down]", + "137:9": "minecraft:command_block[conditional=true,facing=up]", + "137:10": "minecraft:command_block[conditional=true,facing=north]", + "137:11": "minecraft:command_block[conditional=true,facing=south]", + "137:12": "minecraft:command_block[conditional=true,facing=west]", + "137:13": "minecraft:command_block[conditional=true,facing=east]", + "138:0": "minecraft:beacon", + "139:0": "minecraft:cobblestone_wall[west=false,east=false,up=false,south=false,north=false]", + "139:1": "minecraft:mossy_cobblestone_wall[west=false,east=false,up=false,south=false,north=false]", + "140:0": "minecraft:potted_cactus", + "140:1": "minecraft:potted_cactus", + "140:2": "minecraft:potted_cactus", + "140:3": "minecraft:potted_cactus", + "140:4": "minecraft:potted_cactus", + "140:5": "minecraft:potted_cactus", + "140:6": "minecraft:potted_cactus", + "140:7": "minecraft:potted_cactus", + "140:8": "minecraft:potted_cactus", + "140:9": "minecraft:potted_cactus", + "140:10": "minecraft:potted_cactus", + "140:11": "minecraft:potted_cactus", + "140:12": "minecraft:potted_cactus", + "140:13": "minecraft:potted_cactus", + "140:14": "minecraft:potted_cactus", + "140:15": "minecraft:potted_cactus", + "141:0": "minecraft:carrots[age=0]", + "141:1": "minecraft:carrots[age=1]", + "141:2": "minecraft:carrots[age=2]", + "141:3": "minecraft:carrots[age=3]", + "141:4": "minecraft:carrots[age=4]", + "141:5": "minecraft:carrots[age=5]", + "141:6": "minecraft:carrots[age=6]", + "141:7": "minecraft:carrots[age=7]", + "142:0": "minecraft:potatoes[age=0]", + "142:1": "minecraft:potatoes[age=1]", + "142:2": "minecraft:potatoes[age=2]", + "142:3": "minecraft:potatoes[age=3]", + "142:4": "minecraft:potatoes[age=4]", + "142:5": "minecraft:potatoes[age=5]", + "142:6": "minecraft:potatoes[age=6]", + "142:7": "minecraft:potatoes[age=7]", + "143:0": "minecraft:oak_button[facing=north,face=ceiling,powered=false]", + "143:1": "minecraft:oak_button[facing=east,face=wall,powered=false]", + "143:2": "minecraft:oak_button[facing=west,face=wall,powered=false]", + "143:3": "minecraft:oak_button[facing=south,face=wall,powered=false]", + "143:4": "minecraft:oak_button[facing=north,face=wall,powered=false]", + "143:5": "minecraft:oak_button[facing=north,face=floor,powered=false]", + "143:8": "minecraft:oak_button[facing=north,face=ceiling,powered=true]", + "143:9": "minecraft:oak_button[facing=east,face=wall,powered=true]", + "143:10": "minecraft:oak_button[facing=west,face=wall,powered=true]", + "143:11": "minecraft:oak_button[facing=south,face=wall,powered=true]", + "143:12": "minecraft:oak_button[facing=north,face=wall,powered=true]", + "143:13": "minecraft:oak_button[facing=north,face=floor,powered=true]", + "145:0": "minecraft:anvil[facing=south]", + "145:1": "minecraft:anvil[facing=west]", + "145:2": "minecraft:anvil[facing=north]", + "145:3": "minecraft:anvil[facing=east]", + "145:4": "minecraft:chipped_anvil[facing=south]", + "145:5": "minecraft:chipped_anvil[facing=west]", + "145:6": "minecraft:chipped_anvil[facing=north]", + "145:7": "minecraft:chipped_anvil[facing=east]", + "145:8": "minecraft:damaged_anvil[facing=south]", + "145:9": "minecraft:damaged_anvil[facing=west]", + "145:10": "minecraft:damaged_anvil[facing=north]", + "145:11": "minecraft:damaged_anvil[facing=east]", + "147:0": "minecraft:light_weighted_pressure_plate[power=0]", + "147:1": "minecraft:light_weighted_pressure_plate[power=1]", + "147:2": "minecraft:light_weighted_pressure_plate[power=2]", + "147:3": "minecraft:light_weighted_pressure_plate[power=3]", + "147:4": "minecraft:light_weighted_pressure_plate[power=4]", + "147:5": "minecraft:light_weighted_pressure_plate[power=5]", + "147:6": "minecraft:light_weighted_pressure_plate[power=6]", + "147:7": "minecraft:light_weighted_pressure_plate[power=7]", + "147:8": "minecraft:light_weighted_pressure_plate[power=8]", + "147:9": "minecraft:light_weighted_pressure_plate[power=9]", + "147:10": "minecraft:light_weighted_pressure_plate[power=10]", + "147:11": "minecraft:light_weighted_pressure_plate[power=11]", + "147:12": "minecraft:light_weighted_pressure_plate[power=12]", + "147:13": "minecraft:light_weighted_pressure_plate[power=13]", + "147:14": "minecraft:light_weighted_pressure_plate[power=14]", + "147:15": "minecraft:light_weighted_pressure_plate[power=15]", + "148:0": "minecraft:heavy_weighted_pressure_plate[power=0]", + "148:1": "minecraft:heavy_weighted_pressure_plate[power=1]", + "148:2": "minecraft:heavy_weighted_pressure_plate[power=2]", + "148:3": "minecraft:heavy_weighted_pressure_plate[power=3]", + "148:4": "minecraft:heavy_weighted_pressure_plate[power=4]", + "148:5": "minecraft:heavy_weighted_pressure_plate[power=5]", + "148:6": "minecraft:heavy_weighted_pressure_plate[power=6]", + "148:7": "minecraft:heavy_weighted_pressure_plate[power=7]", + "148:8": "minecraft:heavy_weighted_pressure_plate[power=8]", + "148:9": "minecraft:heavy_weighted_pressure_plate[power=9]", + "148:10": "minecraft:heavy_weighted_pressure_plate[power=10]", + "148:11": "minecraft:heavy_weighted_pressure_plate[power=11]", + "148:12": "minecraft:heavy_weighted_pressure_plate[power=12]", + "148:13": "minecraft:heavy_weighted_pressure_plate[power=13]", + "148:14": "minecraft:heavy_weighted_pressure_plate[power=14]", + "148:15": "minecraft:heavy_weighted_pressure_plate[power=15]", + "149:0": "minecraft:comparator[mode=compare,facing=south,powered=false]", + "149:1": "minecraft:comparator[mode=compare,facing=west,powered=false]", + "149:2": "minecraft:comparator[mode=compare,facing=north,powered=false]", + "149:3": "minecraft:comparator[mode=compare,facing=east,powered=false]", + "149:4": "minecraft:comparator[mode=subtract,facing=south,powered=false]", + "149:5": "minecraft:comparator[mode=subtract,facing=west,powered=false]", + "149:6": "minecraft:comparator[mode=subtract,facing=north,powered=false]", + "149:7": "minecraft:comparator[mode=subtract,facing=east,powered=false]", + "149:8": "minecraft:comparator[mode=compare,facing=south,powered=true]", + "149:9": "minecraft:comparator[mode=compare,facing=west,powered=true]", + "149:10": "minecraft:comparator[mode=compare,facing=north,powered=true]", + "149:11": "minecraft:comparator[mode=compare,facing=east,powered=true]", + "149:12": "minecraft:comparator[mode=subtract,facing=south,powered=true]", + "149:13": "minecraft:comparator[mode=subtract,facing=west,powered=true]", + "149:14": "minecraft:comparator[mode=subtract,facing=north,powered=true]", + "149:15": "minecraft:comparator[mode=subtract,facing=east,powered=true]", + "150:0": "minecraft:comparator[mode=compare,facing=south,powered=false]", + "150:1": "minecraft:comparator[mode=compare,facing=west,powered=false]", + "150:2": "minecraft:comparator[mode=compare,facing=north,powered=false]", + "150:3": "minecraft:comparator[mode=compare,facing=east,powered=false]", + "150:4": "minecraft:comparator[mode=subtract,facing=south,powered=false]", + "150:5": "minecraft:comparator[mode=subtract,facing=west,powered=false]", + "150:6": "minecraft:comparator[mode=subtract,facing=north,powered=false]", + "150:7": "minecraft:comparator[mode=subtract,facing=east,powered=false]", + "150:8": "minecraft:comparator[mode=compare,facing=south,powered=true]", + "150:9": "minecraft:comparator[mode=compare,facing=west,powered=true]", + "150:10": "minecraft:comparator[mode=compare,facing=north,powered=true]", + "150:11": "minecraft:comparator[mode=compare,facing=east,powered=true]", + "150:12": "minecraft:comparator[mode=subtract,facing=south,powered=true]", + "150:13": "minecraft:comparator[mode=subtract,facing=west,powered=true]", + "150:14": "minecraft:comparator[mode=subtract,facing=north,powered=true]", + "150:15": "minecraft:comparator[mode=subtract,facing=east,powered=true]", + "151:0": "minecraft:daylight_detector[inverted=false,power=0]", + "151:1": "minecraft:daylight_detector[inverted=false,power=1]", + "151:2": "minecraft:daylight_detector[inverted=false,power=2]", + "151:3": "minecraft:daylight_detector[inverted=false,power=3]", + "151:4": "minecraft:daylight_detector[inverted=false,power=4]", + "151:5": "minecraft:daylight_detector[inverted=false,power=5]", + "151:6": "minecraft:daylight_detector[inverted=false,power=6]", + "151:7": "minecraft:daylight_detector[inverted=false,power=7]", + "151:8": "minecraft:daylight_detector[inverted=false,power=8]", + "151:9": "minecraft:daylight_detector[inverted=false,power=9]", + "151:10": "minecraft:daylight_detector[inverted=false,power=10]", + "151:11": "minecraft:daylight_detector[inverted=false,power=11]", + "151:12": "minecraft:daylight_detector[inverted=false,power=12]", + "151:13": "minecraft:daylight_detector[inverted=false,power=13]", + "151:14": "minecraft:daylight_detector[inverted=false,power=14]", + "151:15": "minecraft:daylight_detector[inverted=false,power=15]", + "152:0": "minecraft:redstone_block", + "153:0": "minecraft:nether_quartz_ore", + "154:0": "minecraft:hopper[facing=down,enabled=true]", + "154:2": "minecraft:hopper[facing=north,enabled=true]", + "154:3": "minecraft:hopper[facing=south,enabled=true]", + "154:4": "minecraft:hopper[facing=west,enabled=true]", + "154:5": "minecraft:hopper[facing=east,enabled=true]", + "154:8": "minecraft:hopper[facing=down,enabled=false]", + "154:10": "minecraft:hopper[facing=north,enabled=false]", + "154:11": "minecraft:hopper[facing=south,enabled=false]", + "154:12": "minecraft:hopper[facing=west,enabled=false]", + "154:13": "minecraft:hopper[facing=east,enabled=false]", + "155:0": "minecraft:quartz_block", + "155:1": "minecraft:chiseled_quartz_block", + "155:2": "minecraft:quartz_pillar[axis=y]", + "155:3": "minecraft:quartz_pillar[axis=x]", + "155:4": "minecraft:quartz_pillar[axis=z]", + "156:0": "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight]", + "156:1": "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight]", + "156:2": "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight]", + "156:3": "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight]", + "156:4": "minecraft:quartz_stairs[facing=east,half=top,shape=straight]", + "156:5": "minecraft:quartz_stairs[facing=west,half=top,shape=straight]", + "156:6": "minecraft:quartz_stairs[facing=south,half=top,shape=straight]", + "156:7": "minecraft:quartz_stairs[facing=north,half=top,shape=straight]", + "157:0": "minecraft:activator_rail[powered=false,shape=north_south]", + "157:1": "minecraft:activator_rail[powered=false,shape=east_west]", + "157:2": "minecraft:activator_rail[powered=false,shape=ascending_east]", + "157:3": "minecraft:activator_rail[powered=false,shape=ascending_west]", + "157:4": "minecraft:activator_rail[powered=false,shape=ascending_north]", + "157:5": "minecraft:activator_rail[powered=false,shape=ascending_south]", + "157:8": "minecraft:activator_rail[powered=true,shape=north_south]", + "157:9": "minecraft:activator_rail[powered=true,shape=east_west]", + "157:10": "minecraft:activator_rail[powered=true,shape=ascending_east]", + "157:11": "minecraft:activator_rail[powered=true,shape=ascending_west]", + "157:12": "minecraft:activator_rail[powered=true,shape=ascending_north]", + "157:13": "minecraft:activator_rail[powered=true,shape=ascending_south]", + "158:0": "minecraft:dropper[facing=down,triggered=false]", + "158:1": "minecraft:dropper[facing=up,triggered=false]", + "158:2": "minecraft:dropper[facing=north,triggered=false]", + "158:3": "minecraft:dropper[facing=south,triggered=false]", + "158:4": "minecraft:dropper[facing=west,triggered=false]", + "158:5": "minecraft:dropper[facing=east,triggered=false]", + "158:8": "minecraft:dropper[facing=down,triggered=true]", + "158:9": "minecraft:dropper[facing=up,triggered=true]", + "158:10": "minecraft:dropper[facing=north,triggered=true]", + "158:11": "minecraft:dropper[facing=south,triggered=true]", + "158:12": "minecraft:dropper[facing=west,triggered=true]", + "158:13": "minecraft:dropper[facing=east,triggered=true]", + "159:0": "minecraft:white_terracotta", + "159:1": "minecraft:orange_terracotta", + "159:2": "minecraft:magenta_terracotta", + "159:3": "minecraft:light_blue_terracotta", + "159:4": "minecraft:yellow_terracotta", + "159:5": "minecraft:lime_terracotta", + "159:6": "minecraft:pink_terracotta", + "159:7": "minecraft:gray_terracotta", + "159:8": "minecraft:light_gray_terracotta", + "159:9": "minecraft:cyan_terracotta", + "159:10": "minecraft:purple_terracotta", + "159:11": "minecraft:blue_terracotta", + "159:12": "minecraft:brown_terracotta", + "159:13": "minecraft:green_terracotta", + "159:14": "minecraft:red_terracotta", + "159:15": "minecraft:black_terracotta", + "160:0": "minecraft:white_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:1": "minecraft:orange_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:2": "minecraft:magenta_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:3": "minecraft:light_blue_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:4": "minecraft:yellow_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:5": "minecraft:lime_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:6": "minecraft:pink_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:7": "minecraft:gray_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:8": "minecraft:light_gray_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:9": "minecraft:cyan_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:10": "minecraft:purple_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:11": "minecraft:blue_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:12": "minecraft:brown_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:13": "minecraft:green_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:14": "minecraft:red_stained_glass_pane[west=false,east=false,south=false,north=false]", + "160:15": "minecraft:black_stained_glass_pane[west=false,east=false,south=false,north=false]", + "161:0": "minecraft:acacia_leaves[check_decay=false,decayable=true]", + "161:1": "minecraft:dark_oak_leaves[check_decay=false,decayable=true]", + "161:4": "minecraft:acacia_leaves[check_decay=false,decayable=false]", + "161:5": "minecraft:dark_oak_leaves[check_decay=false,decayable=false]", + "161:8": "minecraft:acacia_leaves[check_decay=true,decayable=true]", + "161:9": "minecraft:dark_oak_leaves[check_decay=true,decayable=true]", + "161:12": "minecraft:acacia_leaves[check_decay=true,decayable=false]", + "161:13": "minecraft:dark_oak_leaves[check_decay=true,decayable=false]", + "162:0": "minecraft:acacia_log[axis=y]", + "162:1": "minecraft:dark_oak_log[axis=y]", + "162:4": "minecraft:acacia_log[axis=x]", + "162:5": "minecraft:dark_oak_log[axis=x]", + "162:8": "minecraft:acacia_log[axis=z]", + "162:9": "minecraft:dark_oak_log[axis=z]", + "162:12": "minecraft:acacia_bark", + "162:13": "minecraft:dark_oak_bark", + "163:0": "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight]", + "163:1": "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight]", + "163:2": "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight]", + "163:3": "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight]", + "163:4": "minecraft:acacia_stairs[facing=east,half=top,shape=straight]", + "163:5": "minecraft:acacia_stairs[facing=west,half=top,shape=straight]", + "163:6": "minecraft:acacia_stairs[facing=south,half=top,shape=straight]", + "163:7": "minecraft:acacia_stairs[facing=north,half=top,shape=straight]", + "164:0": "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight]", + "164:1": "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight]", + "164:2": "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight]", + "164:3": "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight]", + "164:4": "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight]", + "164:5": "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight]", + "164:6": "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight]", + "164:7": "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight]", + "165:0": "minecraft:slime_block", + "167:0": "minecraft:iron_trapdoor[facing=north,half=bottom,open=false]", + "167:1": "minecraft:iron_trapdoor[facing=south,half=bottom,open=false]", + "167:2": "minecraft:iron_trapdoor[facing=west,half=bottom,open=false]", + "167:3": "minecraft:iron_trapdoor[facing=east,half=bottom,open=false]", + "167:4": "minecraft:iron_trapdoor[facing=north,half=bottom,open=true]", + "167:5": "minecraft:iron_trapdoor[facing=south,half=bottom,open=true]", + "167:6": "minecraft:iron_trapdoor[facing=west,half=bottom,open=true]", + "167:7": "minecraft:iron_trapdoor[facing=east,half=bottom,open=true]", + "167:8": "minecraft:iron_trapdoor[facing=north,half=top,open=false]", + "167:9": "minecraft:iron_trapdoor[facing=south,half=top,open=false]", + "167:10": "minecraft:iron_trapdoor[facing=west,half=top,open=false]", + "167:11": "minecraft:iron_trapdoor[facing=east,half=top,open=false]", + "167:12": "minecraft:iron_trapdoor[facing=north,half=top,open=true]", + "167:13": "minecraft:iron_trapdoor[facing=south,half=top,open=true]", + "167:14": "minecraft:iron_trapdoor[facing=west,half=top,open=true]", + "167:15": "minecraft:iron_trapdoor[facing=east,half=top,open=true]", + "168:0": "minecraft:prismarine", + "168:1": "minecraft:prismarine_bricks", + "168:2": "minecraft:dark_prismarine", + "169:0": "minecraft:sea_lantern", + "170:0": "minecraft:hay_block[axis=y]", + "170:4": "minecraft:hay_block[axis=x]", + "170:8": "minecraft:hay_block[axis=z]", + "171:0": "minecraft:white_carpet", + "171:1": "minecraft:orange_carpet", + "171:2": "minecraft:magenta_carpet", + "171:3": "minecraft:light_blue_carpet", + "171:4": "minecraft:yellow_carpet", + "171:5": "minecraft:lime_carpet", + "171:6": "minecraft:pink_carpet", + "171:7": "minecraft:gray_carpet", + "171:8": "minecraft:light_gray_carpet", + "171:9": "minecraft:cyan_carpet", + "171:10": "minecraft:purple_carpet", + "171:11": "minecraft:blue_carpet", + "171:12": "minecraft:brown_carpet", + "171:13": "minecraft:green_carpet", + "171:14": "minecraft:red_carpet", + "171:15": "minecraft:black_carpet", + "172:0": "minecraft:terracotta", + "173:0": "minecraft:coal_block", + "174:0": "minecraft:packed_ice", + "175:0": "minecraft:sunflower[half=lower]", + "175:1": "minecraft:lilac[half=lower]", + "175:2": "minecraft:tall_grass[half=lower]", + "175:3": "minecraft:large_fern[half=lower]", + "175:4": "minecraft:rose_bush[half=lower]", + "175:5": "minecraft:peony[half=lower]", + "175:8": "minecraft:peony[half=upper]", + "175:9": "minecraft:peony[half=upper]", + "175:10": "minecraft:peony[half=upper]", + "175:11": "minecraft:peony[half=upper]", + "178:0": "minecraft:daylight_detector[inverted=true,power=0]", + "178:1": "minecraft:daylight_detector[inverted=true,power=1]", + "178:2": "minecraft:daylight_detector[inverted=true,power=2]", + "178:3": "minecraft:daylight_detector[inverted=true,power=3]", + "178:4": "minecraft:daylight_detector[inverted=true,power=4]", + "178:5": "minecraft:daylight_detector[inverted=true,power=5]", + "178:6": "minecraft:daylight_detector[inverted=true,power=6]", + "178:7": "minecraft:daylight_detector[inverted=true,power=7]", + "178:8": "minecraft:daylight_detector[inverted=true,power=8]", + "178:9": "minecraft:daylight_detector[inverted=true,power=9]", + "178:10": "minecraft:daylight_detector[inverted=true,power=10]", + "178:11": "minecraft:daylight_detector[inverted=true,power=11]", + "178:12": "minecraft:daylight_detector[inverted=true,power=12]", + "178:13": "minecraft:daylight_detector[inverted=true,power=13]", + "178:14": "minecraft:daylight_detector[inverted=true,power=14]", + "178:15": "minecraft:daylight_detector[inverted=true,power=15]", + "179:0": "minecraft:red_sandstone", + "179:1": "minecraft:chiseled_red_sandstone", + "179:2": "minecraft:cut_red_sandstone", + "180:0": "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight]", + "180:1": "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight]", + "180:2": "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight]", + "180:3": "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight]", + "180:4": "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight]", + "180:5": "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight]", + "180:6": "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight]", + "180:7": "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight]", + "181:0": "minecraft:red_sandstone_slab[type=double]", + "181:8": "minecraft:smooth_red_sandstone", + "182:0": "minecraft:red_sandstone_slab[type=bottom]", + "182:8": "minecraft:red_sandstone_slab[type=top]", + "183:0": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "183:1": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "183:2": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "183:3": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "183:4": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "183:5": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "183:6": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "183:7": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "183:8": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "183:9": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "183:10": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "183:11": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "183:12": "minecraft:spruce_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "183:13": "minecraft:spruce_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "183:14": "minecraft:spruce_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "183:15": "minecraft:spruce_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "184:0": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "184:1": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "184:2": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "184:3": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "184:4": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "184:5": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "184:6": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "184:7": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "184:8": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "184:9": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "184:10": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "184:11": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "184:12": "minecraft:birch_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "184:13": "minecraft:birch_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "184:14": "minecraft:birch_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "184:15": "minecraft:birch_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "185:0": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "185:1": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "185:2": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "185:3": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "185:4": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "185:5": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "185:6": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "185:7": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "185:8": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "185:9": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "185:10": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "185:11": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "185:12": "minecraft:jungle_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "185:13": "minecraft:jungle_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "185:14": "minecraft:jungle_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "185:15": "minecraft:jungle_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "186:0": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "186:1": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "186:2": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "186:3": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "186:4": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "186:5": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "186:6": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "186:7": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "186:8": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "186:9": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "186:10": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "186:11": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "186:12": "minecraft:dark_oak_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "186:13": "minecraft:dark_oak_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "186:14": "minecraft:dark_oak_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "186:15": "minecraft:dark_oak_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "187:0": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=false,open=false]", + "187:1": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=false,open=false]", + "187:2": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=false,open=false]", + "187:3": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=false,open=false]", + "187:4": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=false,open=true]", + "187:5": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=false,open=true]", + "187:6": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=false,open=true]", + "187:7": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=false,open=true]", + "187:8": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=true,open=false]", + "187:9": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=true,open=false]", + "187:10": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=true,open=false]", + "187:11": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=true,open=false]", + "187:12": "minecraft:acacia_fence_gate[in_wall=false,facing=south,powered=true,open=true]", + "187:13": "minecraft:acacia_fence_gate[in_wall=false,facing=west,powered=true,open=true]", + "187:14": "minecraft:acacia_fence_gate[in_wall=false,facing=north,powered=true,open=true]", + "187:15": "minecraft:acacia_fence_gate[in_wall=false,facing=east,powered=true,open=true]", + "188:0": "minecraft:spruce_fence[west=false,east=false,south=false,north=false]", + "189:0": "minecraft:birch_fence[west=false,east=false,south=false,north=false]", + "190:0": "minecraft:jungle_fence[west=false,east=false,south=false,north=false]", + "191:0": "minecraft:dark_oak_fence[west=false,east=false,south=false,north=false]", + "192:0": "minecraft:acacia_fence[west=false,east=false,south=false,north=false]", + "193:0": "minecraft:spruce_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "193:1": "minecraft:spruce_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "193:2": "minecraft:spruce_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "193:3": "minecraft:spruce_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "193:4": "minecraft:spruce_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "193:5": "minecraft:spruce_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "193:6": "minecraft:spruce_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "193:7": "minecraft:spruce_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "193:8": "minecraft:spruce_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "193:9": "minecraft:spruce_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "193:10": "minecraft:spruce_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "193:11": "minecraft:spruce_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "194:0": "minecraft:birch_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "194:1": "minecraft:birch_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "194:2": "minecraft:birch_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "194:3": "minecraft:birch_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "194:4": "minecraft:birch_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "194:5": "minecraft:birch_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "194:6": "minecraft:birch_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "194:7": "minecraft:birch_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "194:8": "minecraft:birch_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "194:9": "minecraft:birch_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "194:10": "minecraft:birch_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "194:11": "minecraft:birch_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "195:0": "minecraft:jungle_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "195:1": "minecraft:jungle_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "195:2": "minecraft:jungle_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "195:3": "minecraft:jungle_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "195:4": "minecraft:jungle_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "195:5": "minecraft:jungle_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "195:6": "minecraft:jungle_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "195:7": "minecraft:jungle_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "195:8": "minecraft:jungle_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "195:9": "minecraft:jungle_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "195:10": "minecraft:jungle_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "195:11": "minecraft:jungle_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "196:0": "minecraft:acacia_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "196:1": "minecraft:acacia_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "196:2": "minecraft:acacia_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "196:3": "minecraft:acacia_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "196:4": "minecraft:acacia_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "196:5": "minecraft:acacia_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "196:6": "minecraft:acacia_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "196:7": "minecraft:acacia_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "196:8": "minecraft:acacia_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "196:9": "minecraft:acacia_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "196:10": "minecraft:acacia_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "196:11": "minecraft:acacia_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "197:0": "minecraft:dark_oak_door[hinge=right,facing=east,half=lower,powered=false,open=false]", + "197:1": "minecraft:dark_oak_door[hinge=right,facing=south,half=lower,powered=false,open=false]", + "197:2": "minecraft:dark_oak_door[hinge=right,facing=west,half=lower,powered=false,open=false]", + "197:3": "minecraft:dark_oak_door[hinge=right,facing=north,half=lower,powered=false,open=false]", + "197:4": "minecraft:dark_oak_door[hinge=right,facing=east,half=lower,powered=false,open=true]", + "197:5": "minecraft:dark_oak_door[hinge=right,facing=south,half=lower,powered=false,open=true]", + "197:6": "minecraft:dark_oak_door[hinge=right,facing=west,half=lower,powered=false,open=true]", + "197:7": "minecraft:dark_oak_door[hinge=right,facing=north,half=lower,powered=false,open=true]", + "197:8": "minecraft:dark_oak_door[hinge=left,facing=east,half=upper,powered=false,open=false]", + "197:9": "minecraft:dark_oak_door[hinge=right,facing=east,half=upper,powered=false,open=false]", + "197:10": "minecraft:dark_oak_door[hinge=left,facing=east,half=upper,powered=true,open=false]", + "197:11": "minecraft:dark_oak_door[hinge=right,facing=east,half=upper,powered=true,open=false]", + "198:0": "minecraft:end_rod[facing=down]", + "198:1": "minecraft:end_rod[facing=up]", + "198:2": "minecraft:end_rod[facing=north]", + "198:3": "minecraft:end_rod[facing=south]", + "198:4": "minecraft:end_rod[facing=west]", + "198:5": "minecraft:end_rod[facing=east]", + "199:0": "minecraft:chorus_plant[east=false,south=false,north=false,west=false,up=false,down=false]", + "200:0": "minecraft:chorus_flower[age=0]", + "200:1": "minecraft:chorus_flower[age=1]", + "200:2": "minecraft:chorus_flower[age=2]", + "200:3": "minecraft:chorus_flower[age=3]", + "200:4": "minecraft:chorus_flower[age=4]", + "200:5": "minecraft:chorus_flower[age=5]", + "201:0": "minecraft:purpur_block", + "202:0": "minecraft:purpur_pillar[axis=y]", + "202:4": "minecraft:purpur_pillar[axis=x]", + "202:8": "minecraft:purpur_pillar[axis=z]", + "203:0": "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight]", + "203:1": "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight]", + "203:2": "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight]", + "203:3": "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight]", + "203:4": "minecraft:purpur_stairs[facing=east,half=top,shape=straight]", + "203:5": "minecraft:purpur_stairs[facing=west,half=top,shape=straight]", + "203:6": "minecraft:purpur_stairs[facing=south,half=top,shape=straight]", + "203:7": "minecraft:purpur_stairs[facing=north,half=top,shape=straight]", + "204:0": "minecraft:purpur_slab[type=double]", + "205:0": "minecraft:purpur_slab[type=bottom]", + "205:8": "minecraft:purpur_slab[type=top]", + "206:0": "minecraft:end_stone_bricks", + "207:0": "minecraft:beetroots[age=0]", + "207:1": "minecraft:beetroots[age=1]", + "207:2": "minecraft:beetroots[age=2]", + "207:3": "minecraft:beetroots[age=3]", + "208:0": "minecraft:grass_path", + "210:0": "minecraft:repeating_command_block[conditional=false,facing=down]", + "210:1": "minecraft:repeating_command_block[conditional=false,facing=up]", + "210:2": "minecraft:repeating_command_block[conditional=false,facing=north]", + "210:3": "minecraft:repeating_command_block[conditional=false,facing=south]", + "210:4": "minecraft:repeating_command_block[conditional=false,facing=west]", + "210:5": "minecraft:repeating_command_block[conditional=false,facing=east]", + "210:8": "minecraft:repeating_command_block[conditional=true,facing=down]", + "210:9": "minecraft:repeating_command_block[conditional=true,facing=up]", + "210:10": "minecraft:repeating_command_block[conditional=true,facing=north]", + "210:11": "minecraft:repeating_command_block[conditional=true,facing=south]", + "210:12": "minecraft:repeating_command_block[conditional=true,facing=west]", + "210:13": "minecraft:repeating_command_block[conditional=true,facing=east]", + "211:0": "minecraft:chain_command_block[conditional=false,facing=down]", + "211:1": "minecraft:chain_command_block[conditional=false,facing=up]", + "211:2": "minecraft:chain_command_block[conditional=false,facing=north]", + "211:3": "minecraft:chain_command_block[conditional=false,facing=south]", + "211:4": "minecraft:chain_command_block[conditional=false,facing=west]", + "211:5": "minecraft:chain_command_block[conditional=false,facing=east]", + "211:8": "minecraft:chain_command_block[conditional=true,facing=down]", + "211:9": "minecraft:chain_command_block[conditional=true,facing=up]", + "211:10": "minecraft:chain_command_block[conditional=true,facing=north]", + "211:11": "minecraft:chain_command_block[conditional=true,facing=south]", + "211:12": "minecraft:chain_command_block[conditional=true,facing=west]", + "211:13": "minecraft:chain_command_block[conditional=true,facing=east]", + "212:0": "minecraft:frosted_ice[age=0]", + "212:1": "minecraft:frosted_ice[age=1]", + "212:2": "minecraft:frosted_ice[age=2]", + "212:3": "minecraft:frosted_ice[age=3]", + "213:0": "minecraft:magma_block", + "214:0": "minecraft:nether_wart_block", + "215:0": "minecraft:red_nether_bricks", + "216:0": "minecraft:bone_block[axis=y]", + "216:4": "minecraft:bone_block[axis=x]", + "216:8": "minecraft:bone_block[axis=z]", + "218:0": "minecraft:observer[powered=false,facing=down]", + "218:1": "minecraft:observer[powered=false,facing=up]", + "218:2": "minecraft:observer[powered=false,facing=north]", + "218:3": "minecraft:observer[powered=false,facing=south]", + "218:4": "minecraft:observer[powered=false,facing=west]", + "218:5": "minecraft:observer[powered=false,facing=east]", + "218:8": "minecraft:observer[powered=true,facing=down]", + "218:9": "minecraft:observer[powered=true,facing=up]", + "218:10": "minecraft:observer[powered=true,facing=north]", + "218:11": "minecraft:observer[powered=true,facing=south]", + "218:12": "minecraft:observer[powered=true,facing=west]", + "218:13": "minecraft:observer[powered=true,facing=east]", + "235:0": "minecraft:white_glazed_terracotta[facing=south]", + "235:1": "minecraft:white_glazed_terracotta[facing=west]", + "235:2": "minecraft:white_glazed_terracotta[facing=north]", + "235:3": "minecraft:white_glazed_terracotta[facing=east]", + "236:0": "minecraft:orange_glazed_terracotta[facing=south]", + "236:1": "minecraft:orange_glazed_terracotta[facing=west]", + "236:2": "minecraft:orange_glazed_terracotta[facing=north]", + "236:3": "minecraft:orange_glazed_terracotta[facing=east]", + "237:0": "minecraft:magenta_glazed_terracotta[facing=south]", + "237:1": "minecraft:magenta_glazed_terracotta[facing=west]", + "237:2": "minecraft:magenta_glazed_terracotta[facing=north]", + "237:3": "minecraft:magenta_glazed_terracotta[facing=east]", + "238:0": "minecraft:light_blue_glazed_terracotta[facing=south]", + "238:1": "minecraft:light_blue_glazed_terracotta[facing=west]", + "238:2": "minecraft:light_blue_glazed_terracotta[facing=north]", + "238:3": "minecraft:light_blue_glazed_terracotta[facing=east]", + "239:0": "minecraft:yellow_glazed_terracotta[facing=south]", + "239:1": "minecraft:yellow_glazed_terracotta[facing=west]", + "239:2": "minecraft:yellow_glazed_terracotta[facing=north]", + "239:3": "minecraft:yellow_glazed_terracotta[facing=east]", + "240:0": "minecraft:lime_glazed_terracotta[facing=south]", + "240:1": "minecraft:lime_glazed_terracotta[facing=west]", + "240:2": "minecraft:lime_glazed_terracotta[facing=north]", + "240:3": "minecraft:lime_glazed_terracotta[facing=east]", + "241:0": "minecraft:pink_glazed_terracotta[facing=south]", + "241:1": "minecraft:pink_glazed_terracotta[facing=west]", + "241:2": "minecraft:pink_glazed_terracotta[facing=north]", + "241:3": "minecraft:pink_glazed_terracotta[facing=east]", + "242:0": "minecraft:gray_glazed_terracotta[facing=south]", + "242:1": "minecraft:gray_glazed_terracotta[facing=west]", + "242:2": "minecraft:gray_glazed_terracotta[facing=north]", + "242:3": "minecraft:gray_glazed_terracotta[facing=east]", + "243:0": "minecraft:light_gray_glazed_terracotta[facing=south]", + "243:1": "minecraft:light_gray_glazed_terracotta[facing=west]", + "243:2": "minecraft:light_gray_glazed_terracotta[facing=north]", + "243:3": "minecraft:light_gray_glazed_terracotta[facing=east]", + "244:0": "minecraft:cyan_glazed_terracotta[facing=south]", + "244:1": "minecraft:cyan_glazed_terracotta[facing=west]", + "244:2": "minecraft:cyan_glazed_terracotta[facing=north]", + "244:3": "minecraft:cyan_glazed_terracotta[facing=east]", + "245:0": "minecraft:purple_glazed_terracotta[facing=south]", + "245:1": "minecraft:purple_glazed_terracotta[facing=west]", + "245:2": "minecraft:purple_glazed_terracotta[facing=north]", + "245:3": "minecraft:purple_glazed_terracotta[facing=east]", + "246:0": "minecraft:blue_glazed_terracotta[facing=south]", + "246:1": "minecraft:blue_glazed_terracotta[facing=west]", + "246:2": "minecraft:blue_glazed_terracotta[facing=north]", + "246:3": "minecraft:blue_glazed_terracotta[facing=east]", + "247:0": "minecraft:brown_glazed_terracotta[facing=south]", + "247:1": "minecraft:brown_glazed_terracotta[facing=west]", + "247:2": "minecraft:brown_glazed_terracotta[facing=north]", + "247:3": "minecraft:brown_glazed_terracotta[facing=east]", + "248:0": "minecraft:green_glazed_terracotta[facing=south]", + "248:1": "minecraft:green_glazed_terracotta[facing=west]", + "248:2": "minecraft:green_glazed_terracotta[facing=north]", + "248:3": "minecraft:green_glazed_terracotta[facing=east]", + "249:0": "minecraft:red_glazed_terracotta[facing=south]", + "249:1": "minecraft:red_glazed_terracotta[facing=west]", + "249:2": "minecraft:red_glazed_terracotta[facing=north]", + "249:3": "minecraft:red_glazed_terracotta[facing=east]", + "250:0": "minecraft:black_glazed_terracotta[facing=south]", + "250:1": "minecraft:black_glazed_terracotta[facing=west]", + "250:2": "minecraft:black_glazed_terracotta[facing=north]", + "250:3": "minecraft:black_glazed_terracotta[facing=east]", + "251:0": "minecraft:white_concrete", + "251:1": "minecraft:orange_concrete", + "251:2": "minecraft:magenta_concrete", + "251:3": "minecraft:light_blue_concrete", + "251:4": "minecraft:yellow_concrete", + "251:5": "minecraft:lime_concrete", + "251:6": "minecraft:pink_concrete", + "251:7": "minecraft:gray_concrete", + "251:8": "minecraft:light_gray_concrete", + "251:9": "minecraft:cyan_concrete", + "251:10": "minecraft:purple_concrete", + "251:11": "minecraft:blue_concrete", + "251:12": "minecraft:brown_concrete", + "251:13": "minecraft:green_concrete", + "251:14": "minecraft:red_concrete", + "251:15": "minecraft:black_concrete", + "252:0": "minecraft:white_concrete_powder", + "252:1": "minecraft:orange_concrete_powder", + "252:2": "minecraft:magenta_concrete_powder", + "252:3": "minecraft:light_blue_concrete_powder", + "252:4": "minecraft:yellow_concrete_powder", + "252:5": "minecraft:lime_concrete_powder", + "252:6": "minecraft:pink_concrete_powder", + "252:7": "minecraft:gray_concrete_powder", + "252:8": "minecraft:light_gray_concrete_powder", + "252:9": "minecraft:cyan_concrete_powder", + "252:10": "minecraft:purple_concrete_powder", + "252:11": "minecraft:blue_concrete_powder", + "252:12": "minecraft:brown_concrete_powder", + "252:13": "minecraft:green_concrete_powder", + "252:14": "minecraft:red_concrete_powder", + "252:15": "minecraft:black_concrete_powder", + "255:0": "minecraft:structure_block[mode=save]", + "255:1": "minecraft:structure_block[mode=load]", + "255:2": "minecraft:structure_block[mode=corner]", + "255:3": "minecraft:structure_block[mode=data]" +} \ No newline at end of file diff --git a/BlueMapCore/src/main/resources/blockProperties.json b/BlueMapCore/src/main/resources/blockProperties.json index 41d46b65..9e20ce70 100644 --- a/BlueMapCore/src/main/resources/blockProperties.json +++ b/BlueMapCore/src/main/resources/blockProperties.json @@ -1,4402 +1,4402 @@ { - "minecraft:air": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:granite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_granite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:diorite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_diorite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:andesite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_andesite": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:grass_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dirt": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:coarse_dirt": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:podzol": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cobblestone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:oak_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:spruce_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:birch_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:jungle_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:acacia_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:dark_oak_planks": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:oak_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bedrock": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:water": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lava": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sand": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_sand": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gravel": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gold_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:iron_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:coal_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:oak_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:spruce_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:birch_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:jungle_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:acacia_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:dark_oak_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_spruce_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_birch_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_jungle_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_acacia_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_dark_oak_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_oak_log": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:oak_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:spruce_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:birch_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:jungle_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:acacia_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:dark_oak_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_oak_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_spruce_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_birch_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_jungle_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_acacia_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stripped_dark_oak_wood": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:oak_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:spruce_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:birch_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:jungle_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:acacia_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:dark_oak_leaves": { - "culling": false, - "occluding": true, - "flammable": true - }, - "minecraft:sponge": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:wet_sponge": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lapis_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lapis_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dispenser": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:chiseled_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:note_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:white_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_bed": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:powered_rail": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:detector_rail": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=north,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=east,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=south,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=west,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=up,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=down,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sticky_piston[facing=north,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sticky_piston[facing=east,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sticky_piston[facing=south,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sticky_piston[facing=west,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sticky_piston[facing=up,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sticky_piston[facing=down,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cobweb": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:grass": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:fern": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dead_bush": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:seagrass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tall_seagrass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=north,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=east,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=south,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=west,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=up,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=down,extended=true]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:piston[facing=north,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston[facing=east,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston[facing=south,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston[facing=west,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston[facing=up,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston[facing=down,extended=false]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:piston_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:white_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:orange_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:magenta_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:light_blue_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:yellow_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:lime_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:pink_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:gray_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:light_gray_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:cyan_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:purple_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:blue_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:brown_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:green_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:red_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:black_wool": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:moving_piston": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dandelion": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:poppy": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:blue_orchid": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:allium": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:azure_bluet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:red_tulip": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:orange_tulip": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:white_tulip": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:pink_tulip": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:oxeye_daisy": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:cornflower": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:wither_rose": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:lily_of_the_valley": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:brown_mushroom": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_mushroom": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gold_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:iron_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:tnt": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:bookshelf": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:mossy_cobblestone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:obsidian": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:torch": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:wall_torch": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:fire": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spawner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:chest": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:redstone_wire": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diamond_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:diamond_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:crafting_table": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:wheat": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:farmland": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:furnace": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:oak_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:ladder": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:rail": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_wall_sign": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lever": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:iron_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:redstone_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:redstone_torch": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:redstone_wall_torch": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=1]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=2]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=3]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=4]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=5]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=6]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=7]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:snow[layers=8]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:ice": { - "culling": false, - "occluding": true, - "flammable": false - }, - "minecraft:snow_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cactus": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:clay": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sugar_cane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jukebox": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:oak_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:pumpkin": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:netherrack": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:soul_sand": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:glowstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_portal": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:carved_pumpkin": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:jack_o_lantern": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cake": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:repeater": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:white_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_stained_glass": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mossy_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cracked_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:chiseled_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_stone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_cobblestone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_mossy_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_cracked_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:infested_chiseled_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brown_mushroom_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_mushroom_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mushroom_stem": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:iron_bars": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:melon": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:attached_pumpkin_stem": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:attached_melon_stem": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pumpkin_stem": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:melon_stem": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:vine": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:oak_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mycelium": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lily_pad": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_brick_fence": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_wart": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:enchanting_table": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brewing_stand": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cauldron": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_portal": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_portal_frame": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dragon_egg": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:redstone_lamp": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cocoa": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:emerald_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:ender_chest": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tripwire_hook": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tripwire": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:emerald_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:spruce_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:birch_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:jungle_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:command_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:beacon": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:flower_pot": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_oak_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_spruce_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_birch_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_jungle_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_acacia_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_dark_oak_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_fern": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_dandelion": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_poppy": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_blue_orchid": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_allium": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_azure_bluet": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_red_tulip": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_orange_tulip": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_white_tulip": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_pink_tulip": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_oxeye_daisy": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_cornflower": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_lily_of_the_valley": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_wither_rose": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_red_mushroom": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_brown_mushroom": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_dead_bush": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potted_cactus": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:carrots": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:potatoes": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_button": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:skeleton_skull": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:skeleton_wall_skull": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:wither_skeleton_skull": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:wither_skeleton_wall_skull": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:zombie_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:zombie_wall_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:player_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:player_wall_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:creeper_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:creeper_wall_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dragon_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dragon_wall_head": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:anvil": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:chipped_anvil": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:damaged_anvil": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:trapped_chest": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_weighted_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:heavy_weighted_pressure_plate": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:comparator": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:daylight_detector": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:redstone_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_quartz_ore": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:hopper": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:quartz_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:chiseled_quartz_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:quartz_pillar": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:quartz_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:activator_rail": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dropper": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:white_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:orange_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:magenta_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_blue_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:yellow_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lime_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:pink_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gray_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_gray_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cyan_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purple_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:blue_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brown_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:green_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:black_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:white_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_stained_glass_pane": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dark_oak_stairs": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:slime_block": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:barrier": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:iron_trapdoor": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:prismarine_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dark_prismarine": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:prismarine_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_prismarine_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:prismarine_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:prismarine_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dark_prismarine_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sea_lantern": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:hay_block": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:white_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:orange_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:magenta_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:light_blue_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:yellow_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:lime_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:pink_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:gray_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:light_gray_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:cyan_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:purple_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:blue_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:brown_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:green_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:red_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:black_carpet": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:coal_block": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:packed_ice": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sunflower": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:lilac": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:rose_bush": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:peony": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:tall_grass": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:large_fern": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:white_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:white_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_wall_banner": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:chiseled_red_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_red_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_sandstone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:oak_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:oak_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:oak_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:oak_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:spruce_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:spruce_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:spruce_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:spruce_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:spruce_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:birch_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:birch_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:birch_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:birch_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:jungle_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:jungle_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:jungle_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:jungle_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:acacia_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:acacia_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:acacia_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:acacia_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:dark_oak_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dark_oak_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dark_oak_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dark_oak_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:stone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:stone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_stone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:petrified_oak_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cobblestone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:stone_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:quartz_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cut_red_sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purpur_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_stone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_quartz": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_red_sandstone": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:spruce_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:birch_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:jungle_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:acacia_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dark_oak_fence_gate": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:spruce_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:birch_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:jungle_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:acacia_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:dark_oak_fence": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:spruce_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:birch_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:jungle_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:acacia_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dark_oak_door": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_rod": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:chorus_plant": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:chorus_flower": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purpur_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purpur_pillar": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purpur_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:beetroots": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:grass_path": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_gateway": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:repeating_command_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:chain_command_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:frosted_ice": { - "culling": false, - "occluding": true, - "flammable": false - }, - "minecraft:magma_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:nether_wart_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_nether_bricks": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:bone_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:structure_void": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:observer": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:white_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:orange_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:magenta_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_blue_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:yellow_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lime_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:pink_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:gray_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:light_gray_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cyan_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:purple_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brown_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:green_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:black_shulker_box": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:white_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:orange_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:magenta_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_blue_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:yellow_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lime_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:pink_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gray_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_gray_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cyan_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purple_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:blue_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brown_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:green_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:black_glazed_terracotta": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:white_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:orange_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:magenta_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_blue_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:yellow_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lime_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:pink_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gray_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_gray_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cyan_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purple_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:blue_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brown_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:green_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:black_concrete": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:white_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:orange_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:magenta_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_blue_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:yellow_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:lime_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:pink_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:gray_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:light_gray_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cyan_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:purple_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:blue_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brown_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:green_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:black_concrete_powder": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:kelp": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:kelp_plant": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dried_kelp_block": { - "culling": true, - "occluding": true, - "flammable": true - }, - "minecraft:turtle_egg": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_tube_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dead_brain_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dead_bubble_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dead_fire_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dead_horn_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:tube_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brain_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:bubble_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:fire_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:horn_coral_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:dead_tube_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_brain_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_bubble_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_fire_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_horn_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tube_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brain_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bubble_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:fire_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:horn_coral": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_tube_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_brain_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_bubble_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_fire_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_horn_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tube_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brain_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bubble_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:fire_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:horn_coral_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_tube_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_brain_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_bubble_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_fire_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:dead_horn_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:tube_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:brain_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bubble_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:fire_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:horn_coral_wall_fan": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sea_pickle": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:blue_ice": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:conduit": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bamboo_sapling": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bamboo": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:potted_bamboo": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:void_air": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:cave_air": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bubble_column": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_red_sandstone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_diorite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_sandstone_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_quartz_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_andesite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_stairs": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_granite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mossy_stone_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_diorite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:mossy_cobblestone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:end_stone_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_sandstone_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smooth_quartz_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:granite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:andesite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:red_nether_brick_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:polished_andesite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=true,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=false,type=top]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=true,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=false,type=bottom]": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=true,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:diorite_slab[waterlogged=false,type=double]": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:prismarine_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_sandstone_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:mossy_stone_brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:granite_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:stone_brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:nether_brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:andesite_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:red_nether_brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sandstone_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:end_stone_brick_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:diorite_wall": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:scaffolding": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:loom": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:barrel": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:smoker": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:blast_furnace": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:cartography_table": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:fletching_table": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:grindstone": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lectern": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:smithing_table": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:stonecutter": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:bell": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:lantern": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:campfire": { - "culling": false, - "occluding": false, - "flammable": false - }, - "minecraft:sweet_berry_bush": { - "culling": false, - "occluding": false, - "flammable": true - }, - "minecraft:structure_block": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:jigsaw": { - "culling": true, - "occluding": true, - "flammable": false - }, - "minecraft:composter": { - "culling": false, - "occluding": false, - "flammable": true - } -} + "minecraft:air": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:granite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_granite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:diorite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_diorite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:andesite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_andesite": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:grass_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dirt": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:coarse_dirt": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:podzol": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cobblestone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:oak_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:spruce_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:birch_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:jungle_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:acacia_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:dark_oak_planks": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:oak_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bedrock": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:water": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lava": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sand": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_sand": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gravel": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gold_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:iron_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:coal_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:oak_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:spruce_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:birch_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:jungle_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:acacia_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:dark_oak_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_spruce_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_birch_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_jungle_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_acacia_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_dark_oak_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_oak_log": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:oak_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:spruce_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:birch_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:jungle_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:acacia_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:dark_oak_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_oak_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_spruce_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_birch_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_jungle_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_acacia_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stripped_dark_oak_wood": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:oak_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:spruce_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:birch_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:jungle_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:acacia_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:dark_oak_leaves": { + "culling": false, + "occluding": true, + "flammable": true + }, + "minecraft:sponge": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:wet_sponge": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lapis_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lapis_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dispenser": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:chiseled_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:note_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:white_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_bed": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:powered_rail": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:detector_rail": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=north,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=east,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=south,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=west,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=up,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=down,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sticky_piston[facing=north,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sticky_piston[facing=east,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sticky_piston[facing=south,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sticky_piston[facing=west,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sticky_piston[facing=up,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sticky_piston[facing=down,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cobweb": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:grass": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:fern": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dead_bush": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:seagrass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tall_seagrass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=north,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=east,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=south,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=west,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=up,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=down,extended=true]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:piston[facing=north,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston[facing=east,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston[facing=south,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston[facing=west,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston[facing=up,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston[facing=down,extended=false]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:piston_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:white_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:orange_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:magenta_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:light_blue_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:yellow_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:lime_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:pink_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:gray_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:light_gray_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:cyan_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:purple_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:blue_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:brown_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:green_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:red_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:black_wool": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:moving_piston": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dandelion": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:poppy": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:blue_orchid": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:allium": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:azure_bluet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:red_tulip": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:orange_tulip": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:white_tulip": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:pink_tulip": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:oxeye_daisy": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:cornflower": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:wither_rose": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:lily_of_the_valley": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:brown_mushroom": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_mushroom": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gold_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:iron_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:tnt": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:bookshelf": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:mossy_cobblestone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:obsidian": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:torch": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:wall_torch": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:fire": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spawner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:chest": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:redstone_wire": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diamond_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:diamond_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:crafting_table": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:wheat": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:farmland": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:furnace": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:oak_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:ladder": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:rail": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_wall_sign": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lever": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:iron_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:redstone_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:redstone_torch": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:redstone_wall_torch": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=1]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=2]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=3]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=4]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=5]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=6]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=7]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:snow[layers=8]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:ice": { + "culling": false, + "occluding": true, + "flammable": false + }, + "minecraft:snow_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cactus": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:clay": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sugar_cane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jukebox": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:oak_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:pumpkin": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:netherrack": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:soul_sand": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:glowstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_portal": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:carved_pumpkin": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:jack_o_lantern": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cake": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:repeater": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:white_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_stained_glass": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mossy_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cracked_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:chiseled_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_stone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_cobblestone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_mossy_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_cracked_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:infested_chiseled_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brown_mushroom_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_mushroom_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mushroom_stem": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:iron_bars": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:melon": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:attached_pumpkin_stem": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:attached_melon_stem": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pumpkin_stem": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:melon_stem": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:vine": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:oak_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mycelium": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lily_pad": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_brick_fence": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_wart": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:enchanting_table": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brewing_stand": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cauldron": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_portal": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_portal_frame": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dragon_egg": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:redstone_lamp": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cocoa": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:emerald_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:ender_chest": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tripwire_hook": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tripwire": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:emerald_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:spruce_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:birch_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:jungle_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:command_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:beacon": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:flower_pot": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_oak_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_spruce_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_birch_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_jungle_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_acacia_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_dark_oak_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_fern": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_dandelion": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_poppy": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_blue_orchid": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_allium": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_azure_bluet": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_red_tulip": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_orange_tulip": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_white_tulip": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_pink_tulip": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_oxeye_daisy": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_cornflower": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_lily_of_the_valley": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_wither_rose": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_red_mushroom": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_brown_mushroom": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_dead_bush": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potted_cactus": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:carrots": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:potatoes": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_button": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:skeleton_skull": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:skeleton_wall_skull": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:wither_skeleton_skull": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:wither_skeleton_wall_skull": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:zombie_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:zombie_wall_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:player_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:player_wall_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:creeper_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:creeper_wall_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dragon_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dragon_wall_head": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:anvil": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:chipped_anvil": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:damaged_anvil": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:trapped_chest": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_weighted_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:heavy_weighted_pressure_plate": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:comparator": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:daylight_detector": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:redstone_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_quartz_ore": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:hopper": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:quartz_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:chiseled_quartz_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:quartz_pillar": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:quartz_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:activator_rail": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dropper": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:white_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:orange_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:magenta_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_blue_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:yellow_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lime_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:pink_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gray_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_gray_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cyan_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purple_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:blue_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brown_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:green_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:black_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:white_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_stained_glass_pane": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dark_oak_stairs": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:slime_block": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:barrier": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:iron_trapdoor": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:prismarine_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dark_prismarine": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:prismarine_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_prismarine_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:prismarine_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:prismarine_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dark_prismarine_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sea_lantern": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:hay_block": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:white_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:orange_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:magenta_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:light_blue_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:yellow_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:lime_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:pink_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:gray_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:light_gray_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:cyan_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:purple_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:blue_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:brown_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:green_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:red_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:black_carpet": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:coal_block": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:packed_ice": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sunflower": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:lilac": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:rose_bush": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:peony": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:tall_grass": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:large_fern": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:white_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:white_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_wall_banner": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:chiseled_red_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_red_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_sandstone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:oak_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:oak_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:oak_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:oak_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:spruce_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:spruce_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:spruce_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:spruce_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:spruce_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:birch_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:birch_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:birch_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:birch_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:jungle_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:jungle_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:jungle_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:jungle_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:acacia_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:acacia_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:acacia_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:acacia_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:dark_oak_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dark_oak_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dark_oak_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dark_oak_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:stone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:stone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_stone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:petrified_oak_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cobblestone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:stone_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:quartz_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cut_red_sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purpur_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_stone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_quartz": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_red_sandstone": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:spruce_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:birch_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:jungle_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:acacia_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dark_oak_fence_gate": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:spruce_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:birch_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:jungle_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:acacia_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:dark_oak_fence": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:spruce_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:birch_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:jungle_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:acacia_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dark_oak_door": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_rod": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:chorus_plant": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:chorus_flower": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purpur_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purpur_pillar": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purpur_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:beetroots": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:grass_path": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_gateway": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:repeating_command_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:chain_command_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:frosted_ice": { + "culling": false, + "occluding": true, + "flammable": false + }, + "minecraft:magma_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:nether_wart_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_nether_bricks": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:bone_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:structure_void": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:observer": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:white_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:orange_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:magenta_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_blue_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:yellow_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lime_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:pink_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:gray_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:light_gray_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cyan_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:purple_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brown_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:green_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:black_shulker_box": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:white_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:orange_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:magenta_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_blue_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:yellow_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lime_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:pink_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gray_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_gray_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cyan_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purple_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:blue_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brown_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:green_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:black_glazed_terracotta": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:white_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:orange_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:magenta_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_blue_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:yellow_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lime_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:pink_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gray_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_gray_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cyan_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purple_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:blue_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brown_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:green_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:black_concrete": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:white_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:orange_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:magenta_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_blue_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:yellow_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:lime_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:pink_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:gray_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:light_gray_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cyan_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:purple_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:blue_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brown_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:green_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:black_concrete_powder": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:kelp": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:kelp_plant": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dried_kelp_block": { + "culling": true, + "occluding": true, + "flammable": true + }, + "minecraft:turtle_egg": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_tube_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dead_brain_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dead_bubble_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dead_fire_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dead_horn_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:tube_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brain_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:bubble_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:fire_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:horn_coral_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:dead_tube_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_brain_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_bubble_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_fire_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_horn_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tube_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brain_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bubble_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:fire_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:horn_coral": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_tube_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_brain_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_bubble_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_fire_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_horn_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tube_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brain_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bubble_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:fire_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:horn_coral_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_tube_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_brain_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_bubble_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_fire_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:dead_horn_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:tube_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:brain_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bubble_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:fire_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:horn_coral_wall_fan": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sea_pickle": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:blue_ice": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:conduit": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bamboo_sapling": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bamboo": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:potted_bamboo": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:void_air": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:cave_air": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bubble_column": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_red_sandstone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_diorite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_sandstone_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_quartz_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_andesite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_stairs": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_granite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_red_sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mossy_stone_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_diorite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:mossy_cobblestone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:end_stone_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_sandstone_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smooth_quartz_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:granite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:andesite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:red_nether_brick_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:polished_andesite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=true,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=false,type=top]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=true,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=false,type=bottom]": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=true,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:diorite_slab[waterlogged=false,type=double]": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:prismarine_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_sandstone_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:mossy_stone_brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:granite_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:stone_brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:nether_brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:andesite_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:red_nether_brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sandstone_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:end_stone_brick_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:diorite_wall": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:scaffolding": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:loom": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:barrel": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:smoker": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:blast_furnace": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:cartography_table": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:fletching_table": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:grindstone": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lectern": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:smithing_table": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:stonecutter": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:bell": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:lantern": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:campfire": { + "culling": false, + "occluding": false, + "flammable": false + }, + "minecraft:sweet_berry_bush": { + "culling": false, + "occluding": false, + "flammable": true + }, + "minecraft:structure_block": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:jigsaw": { + "culling": true, + "occluding": true, + "flammable": false + }, + "minecraft:composter": { + "culling": false, + "occluding": false, + "flammable": true + } +} \ No newline at end of file