diff --git a/Obsidian.API/Crafting/Builders/Interfaces/IHasNotification.cs b/Obsidian.API/Crafting/Builders/Interfaces/IHasNotification.cs deleted file mode 100644 index 9c61d4e55..000000000 --- a/Obsidian.API/Crafting/Builders/Interfaces/IHasNotification.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace Obsidian.API.Crafting.Builders.Interfaces; -public interface IHasNotification -{ - public IPatternedRecipe HasNotification(bool show = true); -} diff --git a/Obsidian.API/Crafting/Builders/Interfaces/IPatternedRecipe.cs b/Obsidian.API/Crafting/Builders/Interfaces/IPatternedRecipe.cs index 660053936..c27d93402 100644 --- a/Obsidian.API/Crafting/Builders/Interfaces/IPatternedRecipe.cs +++ b/Obsidian.API/Crafting/Builders/Interfaces/IPatternedRecipe.cs @@ -1,5 +1,5 @@ namespace Obsidian.API.Crafting.Builders.Interfaces; -public interface IPatternedRecipe : IHasNotification +public interface IPatternedRecipe { public IPatternedRecipe WithKey(char key, params ItemStack[] items); diff --git a/Obsidian.API/Crafting/Builders/ShapedRecipeBuilder.cs b/Obsidian.API/Crafting/Builders/ShapedRecipeBuilder.cs index 90af1cd7f..448b60ba7 100644 --- a/Obsidian.API/Crafting/Builders/ShapedRecipeBuilder.cs +++ b/Obsidian.API/Crafting/Builders/ShapedRecipeBuilder.cs @@ -11,8 +11,6 @@ public sealed class ShapedRecipeBuilder : BaseRecipeBuilder, IPatt private readonly Dictionary key = []; - private bool showNotification; - private ShapedRecipeBuilder(CraftingBookCategory category) => this.category = category; public static IPatternedRecipe Create(CraftingBookCategory category) => new ShapedRecipeBuilder(category); @@ -41,13 +39,6 @@ public IGroupedRecipe WithPattern(params string[] pattern) return this; } - public IPatternedRecipe HasNotification(bool show = true) - { - this.showNotification = show; - - return this; - } - public override ShapedRecipe Build() { if (this.pattern.Count <= 0) @@ -65,7 +56,6 @@ public override ShapedRecipe Build() Pattern = new ReadOnlyCollection(new List(this.pattern)), Key = new ReadOnlyDictionary(new Dictionary(this.key)), Category = this.category, - ShowNotification = this.showNotification, }; } diff --git a/Obsidian.API/Crafting/ShapedRecipe.cs b/Obsidian.API/Crafting/ShapedRecipe.cs index dc4965d52..62bffa9a3 100644 --- a/Obsidian.API/Crafting/ShapedRecipe.cs +++ b/Obsidian.API/Crafting/ShapedRecipe.cs @@ -16,7 +16,5 @@ public sealed class ShapedRecipe : IRecipeWithResult public required IReadOnlyDictionary Key { get; init; } - public required bool ShowNotification { get; init; } - internal ShapedRecipe() { } } diff --git a/Obsidian.API/Utilities/Extensions.StringManipulation.cs b/Obsidian.API/Utilities/Extensions.StringManipulation.cs index c5dcafbe6..d41915e5d 100644 --- a/Obsidian.API/Utilities/Extensions.StringManipulation.cs +++ b/Obsidian.API/Utilities/Extensions.StringManipulation.cs @@ -1,4 +1,5 @@ using System.ComponentModel; +using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Reflection; using System.Runtime.CompilerServices; @@ -71,10 +72,10 @@ public static string ToPascalCase(this string snakeCase) public static bool IsEmpty(this string value) => value.Length == 0; [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static bool IsNullOrEmpty(this string value) => string.IsNullOrEmpty(value); + public static bool IsNullOrEmpty([AllowNull]this string value) => string.IsNullOrEmpty(value); [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static bool IsNullOrWhitespace(this string value) => string.IsNullOrWhiteSpace(value); + public static bool IsNullOrWhitespace([AllowNull]this string value) => string.IsNullOrWhiteSpace(value); public static string Capitalize(this string value) { diff --git a/Obsidian.API/_Enums/BlockInteraction.cs b/Obsidian.API/_Enums/BlockInteraction.cs new file mode 100644 index 000000000..59a62e5d3 --- /dev/null +++ b/Obsidian.API/_Enums/BlockInteraction.cs @@ -0,0 +1,11 @@ +namespace Obsidian.API; +public enum BlockInteraction +{ + Keep, + + Destroy, + + DestroyWithDecay, + + TriggerBlock +} diff --git a/Obsidian.API/_Enums/EClickAction.cs b/Obsidian.API/_Enums/ClickAction.cs similarity index 98% rename from Obsidian.API/_Enums/EClickAction.cs rename to Obsidian.API/_Enums/ClickAction.cs index 1ebbbd35d..f8025069c 100644 --- a/Obsidian.API/_Enums/EClickAction.cs +++ b/Obsidian.API/_Enums/ClickAction.cs @@ -1,6 +1,6 @@ namespace Obsidian.API; -public enum EClickAction +public enum ClickAction { /// /// Opens the given URL in the default web browser. Ignored if the player has opted to disable links in chat; diff --git a/Obsidian.API/_Enums/EntityType.cs b/Obsidian.API/_Enums/EntityType.cs index 065b181fb..9a4a2220c 100644 --- a/Obsidian.API/_Enums/EntityType.cs +++ b/Obsidian.API/_Enums/EntityType.cs @@ -12,6 +12,7 @@ public enum EntityType : int Blaze, BlockDisplay, Boat, + Breeze, Camel, Cat, CaveSpider, @@ -114,6 +115,7 @@ public enum EntityType : int Vindicator, WanderingTrader, Warden, + WindCharge, Witch, Wither, WitherSkeleton, diff --git a/Obsidian.API/_Enums/EHoverAction.cs b/Obsidian.API/_Enums/HoverAction.cs similarity index 93% rename from Obsidian.API/_Enums/EHoverAction.cs rename to Obsidian.API/_Enums/HoverAction.cs index e7eb35357..11eeefc14 100644 --- a/Obsidian.API/_Enums/EHoverAction.cs +++ b/Obsidian.API/_Enums/HoverAction.cs @@ -1,6 +1,6 @@ namespace Obsidian.API; -public enum EHoverAction +public enum HoverAction { /// /// Shows a raw JSON text component. diff --git a/Obsidian.API/_Enums/ParticleType.cs b/Obsidian.API/_Enums/ParticleType.cs index 3aed2b3e4..7c13d028d 100644 --- a/Obsidian.API/_Enums/ParticleType.cs +++ b/Obsidian.API/_Enums/ParticleType.cs @@ -26,75 +26,81 @@ public enum ParticleType : int EntityEffect = 21, ExplosionEmitter = 22, Explosion = 23, - SonicBoom = 24, - FallingDust = 25, - Firework = 26, - Fishing = 27, - Flame = 28, - CherryLeaves = 29, - SculkSoul = 30, - SculkCharge = 31, - SculkChargePop = 32, - SoulFireFlame = 33, - Soul = 34, - Flash = 35, - HappyVillager = 36, - Composter = 37, - Heart = 38, - InstantEffect = 39, - Item = 40, - Vibration = 41, - ItemSlime = 42, - ItemSnowball = 43, - LargeSmoke = 44, - Lava = 45, - Mycelium = 46, - Note = 47, - Poof = 48, - Portal = 49, - Rain = 50, - Smoke = 51, - Sneeze = 52, - Spit = 53, - SquidInk = 54, - SweepAttack = 55, - TotemOfUndying = 56, - Underwater = 57, - Splash = 58, - Witch = 59, - BubblePop = 60, - CurrentDown = 61, - BubbleColumnUp = 62, - Nautilus = 63, - Dolphin = 64, - CampfireCosySmoke = 65, - CampfireSignalSmoke = 66, - DrippingHoney = 67, - FallingHoney = 68, - LandingHoney = 69, - FallingNectar = 70, - FallingSporeBlossom = 71, - Ash = 72, - CrimsonSpore = 73, - WarpedSpore = 74, - SporeBlossomAir = 75, - DrippingObsidianTear = 76, - FallingObsidianTear = 77, - LandingObsidianTear = 78, - ReversePortal = 79, - WhiteAsh = 80, - SmallFlame = 81, - Snowflake = 82, - DrippingDripstoneLava = 83, - FallingDripstoneLava = 84, - DrippingDripstoneWater = 85, - FallingDripstoneWater = 86, - GlowSquidInk = 87, - Glow = 88, - WaxOn = 89, - WaxOff = 90, - ElectricSpark = 91, - Scrape = 92, - Shriek = 93, - EggCrack = 94, + Gust = 24, + GustEmitter = 25, + SonicBoom = 26, + FallingDust = 27, + Firework = 28, + Fishing = 29, + Flame = 30, + CherryLeaves = 31, + SculkSoul = 32, + SculkCharge = 33, + SculkChargePop = 34, + SoulFireFlame = 35, + Soul = 36, + Flash = 37, + HappyVillager = 38, + Composter = 39, + Heart = 40, + InstantEffect = 41, + Item = 42, + Vibration = 43, + ItemSlime = 44, + ItemSnowball = 45, + LargeSmoke = 46, + Lava = 47, + Mycelium = 48, + Note = 49, + Poof = 50, + Portal = 51, + Rain = 52, + Smoke = 53, + WhiteSmoke = 54, + Sneeze = 55, + Spit = 56, + SquidInk = 57, + SweepAttack = 58, + TotemOfUndying = 59, + Underwater = 60, + Splash = 61, + Witch = 62, + BubblePop = 63, + CurrentDown = 64, + BubbleColumnUp = 65, + Nautilus = 66, + Dolphin = 67, + CampfireCosySmoke = 68, + CampfireSignalSmoke = 69, + DrippingHoney = 70, + FallingHoney = 71, + LandingHoney = 72, + FallingNectar = 73, + FallingSporeBlossom = 74, + Ash = 75, + CrimsonSpore = 76, + WarpedSpore = 77, + SporeBlossomAir = 78, + DrippingObsidianTear = 79, + FallingObsidianTear = 80, + LandingObsidianTear = 81, + ReversePortal = 82, + WhiteAsh = 83, + SmallFlame = 84, + Snowflake = 85, + DrippingDripstoneLava = 86, + FallingDripstoneLava = 87, + DrippingDripstoneWater = 88, + FallingDripstoneWater = 89, + GlowSquidInk = 90, + Glow = 91, + WaxOn = 92, + WaxOff = 93, + ElectricSpark = 94, + Scrape = 95, + Shriek = 96, + EggCrack = 97, + DustPlume = 98, + GustDust = 99, + TrialSpawnerDetection = 100, } diff --git a/Obsidian.API/_Enums/ProtocolVersion.cs b/Obsidian.API/_Enums/ProtocolVersion.cs index c0f70d0ef..c72dabc93 100644 --- a/Obsidian.API/_Enums/ProtocolVersion.cs +++ b/Obsidian.API/_Enums/ProtocolVersion.cs @@ -50,5 +50,8 @@ public enum ProtocolVersion v1_20 = 763, [Description("1.20.2")] - v1_20_2 = 764 + v1_20_2 = 764, + + [Description("1.20.3")] + v1_20_3 = 765 } diff --git a/Obsidian.API/_Enums/SoundId.cs b/Obsidian.API/_Enums/SoundId.cs index ff6a0bad1..37bb164e9 100644 --- a/Obsidian.API/_Enums/SoundId.cs +++ b/Obsidian.API/_Enums/SoundId.cs @@ -79,11 +79,11 @@ public enum SoundId : int BlockBambooWoodDoorOpen = 105, BlockBambooWoodFenceGateClose = 112, BlockBambooWoodFenceGateOpen = 113, - BlockBambooWoodHangingSignBreak = 606, - BlockBambooWoodHangingSignFall = 607, - BlockBambooWoodHangingSignHit = 608, - BlockBambooWoodHangingSignPlace = 609, - BlockBambooWoodHangingSignStep = 605, + BlockBambooWoodHangingSignBreak = 635, + BlockBambooWoodHangingSignFall = 636, + BlockBambooWoodHangingSignHit = 637, + BlockBambooWoodHangingSignPlace = 638, + BlockBambooWoodHangingSignStep = 634, BlockBambooWoodPressurePlateClickOff = 110, BlockBambooWoodPressurePlateClickOn = 111, BlockBambooWoodTrapdoorClose = 106, @@ -111,576 +111,618 @@ public enum SoundId : int BlockBigDripleafHit = 145, BlockBigDripleafPlace = 146, BlockBigDripleafStep = 147, - BlockBigDripleafTiltDown = 385, - BlockBigDripleafTiltUp = 386, + BlockBigDripleafTiltDown = 414, + BlockBigDripleafTiltUp = 415, BlockBlastfurnaceFireCrackle = 163, BlockBoneBlockBreak = 155, BlockBoneBlockFall = 156, BlockBoneBlockHit = 157, BlockBoneBlockPlace = 158, BlockBoneBlockStep = 159, - BlockBrewingStandBrew = 167, - BlockBubbleColumnBubblePop = 173, - BlockBubbleColumnUpwardsAmbient = 174, - BlockBubbleColumnUpwardsInside = 175, - BlockBubbleColumnWhirlpoolAmbient = 176, - BlockBubbleColumnWhirlpoolInside = 177, - BlockCakeAddCandle = 193, - BlockCalciteBreak = 194, - BlockCalciteFall = 198, - BlockCalciteHit = 197, - BlockCalcitePlace = 196, - BlockCalciteStep = 195, - BlockCampfireCrackle = 210, - BlockCandleAmbient = 211, - BlockCandleBreak = 212, - BlockCandleExtinguish = 213, - BlockCandleFall = 214, - BlockCandleHit = 215, - BlockCandlePlace = 216, - BlockCandleStep = 217, - BlockCaveVinesBreak = 227, - BlockCaveVinesFall = 228, - BlockCaveVinesHit = 229, - BlockCaveVinesPickBerries = 232, - BlockCaveVinesPlace = 230, - BlockCaveVinesStep = 231, - BlockChainBreak = 233, - BlockChainFall = 234, - BlockChainHit = 235, - BlockChainPlace = 236, - BlockChainStep = 237, - BlockCherryLeavesBreak = 248, - BlockCherryLeavesFall = 249, - BlockCherryLeavesHit = 250, - BlockCherryLeavesPlace = 251, - BlockCherryLeavesStep = 252, - BlockCherrySaplingBreak = 243, - BlockCherrySaplingFall = 244, - BlockCherrySaplingHit = 245, - BlockCherrySaplingPlace = 246, - BlockCherrySaplingStep = 247, - BlockCherryWoodBreak = 238, - BlockCherryWoodFall = 239, - BlockCherryWoodHit = 240, - BlockCherryWoodPlace = 241, - BlockCherryWoodStep = 242, - BlockCherryWoodButtonClickOff = 262, - BlockCherryWoodButtonClickOn = 263, - BlockCherryWoodDoorClose = 258, - BlockCherryWoodDoorOpen = 259, - BlockCherryWoodFenceGateClose = 266, - BlockCherryWoodFenceGateOpen = 267, - BlockCherryWoodHangingSignBreak = 254, - BlockCherryWoodHangingSignFall = 255, - BlockCherryWoodHangingSignHit = 256, - BlockCherryWoodHangingSignPlace = 257, - BlockCherryWoodHangingSignStep = 253, - BlockCherryWoodPressurePlateClickOff = 264, - BlockCherryWoodPressurePlateClickOn = 265, - BlockCherryWoodTrapdoorClose = 260, - BlockCherryWoodTrapdoorOpen = 261, - BlockChestClose = 268, - BlockChestLocked = 269, - BlockChestOpen = 270, - BlockChiseledBookshelfBreak = 276, - BlockChiseledBookshelfFall = 277, - BlockChiseledBookshelfHit = 278, - BlockChiseledBookshelfInsert = 279, - BlockChiseledBookshelfInsertEnchanted = 280, - BlockChiseledBookshelfPickup = 282, - BlockChiseledBookshelfPickupEnchanted = 283, - BlockChiseledBookshelfPlace = 284, - BlockChiseledBookshelfStep = 281, - BlockChorusFlowerDeath = 285, - BlockChorusFlowerGrow = 286, - BlockComparatorClick = 292, - BlockComposterEmpty = 293, - BlockComposterFill = 294, - BlockComposterFillSuccess = 295, - BlockComposterReady = 296, - BlockConduitActivate = 297, - BlockConduitAmbient = 298, - BlockConduitAmbientShort = 299, - BlockConduitAttackTarget = 300, - BlockConduitDeactivate = 301, - BlockCopperBreak = 302, - BlockCopperFall = 306, - BlockCopperHit = 305, - BlockCopperPlace = 304, - BlockCopperStep = 303, - BlockCoralBlockBreak = 307, - BlockCoralBlockFall = 308, - BlockCoralBlockHit = 309, - BlockCoralBlockPlace = 310, - BlockCoralBlockStep = 311, - BlockCropBreak = 320, - BlockDecoratedPotBreak = 330, - BlockDecoratedPotFall = 331, - BlockDecoratedPotHit = 332, - BlockDecoratedPotPlace = 334, - BlockDecoratedPotShatter = 335, - BlockDecoratedPotStep = 333, - BlockDeepslateBreak = 341, - BlockDeepslateFall = 342, - BlockDeepslateHit = 343, - BlockDeepslatePlace = 344, - BlockDeepslateStep = 345, - BlockDeepslateBricksBreak = 336, - BlockDeepslateBricksFall = 337, - BlockDeepslateBricksHit = 338, - BlockDeepslateBricksPlace = 339, - BlockDeepslateBricksStep = 340, - BlockDeepslateTilesBreak = 346, - BlockDeepslateTilesFall = 347, - BlockDeepslateTilesHit = 348, - BlockDeepslateTilesPlace = 349, - BlockDeepslateTilesStep = 350, - BlockDispenserDispense = 351, - BlockDispenserFail = 352, - BlockDispenserLaunch = 353, - BlockDripstoneBlockBreak = 370, - BlockDripstoneBlockFall = 374, - BlockDripstoneBlockHit = 373, - BlockDripstoneBlockPlace = 372, - BlockDripstoneBlockStep = 371, - BlockEnchantmentTableUse = 407, - BlockEndGatewaySpawn = 430, - BlockEndPortalSpawn = 432, - BlockEndPortalFrameFill = 431, - BlockEnderChestClose = 408, - BlockEnderChestOpen = 409, - BlockFenceGateClose = 444, - BlockFenceGateOpen = 445, - BlockFireAmbient = 455, - BlockFireExtinguish = 456, - BlockFloweringAzaleaBreak = 462, - BlockFloweringAzaleaFall = 463, - BlockFloweringAzaleaHit = 464, - BlockFloweringAzaleaPlace = 465, - BlockFloweringAzaleaStep = 466, - BlockFroglightBreak = 488, - BlockFroglightFall = 489, - BlockFroglightHit = 490, - BlockFroglightPlace = 491, - BlockFroglightStep = 492, - BlockFrogspawnBreak = 494, - BlockFrogspawnFall = 495, - BlockFrogspawnHatch = 496, - BlockFrogspawnHit = 497, - BlockFrogspawnPlace = 498, - BlockFrogspawnStep = 493, - BlockFungusBreak = 875, - BlockFungusFall = 879, - BlockFungusHit = 878, - BlockFungusPlace = 877, - BlockFungusStep = 876, - BlockFurnaceFireCrackle = 512, - BlockGildedBlackstoneBreak = 530, - BlockGildedBlackstoneFall = 531, - BlockGildedBlackstoneHit = 532, - BlockGildedBlackstonePlace = 533, - BlockGildedBlackstoneStep = 534, - BlockGlassBreak = 535, - BlockGlassFall = 536, - BlockGlassHit = 537, - BlockGlassPlace = 538, - BlockGlassStep = 539, - BlockGrassBreak = 570, - BlockGrassFall = 571, - BlockGrassHit = 572, - BlockGrassPlace = 573, - BlockGrassStep = 574, - BlockGravelBreak = 575, - BlockGravelFall = 576, - BlockGravelHit = 577, - BlockGravelPlace = 578, - BlockGravelStep = 579, - BlockGrindstoneUse = 580, - BlockGrowingPlantCrop = 581, - BlockHangingRootsBreak = 590, - BlockHangingRootsFall = 591, - BlockHangingRootsHit = 592, - BlockHangingRootsPlace = 593, - BlockHangingRootsStep = 594, - BlockHangingSignBreak = 596, - BlockHangingSignFall = 597, - BlockHangingSignHit = 598, - BlockHangingSignPlace = 599, - BlockHangingSignStep = 595, - BlockHoneyBlockBreak = 619, - BlockHoneyBlockFall = 620, - BlockHoneyBlockHit = 621, - BlockHoneyBlockPlace = 622, - BlockHoneyBlockSlide = 623, - BlockHoneyBlockStep = 624, - BlockIronDoorClose = 667, - BlockIronDoorOpen = 668, - BlockIronTrapdoorClose = 675, - BlockIronTrapdoorOpen = 676, - BlockLadderBreak = 684, - BlockLadderFall = 685, - BlockLadderHit = 686, - BlockLadderPlace = 687, - BlockLadderStep = 688, - BlockLanternBreak = 689, - BlockLanternFall = 690, - BlockLanternHit = 691, - BlockLanternPlace = 692, - BlockLanternStep = 693, - BlockLargeAmethystBudBreak = 694, - BlockLargeAmethystBudPlace = 695, - BlockLavaAmbient = 696, - BlockLavaExtinguish = 697, - BlockLavaPop = 698, - BlockLeverClick = 701, - BlockLilyPadPlace = 1369, - BlockLodestoneBreak = 715, - BlockLodestoneFall = 719, - BlockLodestoneHit = 718, - BlockLodestonePlace = 717, - BlockLodestoneStep = 716, - BlockMangroveRootsBreak = 727, - BlockMangroveRootsFall = 728, - BlockMangroveRootsHit = 729, - BlockMangroveRootsPlace = 730, - BlockMangroveRootsStep = 731, - BlockMediumAmethystBudBreak = 732, - BlockMediumAmethystBudPlace = 733, - BlockMetalBreak = 734, - BlockMetalFall = 735, - BlockMetalHit = 736, - BlockMetalPlace = 737, - BlockMetalStep = 740, - BlockMetalPressurePlateClickOff = 738, - BlockMetalPressurePlateClickOn = 739, - BlockMossBreak = 759, - BlockMossFall = 760, - BlockMossHit = 761, - BlockMossPlace = 762, - BlockMossStep = 763, - BlockMossCarpetBreak = 749, - BlockMossCarpetFall = 750, - BlockMossCarpetHit = 751, - BlockMossCarpetPlace = 752, - BlockMossCarpetStep = 753, - BlockMudBreak = 764, - BlockMudFall = 765, - BlockMudHit = 766, - BlockMudPlace = 767, - BlockMudStep = 768, - BlockMudBricksBreak = 769, - BlockMudBricksFall = 770, - BlockMudBricksHit = 771, - BlockMudBricksPlace = 772, - BlockMudBricksStep = 773, - BlockMuddyMangroveRootsBreak = 774, - BlockMuddyMangroveRootsFall = 775, - BlockMuddyMangroveRootsHit = 776, - BlockMuddyMangroveRootsPlace = 777, - BlockMuddyMangroveRootsStep = 778, - BlockNetherBricksBreak = 832, - BlockNetherBricksFall = 836, - BlockNetherBricksHit = 835, - BlockNetherBricksPlace = 834, - BlockNetherBricksStep = 833, - BlockNetherGoldOreBreak = 1071, - BlockNetherGoldOreFall = 1072, - BlockNetherGoldOreHit = 1073, - BlockNetherGoldOrePlace = 1074, - BlockNetherGoldOreStep = 1075, - BlockNetherOreBreak = 1076, - BlockNetherOreFall = 1077, - BlockNetherOreHit = 1078, - BlockNetherOrePlace = 1079, - BlockNetherOreStep = 1080, - BlockNetherSproutsBreak = 870, - BlockNetherSproutsFall = 874, - BlockNetherSproutsHit = 873, - BlockNetherSproutsPlace = 872, - BlockNetherSproutsStep = 871, - BlockNetherWartBreak = 837, - BlockNetherWoodBreak = 839, - BlockNetherWoodFall = 840, - BlockNetherWoodHit = 841, - BlockNetherWoodPlace = 842, - BlockNetherWoodStep = 843, - BlockNetherWoodButtonClickOff = 848, - BlockNetherWoodButtonClickOn = 849, - BlockNetherWoodDoorClose = 844, - BlockNetherWoodDoorOpen = 845, - BlockNetherWoodFenceGateClose = 852, - BlockNetherWoodFenceGateOpen = 853, - BlockNetherWoodHangingSignBreak = 601, - BlockNetherWoodHangingSignFall = 602, - BlockNetherWoodHangingSignHit = 603, - BlockNetherWoodHangingSignPlace = 604, - BlockNetherWoodHangingSignStep = 600, - BlockNetherWoodPressurePlateClickOff = 850, - BlockNetherWoodPressurePlateClickOn = 851, - BlockNetherWoodTrapdoorClose = 846, - BlockNetherWoodTrapdoorOpen = 847, - BlockNetheriteBlockBreak = 890, - BlockNetheriteBlockFall = 894, - BlockNetheriteBlockHit = 893, - BlockNetheriteBlockPlace = 892, - BlockNetheriteBlockStep = 891, - BlockNetherrackBreak = 895, - BlockNetherrackFall = 899, - BlockNetherrackHit = 898, - BlockNetherrackPlace = 897, - BlockNetherrackStep = 896, - BlockNoteBlockBanjo = 915, - BlockNoteBlockBasedrum = 900, - BlockNoteBlockBass = 901, - BlockNoteBlockBell = 902, - BlockNoteBlockBit = 914, - BlockNoteBlockChime = 903, - BlockNoteBlockCowBell = 912, - BlockNoteBlockDidgeridoo = 913, - BlockNoteBlockFlute = 904, - BlockNoteBlockGuitar = 905, - BlockNoteBlockHarp = 906, - BlockNoteBlockHat = 907, - BlockNoteBlockImitateCreeper = 918, - BlockNoteBlockImitateEnderDragon = 919, - BlockNoteBlockImitatePiglin = 921, - BlockNoteBlockImitateSkeleton = 917, - BlockNoteBlockImitateWitherSkeleton = 920, - BlockNoteBlockImitateZombie = 916, - BlockNoteBlockIronXylophone = 911, - BlockNoteBlockPling = 908, - BlockNoteBlockSnare = 909, - BlockNoteBlockXylophone = 910, - BlockNyliumBreak = 865, - BlockNyliumFall = 869, - BlockNyliumHit = 868, - BlockNyliumPlace = 867, - BlockNyliumStep = 866, - BlockPackedMudBreak = 855, - BlockPackedMudFall = 856, - BlockPackedMudHit = 857, - BlockPackedMudPlace = 858, - BlockPackedMudStep = 859, - BlockPinkPetalsBreak = 754, - BlockPinkPetalsFall = 755, - BlockPinkPetalsHit = 756, - BlockPinkPetalsPlace = 757, - BlockPinkPetalsStep = 758, - BlockPistonContract = 1008, - BlockPistonExtend = 1009, - BlockPointedDripstoneBreak = 375, - BlockPointedDripstoneDripLava = 381, - BlockPointedDripstoneDripLavaIntoCauldron = 383, - BlockPointedDripstoneDripWater = 382, - BlockPointedDripstoneDripWaterIntoCauldron = 384, - BlockPointedDripstoneFall = 379, - BlockPointedDripstoneHit = 378, - BlockPointedDripstoneLand = 380, - BlockPointedDripstonePlace = 377, - BlockPointedDripstoneStep = 376, - BlockPolishedDeepslateBreak = 1036, - BlockPolishedDeepslateFall = 1037, - BlockPolishedDeepslateHit = 1038, - BlockPolishedDeepslatePlace = 1039, - BlockPolishedDeepslateStep = 1040, - BlockPortalAmbient = 1041, - BlockPortalTravel = 1042, - BlockPortalTrigger = 1043, - BlockPowderSnowBreak = 1044, - BlockPowderSnowFall = 1045, - BlockPowderSnowHit = 1046, - BlockPowderSnowPlace = 1047, - BlockPowderSnowStep = 1048, - BlockPumpkinCarve = 1056, - BlockRedstoneTorchBurnout = 1081, - BlockRespawnAnchorAmbient = 1082, - BlockRespawnAnchorCharge = 1083, - BlockRespawnAnchorDeplete = 1084, - BlockRespawnAnchorSetSpawn = 1085, - BlockRootedDirtBreak = 1086, - BlockRootedDirtFall = 1087, - BlockRootedDirtHit = 1088, - BlockRootedDirtPlace = 1089, - BlockRootedDirtStep = 1090, - BlockRootsBreak = 507, - BlockRootsFall = 511, - BlockRootsHit = 510, - BlockRootsPlace = 509, - BlockRootsStep = 508, - BlockSandBreak = 1095, - BlockSandFall = 1096, - BlockSandHit = 1097, - BlockSandPlace = 1098, - BlockSandStep = 1099, - BlockScaffoldingBreak = 1100, - BlockScaffoldingFall = 1101, - BlockScaffoldingHit = 1102, - BlockScaffoldingPlace = 1103, - BlockScaffoldingStep = 1104, - BlockSculkBreak = 1107, - BlockSculkCharge = 1106, - BlockSculkFall = 1108, - BlockSculkHit = 1109, - BlockSculkPlace = 1110, - BlockSculkSpread = 1105, - BlockSculkStep = 1111, - BlockSculkCatalystBloom = 1112, - BlockSculkCatalystBreak = 1113, - BlockSculkCatalystFall = 1114, - BlockSculkCatalystHit = 1115, - BlockSculkCatalystPlace = 1116, - BlockSculkCatalystStep = 1117, - BlockSculkSensorBreak = 1120, - BlockSculkSensorClicking = 1118, - BlockSculkSensorClickingStop = 1119, - BlockSculkSensorFall = 1121, - BlockSculkSensorHit = 1122, - BlockSculkSensorPlace = 1123, - BlockSculkSensorStep = 1124, - BlockSculkShriekerBreak = 1125, - BlockSculkShriekerFall = 1126, - BlockSculkShriekerHit = 1127, - BlockSculkShriekerPlace = 1128, - BlockSculkShriekerShriek = 1129, - BlockSculkShriekerStep = 1130, - BlockSculkVeinBreak = 1131, - BlockSculkVeinFall = 1132, - BlockSculkVeinHit = 1133, - BlockSculkVeinPlace = 1134, - BlockSculkVeinStep = 1135, - BlockShroomlightBreak = 1143, - BlockShroomlightFall = 1147, - BlockShroomlightHit = 1146, - BlockShroomlightPlace = 1145, - BlockShroomlightStep = 1144, - BlockShulkerBoxClose = 1150, - BlockShulkerBoxOpen = 1151, - BlockSignWaxedInteractFail = 1400, - BlockSlimeBlockBreak = 1184, - BlockSlimeBlockFall = 1185, - BlockSlimeBlockHit = 1186, - BlockSlimeBlockPlace = 1187, - BlockSlimeBlockStep = 1188, - BlockSmallAmethystBudBreak = 1189, - BlockSmallAmethystBudPlace = 1190, - BlockSmallDripleafBreak = 1191, - BlockSmallDripleafFall = 1192, - BlockSmallDripleafHit = 1193, - BlockSmallDripleafPlace = 1194, - BlockSmallDripleafStep = 1195, - BlockSmithingTableUse = 1225, - BlockSmokerSmoke = 1226, - BlockSnifferEggCrack = 1240, - BlockSnifferEggHatch = 1241, - BlockSnifferEggPlop = 1239, - BlockSnowBreak = 1243, - BlockSnowFall = 1244, - BlockSnowHit = 1250, - BlockSnowPlace = 1251, - BlockSnowStep = 1252, - BlockSoulSandBreak = 1196, - BlockSoulSandFall = 1200, - BlockSoulSandHit = 1199, - BlockSoulSandPlace = 1198, - BlockSoulSandStep = 1197, - BlockSoulSoilBreak = 1201, - BlockSoulSoilFall = 1205, - BlockSoulSoilHit = 1204, - BlockSoulSoilPlace = 1203, - BlockSoulSoilStep = 1202, - BlockSpongeAbsorb = 1264, - BlockSpongeBreak = 1259, - BlockSpongeFall = 1260, - BlockSpongeHit = 1261, - BlockSpongePlace = 1262, - BlockSpongeStep = 1263, - BlockSporeBlossomBreak = 1207, - BlockSporeBlossomFall = 1208, - BlockSporeBlossomHit = 1209, - BlockSporeBlossomPlace = 1210, - BlockSporeBlossomStep = 1211, - BlockStemBreak = 860, - BlockStemFall = 864, - BlockStemHit = 863, - BlockStemPlace = 862, - BlockStemStep = 861, - BlockStoneBreak = 1271, - BlockStoneFall = 1274, - BlockStoneHit = 1275, - BlockStonePlace = 1276, - BlockStoneStep = 1279, - BlockStoneButtonClickOff = 1272, - BlockStoneButtonClickOn = 1273, - BlockStonePressurePlateClickOff = 1277, - BlockStonePressurePlateClickOn = 1278, - BlockSuspiciousGravelBreak = 483, - BlockSuspiciousGravelFall = 487, - BlockSuspiciousGravelHit = 486, - BlockSuspiciousGravelPlace = 485, - BlockSuspiciousGravelStep = 484, - BlockSuspiciousSandBreak = 478, - BlockSuspiciousSandFall = 482, - BlockSuspiciousSandHit = 481, - BlockSuspiciousSandPlace = 480, - BlockSuspiciousSandStep = 479, - BlockSweetBerryBushBreak = 1284, - BlockSweetBerryBushPickBerries = 1286, - BlockSweetBerryBushPlace = 1285, - BlockTripwireAttach = 1302, - BlockTripwireClickOff = 1303, - BlockTripwireClickOn = 1304, - BlockTripwireDetach = 1305, - BlockTuffBreak = 1310, - BlockTuffFall = 1314, - BlockTuffHit = 1313, - BlockTuffPlace = 1312, - BlockTuffStep = 1311, - BlockVineBreak = 1364, - BlockVineFall = 1365, - BlockVineHit = 1366, - BlockVinePlace = 1367, - BlockVineStep = 1368, - BlockWartBlockBreak = 885, - BlockWartBlockFall = 889, - BlockWartBlockHit = 888, - BlockWartBlockPlace = 887, - BlockWartBlockStep = 886, - BlockWaterAmbient = 1401, - BlockWeepingVinesBreak = 880, - BlockWeepingVinesFall = 884, - BlockWeepingVinesHit = 883, - BlockWeepingVinesPlace = 882, - BlockWeepingVinesStep = 881, - BlockWetGrassBreak = 1404, - BlockWetGrassFall = 1405, - BlockWetGrassHit = 1406, - BlockWetGrassPlace = 1407, - BlockWetGrassStep = 1408, - BlockWetSpongeBreak = 1409, - BlockWetSpongeFall = 1410, - BlockWetSpongeHit = 1411, - BlockWetSpongePlace = 1412, - BlockWetSpongeStep = 1413, - BlockWoodBreak = 1447, - BlockWoodFall = 1448, - BlockWoodHit = 1449, - BlockWoodPlace = 1450, - BlockWoodStep = 1451, - BlockWoodenButtonClickOff = 1443, - BlockWoodenButtonClickOn = 1444, - BlockWoodenDoorClose = 1439, - BlockWoodenDoorOpen = 1440, - BlockWoodenPressurePlateClickOff = 1445, - BlockWoodenPressurePlateClickOn = 1446, - BlockWoodenTrapdoorClose = 1441, - BlockWoodenTrapdoorOpen = 1442, - BlockWoolBreak = 1452, - BlockWoolFall = 1453, - BlockWoolHit = 1454, - BlockWoolPlace = 1455, - BlockWoolStep = 1456, - EnchantThornsHit = 1291, + BlockBrewingStandBrew = 176, + BlockBubbleColumnBubblePop = 182, + BlockBubbleColumnUpwardsAmbient = 183, + BlockBubbleColumnUpwardsInside = 184, + BlockBubbleColumnWhirlpoolAmbient = 185, + BlockBubbleColumnWhirlpoolInside = 186, + BlockCakeAddCandle = 202, + BlockCalciteBreak = 203, + BlockCalciteFall = 207, + BlockCalciteHit = 206, + BlockCalcitePlace = 205, + BlockCalciteStep = 204, + BlockCampfireCrackle = 219, + BlockCandleAmbient = 220, + BlockCandleBreak = 221, + BlockCandleExtinguish = 222, + BlockCandleFall = 223, + BlockCandleHit = 224, + BlockCandlePlace = 225, + BlockCandleStep = 226, + BlockCaveVinesBreak = 236, + BlockCaveVinesFall = 237, + BlockCaveVinesHit = 238, + BlockCaveVinesPickBerries = 241, + BlockCaveVinesPlace = 239, + BlockCaveVinesStep = 240, + BlockChainBreak = 242, + BlockChainFall = 243, + BlockChainHit = 244, + BlockChainPlace = 245, + BlockChainStep = 246, + BlockCherryLeavesBreak = 257, + BlockCherryLeavesFall = 258, + BlockCherryLeavesHit = 259, + BlockCherryLeavesPlace = 260, + BlockCherryLeavesStep = 261, + BlockCherrySaplingBreak = 252, + BlockCherrySaplingFall = 253, + BlockCherrySaplingHit = 254, + BlockCherrySaplingPlace = 255, + BlockCherrySaplingStep = 256, + BlockCherryWoodBreak = 247, + BlockCherryWoodFall = 248, + BlockCherryWoodHit = 249, + BlockCherryWoodPlace = 250, + BlockCherryWoodStep = 251, + BlockCherryWoodButtonClickOff = 271, + BlockCherryWoodButtonClickOn = 272, + BlockCherryWoodDoorClose = 267, + BlockCherryWoodDoorOpen = 268, + BlockCherryWoodFenceGateClose = 275, + BlockCherryWoodFenceGateOpen = 276, + BlockCherryWoodHangingSignBreak = 263, + BlockCherryWoodHangingSignFall = 264, + BlockCherryWoodHangingSignHit = 265, + BlockCherryWoodHangingSignPlace = 266, + BlockCherryWoodHangingSignStep = 262, + BlockCherryWoodPressurePlateClickOff = 273, + BlockCherryWoodPressurePlateClickOn = 274, + BlockCherryWoodTrapdoorClose = 269, + BlockCherryWoodTrapdoorOpen = 270, + BlockChestClose = 277, + BlockChestLocked = 278, + BlockChestOpen = 279, + BlockChiseledBookshelfBreak = 285, + BlockChiseledBookshelfFall = 286, + BlockChiseledBookshelfHit = 287, + BlockChiseledBookshelfInsert = 288, + BlockChiseledBookshelfInsertEnchanted = 289, + BlockChiseledBookshelfPickup = 291, + BlockChiseledBookshelfPickupEnchanted = 292, + BlockChiseledBookshelfPlace = 293, + BlockChiseledBookshelfStep = 290, + BlockChorusFlowerDeath = 294, + BlockChorusFlowerGrow = 295, + BlockComparatorClick = 301, + BlockComposterEmpty = 302, + BlockComposterFill = 303, + BlockComposterFillSuccess = 304, + BlockComposterReady = 305, + BlockConduitActivate = 306, + BlockConduitAmbient = 307, + BlockConduitAmbientShort = 308, + BlockConduitAttackTarget = 309, + BlockConduitDeactivate = 310, + BlockCopperBreak = 318, + BlockCopperFall = 322, + BlockCopperHit = 321, + BlockCopperPlace = 320, + BlockCopperStep = 319, + BlockCopperBulbBreak = 311, + BlockCopperBulbFall = 315, + BlockCopperBulbHit = 314, + BlockCopperBulbPlace = 313, + BlockCopperBulbStep = 312, + BlockCopperBulbTurnOff = 317, + BlockCopperBulbTurnOn = 316, + BlockCopperDoorClose = 323, + BlockCopperDoorOpen = 324, + BlockCopperGrateBreak = 325, + BlockCopperGrateFall = 329, + BlockCopperGrateHit = 328, + BlockCopperGratePlace = 327, + BlockCopperGrateStep = 326, + BlockCopperTrapdoorClose = 330, + BlockCopperTrapdoorOpen = 331, + BlockCoralBlockBreak = 332, + BlockCoralBlockFall = 333, + BlockCoralBlockHit = 334, + BlockCoralBlockPlace = 335, + BlockCoralBlockStep = 336, + BlockCrafterCraft = 342, + BlockCrafterFail = 343, + BlockCropBreak = 347, + BlockDecoratedPotBreak = 357, + BlockDecoratedPotFall = 358, + BlockDecoratedPotHit = 359, + BlockDecoratedPotInsert = 360, + BlockDecoratedPotInsertFail = 361, + BlockDecoratedPotPlace = 363, + BlockDecoratedPotShatter = 364, + BlockDecoratedPotStep = 362, + BlockDeepslateBreak = 370, + BlockDeepslateFall = 371, + BlockDeepslateHit = 372, + BlockDeepslatePlace = 373, + BlockDeepslateStep = 374, + BlockDeepslateBricksBreak = 365, + BlockDeepslateBricksFall = 366, + BlockDeepslateBricksHit = 367, + BlockDeepslateBricksPlace = 368, + BlockDeepslateBricksStep = 369, + BlockDeepslateTilesBreak = 375, + BlockDeepslateTilesFall = 376, + BlockDeepslateTilesHit = 377, + BlockDeepslateTilesPlace = 378, + BlockDeepslateTilesStep = 379, + BlockDispenserDispense = 380, + BlockDispenserFail = 381, + BlockDispenserLaunch = 382, + BlockDripstoneBlockBreak = 399, + BlockDripstoneBlockFall = 403, + BlockDripstoneBlockHit = 402, + BlockDripstoneBlockPlace = 401, + BlockDripstoneBlockStep = 400, + BlockEnchantmentTableUse = 436, + BlockEndGatewaySpawn = 459, + BlockEndPortalSpawn = 461, + BlockEndPortalFrameFill = 460, + BlockEnderChestClose = 437, + BlockEnderChestOpen = 438, + BlockFenceGateClose = 473, + BlockFenceGateOpen = 474, + BlockFireAmbient = 484, + BlockFireExtinguish = 485, + BlockFloweringAzaleaBreak = 491, + BlockFloweringAzaleaFall = 492, + BlockFloweringAzaleaHit = 493, + BlockFloweringAzaleaPlace = 494, + BlockFloweringAzaleaStep = 495, + BlockFroglightBreak = 517, + BlockFroglightFall = 518, + BlockFroglightHit = 519, + BlockFroglightPlace = 520, + BlockFroglightStep = 521, + BlockFrogspawnBreak = 523, + BlockFrogspawnFall = 524, + BlockFrogspawnHatch = 525, + BlockFrogspawnHit = 526, + BlockFrogspawnPlace = 527, + BlockFrogspawnStep = 522, + BlockFungusBreak = 915, + BlockFungusFall = 919, + BlockFungusHit = 918, + BlockFungusPlace = 917, + BlockFungusStep = 916, + BlockFurnaceFireCrackle = 541, + BlockGildedBlackstoneBreak = 559, + BlockGildedBlackstoneFall = 560, + BlockGildedBlackstoneHit = 561, + BlockGildedBlackstonePlace = 562, + BlockGildedBlackstoneStep = 563, + BlockGlassBreak = 564, + BlockGlassFall = 565, + BlockGlassHit = 566, + BlockGlassPlace = 567, + BlockGlassStep = 568, + BlockGrassBreak = 599, + BlockGrassFall = 600, + BlockGrassHit = 601, + BlockGrassPlace = 602, + BlockGrassStep = 603, + BlockGravelBreak = 604, + BlockGravelFall = 605, + BlockGravelHit = 606, + BlockGravelPlace = 607, + BlockGravelStep = 608, + BlockGrindstoneUse = 609, + BlockGrowingPlantCrop = 610, + BlockHangingRootsBreak = 619, + BlockHangingRootsFall = 620, + BlockHangingRootsHit = 621, + BlockHangingRootsPlace = 622, + BlockHangingRootsStep = 623, + BlockHangingSignBreak = 625, + BlockHangingSignFall = 626, + BlockHangingSignHit = 627, + BlockHangingSignPlace = 628, + BlockHangingSignStep = 624, + BlockHangingSignWaxedInteractFail = 1452, + BlockHoneyBlockBreak = 659, + BlockHoneyBlockFall = 660, + BlockHoneyBlockHit = 661, + BlockHoneyBlockPlace = 662, + BlockHoneyBlockSlide = 663, + BlockHoneyBlockStep = 664, + BlockIronDoorClose = 707, + BlockIronDoorOpen = 708, + BlockIronTrapdoorClose = 715, + BlockIronTrapdoorOpen = 716, + BlockLadderBreak = 724, + BlockLadderFall = 725, + BlockLadderHit = 726, + BlockLadderPlace = 727, + BlockLadderStep = 728, + BlockLanternBreak = 729, + BlockLanternFall = 730, + BlockLanternHit = 731, + BlockLanternPlace = 732, + BlockLanternStep = 733, + BlockLargeAmethystBudBreak = 734, + BlockLargeAmethystBudPlace = 735, + BlockLavaAmbient = 736, + BlockLavaExtinguish = 737, + BlockLavaPop = 738, + BlockLeverClick = 741, + BlockLilyPadPlace = 1421, + BlockLodestoneBreak = 755, + BlockLodestoneFall = 759, + BlockLodestoneHit = 758, + BlockLodestonePlace = 757, + BlockLodestoneStep = 756, + BlockMangroveRootsBreak = 767, + BlockMangroveRootsFall = 768, + BlockMangroveRootsHit = 769, + BlockMangroveRootsPlace = 770, + BlockMangroveRootsStep = 771, + BlockMediumAmethystBudBreak = 772, + BlockMediumAmethystBudPlace = 773, + BlockMetalBreak = 774, + BlockMetalFall = 775, + BlockMetalHit = 776, + BlockMetalPlace = 777, + BlockMetalStep = 780, + BlockMetalPressurePlateClickOff = 778, + BlockMetalPressurePlateClickOn = 779, + BlockMossBreak = 799, + BlockMossFall = 800, + BlockMossHit = 801, + BlockMossPlace = 802, + BlockMossStep = 803, + BlockMossCarpetBreak = 789, + BlockMossCarpetFall = 790, + BlockMossCarpetHit = 791, + BlockMossCarpetPlace = 792, + BlockMossCarpetStep = 793, + BlockMudBreak = 804, + BlockMudFall = 805, + BlockMudHit = 806, + BlockMudPlace = 807, + BlockMudStep = 808, + BlockMudBricksBreak = 809, + BlockMudBricksFall = 810, + BlockMudBricksHit = 811, + BlockMudBricksPlace = 812, + BlockMudBricksStep = 813, + BlockMuddyMangroveRootsBreak = 814, + BlockMuddyMangroveRootsFall = 815, + BlockMuddyMangroveRootsHit = 816, + BlockMuddyMangroveRootsPlace = 817, + BlockMuddyMangroveRootsStep = 818, + BlockNetherBricksBreak = 872, + BlockNetherBricksFall = 876, + BlockNetherBricksHit = 875, + BlockNetherBricksPlace = 874, + BlockNetherBricksStep = 873, + BlockNetherGoldOreBreak = 1113, + BlockNetherGoldOreFall = 1114, + BlockNetherGoldOreHit = 1115, + BlockNetherGoldOrePlace = 1116, + BlockNetherGoldOreStep = 1117, + BlockNetherOreBreak = 1118, + BlockNetherOreFall = 1119, + BlockNetherOreHit = 1120, + BlockNetherOrePlace = 1121, + BlockNetherOreStep = 1122, + BlockNetherSproutsBreak = 910, + BlockNetherSproutsFall = 914, + BlockNetherSproutsHit = 913, + BlockNetherSproutsPlace = 912, + BlockNetherSproutsStep = 911, + BlockNetherWartBreak = 877, + BlockNetherWoodBreak = 879, + BlockNetherWoodFall = 880, + BlockNetherWoodHit = 881, + BlockNetherWoodPlace = 882, + BlockNetherWoodStep = 883, + BlockNetherWoodButtonClickOff = 888, + BlockNetherWoodButtonClickOn = 889, + BlockNetherWoodDoorClose = 884, + BlockNetherWoodDoorOpen = 885, + BlockNetherWoodFenceGateClose = 892, + BlockNetherWoodFenceGateOpen = 893, + BlockNetherWoodHangingSignBreak = 630, + BlockNetherWoodHangingSignFall = 631, + BlockNetherWoodHangingSignHit = 632, + BlockNetherWoodHangingSignPlace = 633, + BlockNetherWoodHangingSignStep = 629, + BlockNetherWoodPressurePlateClickOff = 890, + BlockNetherWoodPressurePlateClickOn = 891, + BlockNetherWoodTrapdoorClose = 886, + BlockNetherWoodTrapdoorOpen = 887, + BlockNetheriteBlockBreak = 930, + BlockNetheriteBlockFall = 934, + BlockNetheriteBlockHit = 933, + BlockNetheriteBlockPlace = 932, + BlockNetheriteBlockStep = 931, + BlockNetherrackBreak = 935, + BlockNetherrackFall = 939, + BlockNetherrackHit = 938, + BlockNetherrackPlace = 937, + BlockNetherrackStep = 936, + BlockNoteBlockBanjo = 955, + BlockNoteBlockBasedrum = 940, + BlockNoteBlockBass = 941, + BlockNoteBlockBell = 942, + BlockNoteBlockBit = 954, + BlockNoteBlockChime = 943, + BlockNoteBlockCowBell = 952, + BlockNoteBlockDidgeridoo = 953, + BlockNoteBlockFlute = 944, + BlockNoteBlockGuitar = 945, + BlockNoteBlockHarp = 946, + BlockNoteBlockHat = 947, + BlockNoteBlockImitateCreeper = 958, + BlockNoteBlockImitateEnderDragon = 959, + BlockNoteBlockImitatePiglin = 961, + BlockNoteBlockImitateSkeleton = 957, + BlockNoteBlockImitateWitherSkeleton = 960, + BlockNoteBlockImitateZombie = 956, + BlockNoteBlockIronXylophone = 951, + BlockNoteBlockPling = 948, + BlockNoteBlockSnare = 949, + BlockNoteBlockXylophone = 950, + BlockNyliumBreak = 905, + BlockNyliumFall = 909, + BlockNyliumHit = 908, + BlockNyliumPlace = 907, + BlockNyliumStep = 906, + BlockPackedMudBreak = 895, + BlockPackedMudFall = 896, + BlockPackedMudHit = 897, + BlockPackedMudPlace = 898, + BlockPackedMudStep = 899, + BlockPinkPetalsBreak = 794, + BlockPinkPetalsFall = 795, + BlockPinkPetalsHit = 796, + BlockPinkPetalsPlace = 797, + BlockPinkPetalsStep = 798, + BlockPistonContract = 1049, + BlockPistonExtend = 1050, + BlockPointedDripstoneBreak = 404, + BlockPointedDripstoneDripLava = 410, + BlockPointedDripstoneDripLavaIntoCauldron = 412, + BlockPointedDripstoneDripWater = 411, + BlockPointedDripstoneDripWaterIntoCauldron = 413, + BlockPointedDripstoneFall = 408, + BlockPointedDripstoneHit = 407, + BlockPointedDripstoneLand = 409, + BlockPointedDripstonePlace = 406, + BlockPointedDripstoneStep = 405, + BlockPolishedDeepslateBreak = 1078, + BlockPolishedDeepslateFall = 1079, + BlockPolishedDeepslateHit = 1080, + BlockPolishedDeepslatePlace = 1081, + BlockPolishedDeepslateStep = 1082, + BlockPolishedTuffBreak = 1362, + BlockPolishedTuffFall = 1363, + BlockPolishedTuffHit = 1364, + BlockPolishedTuffPlace = 1365, + BlockPolishedTuffStep = 1366, + BlockPortalAmbient = 1083, + BlockPortalTravel = 1084, + BlockPortalTrigger = 1085, + BlockPowderSnowBreak = 1086, + BlockPowderSnowFall = 1087, + BlockPowderSnowHit = 1088, + BlockPowderSnowPlace = 1089, + BlockPowderSnowStep = 1090, + BlockPumpkinCarve = 1098, + BlockRedstoneTorchBurnout = 1123, + BlockRespawnAnchorAmbient = 1124, + BlockRespawnAnchorCharge = 1125, + BlockRespawnAnchorDeplete = 1126, + BlockRespawnAnchorSetSpawn = 1127, + BlockRootedDirtBreak = 1128, + BlockRootedDirtFall = 1129, + BlockRootedDirtHit = 1130, + BlockRootedDirtPlace = 1131, + BlockRootedDirtStep = 1132, + BlockRootsBreak = 536, + BlockRootsFall = 540, + BlockRootsHit = 539, + BlockRootsPlace = 538, + BlockRootsStep = 537, + BlockSandBreak = 1137, + BlockSandFall = 1138, + BlockSandHit = 1139, + BlockSandPlace = 1140, + BlockSandStep = 1141, + BlockScaffoldingBreak = 1142, + BlockScaffoldingFall = 1143, + BlockScaffoldingHit = 1144, + BlockScaffoldingPlace = 1145, + BlockScaffoldingStep = 1146, + BlockSculkBreak = 1149, + BlockSculkCharge = 1148, + BlockSculkFall = 1150, + BlockSculkHit = 1151, + BlockSculkPlace = 1152, + BlockSculkSpread = 1147, + BlockSculkStep = 1153, + BlockSculkCatalystBloom = 1154, + BlockSculkCatalystBreak = 1155, + BlockSculkCatalystFall = 1156, + BlockSculkCatalystHit = 1157, + BlockSculkCatalystPlace = 1158, + BlockSculkCatalystStep = 1159, + BlockSculkSensorBreak = 1162, + BlockSculkSensorClicking = 1160, + BlockSculkSensorClickingStop = 1161, + BlockSculkSensorFall = 1163, + BlockSculkSensorHit = 1164, + BlockSculkSensorPlace = 1165, + BlockSculkSensorStep = 1166, + BlockSculkShriekerBreak = 1167, + BlockSculkShriekerFall = 1168, + BlockSculkShriekerHit = 1169, + BlockSculkShriekerPlace = 1170, + BlockSculkShriekerShriek = 1171, + BlockSculkShriekerStep = 1172, + BlockSculkVeinBreak = 1173, + BlockSculkVeinFall = 1174, + BlockSculkVeinHit = 1175, + BlockSculkVeinPlace = 1176, + BlockSculkVeinStep = 1177, + BlockShroomlightBreak = 1185, + BlockShroomlightFall = 1189, + BlockShroomlightHit = 1188, + BlockShroomlightPlace = 1187, + BlockShroomlightStep = 1186, + BlockShulkerBoxClose = 1192, + BlockShulkerBoxOpen = 1193, + BlockSignWaxedInteractFail = 1453, + BlockSlimeBlockBreak = 1226, + BlockSlimeBlockFall = 1227, + BlockSlimeBlockHit = 1228, + BlockSlimeBlockPlace = 1229, + BlockSlimeBlockStep = 1230, + BlockSmallAmethystBudBreak = 1231, + BlockSmallAmethystBudPlace = 1232, + BlockSmallDripleafBreak = 1233, + BlockSmallDripleafFall = 1234, + BlockSmallDripleafHit = 1235, + BlockSmallDripleafPlace = 1236, + BlockSmallDripleafStep = 1237, + BlockSmithingTableUse = 1267, + BlockSmokerSmoke = 1268, + BlockSnifferEggCrack = 1282, + BlockSnifferEggHatch = 1283, + BlockSnifferEggPlop = 1281, + BlockSnowBreak = 1285, + BlockSnowFall = 1286, + BlockSnowHit = 1292, + BlockSnowPlace = 1293, + BlockSnowStep = 1294, + BlockSoulSandBreak = 1238, + BlockSoulSandFall = 1242, + BlockSoulSandHit = 1241, + BlockSoulSandPlace = 1240, + BlockSoulSandStep = 1239, + BlockSoulSoilBreak = 1243, + BlockSoulSoilFall = 1247, + BlockSoulSoilHit = 1246, + BlockSoulSoilPlace = 1245, + BlockSoulSoilStep = 1244, + BlockSpongeAbsorb = 1306, + BlockSpongeBreak = 1301, + BlockSpongeFall = 1302, + BlockSpongeHit = 1303, + BlockSpongePlace = 1304, + BlockSpongeStep = 1305, + BlockSporeBlossomBreak = 1249, + BlockSporeBlossomFall = 1250, + BlockSporeBlossomHit = 1251, + BlockSporeBlossomPlace = 1252, + BlockSporeBlossomStep = 1253, + BlockStemBreak = 900, + BlockStemFall = 904, + BlockStemHit = 903, + BlockStemPlace = 902, + BlockStemStep = 901, + BlockStoneBreak = 1313, + BlockStoneFall = 1316, + BlockStoneHit = 1317, + BlockStonePlace = 1318, + BlockStoneStep = 1321, + BlockStoneButtonClickOff = 1314, + BlockStoneButtonClickOn = 1315, + BlockStonePressurePlateClickOff = 1319, + BlockStonePressurePlateClickOn = 1320, + BlockSuspiciousGravelBreak = 512, + BlockSuspiciousGravelFall = 516, + BlockSuspiciousGravelHit = 515, + BlockSuspiciousGravelPlace = 514, + BlockSuspiciousGravelStep = 513, + BlockSuspiciousSandBreak = 507, + BlockSuspiciousSandFall = 511, + BlockSuspiciousSandHit = 510, + BlockSuspiciousSandPlace = 509, + BlockSuspiciousSandStep = 508, + BlockSweetBerryBushBreak = 1326, + BlockSweetBerryBushPickBerries = 1328, + BlockSweetBerryBushPlace = 1327, + BlockTrialSpawnerAmbient = 646, + BlockTrialSpawnerBreak = 639, + BlockTrialSpawnerCloseShutter = 648, + BlockTrialSpawnerDetectPlayer = 645, + BlockTrialSpawnerEjectItem = 649, + BlockTrialSpawnerFall = 643, + BlockTrialSpawnerHit = 642, + BlockTrialSpawnerOpenShutter = 647, + BlockTrialSpawnerPlace = 641, + BlockTrialSpawnerSpawnMob = 644, + BlockTrialSpawnerStep = 640, + BlockTripwireAttach = 1344, + BlockTripwireClickOff = 1345, + BlockTripwireClickOn = 1346, + BlockTripwireDetach = 1347, + BlockTuffBreak = 1352, + BlockTuffFall = 1356, + BlockTuffHit = 1355, + BlockTuffPlace = 1354, + BlockTuffStep = 1353, + BlockTuffBricksBreak = 1357, + BlockTuffBricksFall = 1358, + BlockTuffBricksHit = 1359, + BlockTuffBricksPlace = 1360, + BlockTuffBricksStep = 1361, + BlockVineBreak = 1416, + BlockVineFall = 1417, + BlockVineHit = 1418, + BlockVinePlace = 1419, + BlockVineStep = 1420, + BlockWartBlockBreak = 925, + BlockWartBlockFall = 929, + BlockWartBlockHit = 928, + BlockWartBlockPlace = 927, + BlockWartBlockStep = 926, + BlockWaterAmbient = 1454, + BlockWeepingVinesBreak = 920, + BlockWeepingVinesFall = 924, + BlockWeepingVinesHit = 923, + BlockWeepingVinesPlace = 922, + BlockWeepingVinesStep = 921, + BlockWetGrassBreak = 1457, + BlockWetGrassFall = 1458, + BlockWetGrassHit = 1459, + BlockWetGrassPlace = 1460, + BlockWetGrassStep = 1461, + BlockWetSpongeBreak = 1462, + BlockWetSpongeFall = 1463, + BlockWetSpongeHit = 1464, + BlockWetSpongePlace = 1465, + BlockWetSpongeStep = 1466, + BlockWoodBreak = 1501, + BlockWoodFall = 1502, + BlockWoodHit = 1503, + BlockWoodPlace = 1504, + BlockWoodStep = 1505, + BlockWoodenButtonClickOff = 1497, + BlockWoodenButtonClickOn = 1498, + BlockWoodenDoorClose = 1493, + BlockWoodenDoorOpen = 1494, + BlockWoodenPressurePlateClickOff = 1499, + BlockWoodenPressurePlateClickOn = 1500, + BlockWoodenTrapdoorClose = 1495, + BlockWoodenTrapdoorOpen = 1496, + BlockWoolBreak = 1506, + BlockWoolFall = 1507, + BlockWoolHit = 1508, + BlockWoolPlace = 1509, + BlockWoolStep = 1510, + EnchantThornsHit = 1333, EntityAllayAmbientWithItem = 1, EntityAllayAmbientWithoutItem = 2, EntityAllayDeath = 3, @@ -720,633 +762,645 @@ public enum SoundId : int EntityBlazeShoot = 152, EntityBoatPaddleLand = 153, EntityBoatPaddleWater = 154, - EntityCamelAmbient = 199, - EntityCamelDash = 200, - EntityCamelDashReady = 201, - EntityCamelDeath = 202, - EntityCamelEat = 203, - EntityCamelHurt = 204, - EntityCamelSaddle = 205, - EntityCamelSit = 206, - EntityCamelStand = 207, - EntityCamelStep = 208, - EntityCamelStepSand = 209, - EntityCatAmbient = 218, - EntityCatBegForFood = 223, - EntityCatDeath = 220, - EntityCatEat = 221, - EntityCatHiss = 222, - EntityCatHurt = 224, - EntityCatPurr = 225, - EntityCatPurreow = 226, - EntityCatStrayAmbient = 219, - EntityChickenAmbient = 271, - EntityChickenDeath = 272, - EntityChickenEgg = 273, - EntityChickenHurt = 274, - EntityChickenStep = 275, - EntityCodAmbient = 288, - EntityCodDeath = 289, - EntityCodFlop = 290, - EntityCodHurt = 291, - EntityCowAmbient = 312, - EntityCowDeath = 313, - EntityCowHurt = 314, - EntityCowMilk = 315, - EntityCowStep = 316, - EntityCreeperDeath = 317, - EntityCreeperHurt = 318, - EntityCreeperPrimed = 319, - EntityDolphinAmbient = 354, - EntityDolphinAmbientWater = 355, - EntityDolphinAttack = 356, - EntityDolphinDeath = 357, - EntityDolphinEat = 358, - EntityDolphinHurt = 359, - EntityDolphinJump = 360, - EntityDolphinPlay = 361, - EntityDolphinSplash = 362, - EntityDolphinSwim = 363, - EntityDonkeyAmbient = 364, - EntityDonkeyAngry = 365, - EntityDonkeyChest = 366, - EntityDonkeyDeath = 367, - EntityDonkeyEat = 368, - EntityDonkeyHurt = 369, - EntityDragonFireballExplode = 412, - EntityDrownedAmbient = 387, - EntityDrownedAmbientWater = 388, - EntityDrownedDeath = 389, - EntityDrownedDeathWater = 390, - EntityDrownedHurt = 391, - EntityDrownedHurtWater = 392, - EntityDrownedShoot = 393, - EntityDrownedStep = 394, - EntityDrownedSwim = 395, - EntityEggThrow = 397, - EntityElderGuardianAmbient = 398, - EntityElderGuardianAmbientLand = 399, - EntityElderGuardianCurse = 400, - EntityElderGuardianDeath = 401, - EntityElderGuardianDeathLand = 402, - EntityElderGuardianFlop = 403, - EntityElderGuardianHurt = 404, - EntityElderGuardianHurtLand = 405, - EntityEnderDragonAmbient = 410, - EntityEnderDragonDeath = 411, - EntityEnderDragonFlap = 413, - EntityEnderDragonGrowl = 414, - EntityEnderDragonHurt = 415, - EntityEnderDragonShoot = 416, - EntityEnderEyeDeath = 417, - EntityEnderEyeLaunch = 418, - EntityEnderPearlThrow = 429, - EntityEndermanAmbient = 419, - EntityEndermanDeath = 420, - EntityEndermanHurt = 421, - EntityEndermanScream = 422, - EntityEndermanStare = 423, - EntityEndermanTeleport = 424, - EntityEndermiteAmbient = 425, - EntityEndermiteDeath = 426, - EntityEndermiteHurt = 427, - EntityEndermiteStep = 428, - EntityEvokerAmbient = 433, - EntityEvokerCastSpell = 434, - EntityEvokerCelebrate = 435, - EntityEvokerDeath = 436, - EntityEvokerHurt = 438, - EntityEvokerPrepareAttack = 439, - EntityEvokerPrepareSummon = 440, - EntityEvokerPrepareWololo = 441, - EntityEvokerFangsAttack = 437, - EntityExperienceBottleThrow = 442, - EntityExperienceOrbPickup = 443, - EntityFireworkRocketBlast = 447, - EntityFireworkRocketBlastFar = 448, - EntityFireworkRocketLargeBlast = 449, - EntityFireworkRocketLargeBlastFar = 450, - EntityFireworkRocketLaunch = 451, - EntityFireworkRocketShoot = 452, - EntityFireworkRocketTwinkle = 453, - EntityFireworkRocketTwinkleFar = 454, - EntityFishSwim = 457, - EntityFishingBobberRetrieve = 458, - EntityFishingBobberSplash = 459, - EntityFishingBobberThrow = 460, - EntityFoxAggro = 467, - EntityFoxAmbient = 468, - EntityFoxBite = 469, - EntityFoxDeath = 470, - EntityFoxEat = 471, - EntityFoxHurt = 472, - EntityFoxScreech = 473, - EntityFoxSleep = 474, - EntityFoxSniff = 475, - EntityFoxSpit = 476, - EntityFoxTeleport = 477, - EntityFrogAmbient = 499, - EntityFrogDeath = 500, - EntityFrogEat = 501, - EntityFrogHurt = 502, - EntityFrogLaySpawn = 503, - EntityFrogLongJump = 504, - EntityFrogStep = 505, - EntityFrogTongue = 506, - EntityGenericBigFall = 513, - EntityGenericBurn = 514, - EntityGenericDeath = 515, - EntityGenericDrink = 516, - EntityGenericEat = 517, - EntityGenericExplode = 518, - EntityGenericExtinguishFire = 519, - EntityGenericHurt = 520, - EntityGenericSmallFall = 521, - EntityGenericSplash = 522, - EntityGenericSwim = 523, - EntityGhastAmbient = 524, - EntityGhastDeath = 525, - EntityGhastHurt = 526, - EntityGhastScream = 527, - EntityGhastShoot = 528, - EntityGhastWarn = 529, - EntityGlowItemFrameAddItem = 541, - EntityGlowItemFrameBreak = 542, - EntityGlowItemFramePlace = 543, - EntityGlowItemFrameRemoveItem = 544, - EntityGlowItemFrameRotateItem = 545, - EntityGlowSquidAmbient = 546, - EntityGlowSquidDeath = 547, - EntityGlowSquidHurt = 548, - EntityGlowSquidSquirt = 549, - EntityGoatAmbient = 550, - EntityGoatDeath = 551, - EntityGoatEat = 552, - EntityGoatHornBreak = 558, - EntityGoatHurt = 553, - EntityGoatLongJump = 554, - EntityGoatMilk = 555, - EntityGoatPrepareRam = 556, - EntityGoatRamImpact = 557, - EntityGoatScreamingAmbient = 560, - EntityGoatScreamingDeath = 561, - EntityGoatScreamingEat = 562, - EntityGoatScreamingHornBreak = 568, - EntityGoatScreamingHurt = 563, - EntityGoatScreamingLongJump = 564, - EntityGoatScreamingMilk = 565, - EntityGoatScreamingPrepareRam = 566, - EntityGoatScreamingRamImpact = 567, - EntityGoatStep = 569, - EntityGuardianAmbient = 582, - EntityGuardianAmbientLand = 583, - EntityGuardianAttack = 584, - EntityGuardianDeath = 585, - EntityGuardianDeathLand = 586, - EntityGuardianFlop = 587, - EntityGuardianHurt = 588, - EntityGuardianHurtLand = 589, - EntityHoglinAmbient = 611, - EntityHoglinAngry = 612, - EntityHoglinAttack = 613, - EntityHoglinConvertedToZombified = 614, - EntityHoglinDeath = 615, - EntityHoglinHurt = 616, - EntityHoglinRetreat = 617, - EntityHoglinStep = 618, - EntityHorseAmbient = 635, - EntityHorseAngry = 636, - EntityHorseArmor = 637, - EntityHorseBreathe = 638, - EntityHorseDeath = 639, - EntityHorseEat = 640, - EntityHorseGallop = 641, - EntityHorseHurt = 642, - EntityHorseJump = 643, - EntityHorseLand = 644, - EntityHorseSaddle = 645, - EntityHorseStep = 646, - EntityHorseStepWood = 647, - EntityHostileBigFall = 648, - EntityHostileDeath = 649, - EntityHostileHurt = 650, - EntityHostileSmallFall = 651, - EntityHostileSplash = 652, - EntityHostileSwim = 653, - EntityHuskAmbient = 654, - EntityHuskConvertedToZombie = 655, - EntityHuskDeath = 656, - EntityHuskHurt = 657, - EntityHuskStep = 658, - EntityIllusionerAmbient = 659, - EntityIllusionerCastSpell = 660, - EntityIllusionerDeath = 661, - EntityIllusionerHurt = 662, - EntityIllusionerMirrorMove = 663, - EntityIllusionerPrepareBlindness = 664, - EntityIllusionerPrepareMirror = 665, - EntityIronGolemAttack = 669, - EntityIronGolemDamage = 670, - EntityIronGolemDeath = 671, - EntityIronGolemHurt = 672, - EntityIronGolemRepair = 673, - EntityIronGolemStep = 674, - EntityItemBreak = 682, - EntityItemPickup = 683, - EntityItemFrameAddItem = 677, - EntityItemFrameBreak = 678, - EntityItemFramePlace = 679, - EntityItemFrameRemoveItem = 680, - EntityItemFrameRotateItem = 681, - EntityLeashKnotBreak = 699, - EntityLeashKnotPlace = 700, - EntityLightningBoltImpact = 702, - EntityLightningBoltThunder = 703, - EntityLingeringPotionThrow = 704, - EntityLlamaAmbient = 705, - EntityLlamaAngry = 706, - EntityLlamaChest = 707, - EntityLlamaDeath = 708, - EntityLlamaEat = 709, - EntityLlamaHurt = 710, - EntityLlamaSpit = 711, - EntityLlamaStep = 712, - EntityLlamaSwag = 713, - EntityMagmaCubeDeath = 721, - EntityMagmaCubeDeathSmall = 714, - EntityMagmaCubeHurt = 722, - EntityMagmaCubeHurtSmall = 723, - EntityMagmaCubeJump = 724, - EntityMagmaCubeSquish = 725, - EntityMagmaCubeSquishSmall = 726, - EntityMinecartInside = 742, - EntityMinecartInsideUnderwater = 741, - EntityMinecartRiding = 743, - EntityMooshroomConvert = 744, - EntityMooshroomEat = 745, - EntityMooshroomMilk = 746, - EntityMooshroomShear = 748, - EntityMooshroomSuspiciousMilk = 747, - EntityMuleAmbient = 779, - EntityMuleAngry = 780, - EntityMuleChest = 781, - EntityMuleDeath = 782, - EntityMuleEat = 783, - EntityMuleHurt = 784, - EntityOcelotAmbient = 923, - EntityOcelotDeath = 924, - EntityOcelotHurt = 922, - EntityPaintingBreak = 925, - EntityPaintingPlace = 926, - EntityPandaAggressiveAmbient = 934, - EntityPandaAmbient = 929, - EntityPandaBite = 937, - EntityPandaCantBreed = 933, - EntityPandaDeath = 930, - EntityPandaEat = 931, - EntityPandaHurt = 936, - EntityPandaPreSneeze = 927, - EntityPandaSneeze = 928, - EntityPandaStep = 932, - EntityPandaWorriedAmbient = 935, - EntityParrotAmbient = 938, - EntityParrotDeath = 939, - EntityParrotEat = 940, - EntityParrotFly = 941, - EntityParrotHurt = 942, - EntityParrotImitateBlaze = 943, - EntityParrotImitateCreeper = 944, - EntityParrotImitateDrowned = 945, - EntityParrotImitateElderGuardian = 946, - EntityParrotImitateEnderDragon = 947, - EntityParrotImitateEndermite = 948, - EntityParrotImitateEvoker = 949, - EntityParrotImitateGhast = 950, - EntityParrotImitateGuardian = 951, - EntityParrotImitateHoglin = 952, - EntityParrotImitateHusk = 953, - EntityParrotImitateIllusioner = 954, - EntityParrotImitateMagmaCube = 955, - EntityParrotImitatePhantom = 956, - EntityParrotImitatePiglin = 957, - EntityParrotImitatePiglinBrute = 958, - EntityParrotImitatePillager = 959, - EntityParrotImitateRavager = 960, - EntityParrotImitateShulker = 961, - EntityParrotImitateSilverfish = 962, - EntityParrotImitateSkeleton = 963, - EntityParrotImitateSlime = 964, - EntityParrotImitateSpider = 965, - EntityParrotImitateStray = 966, - EntityParrotImitateVex = 967, - EntityParrotImitateVindicator = 968, - EntityParrotImitateWarden = 969, - EntityParrotImitateWitch = 970, - EntityParrotImitateWither = 971, - EntityParrotImitateWitherSkeleton = 972, - EntityParrotImitateZoglin = 973, - EntityParrotImitateZombie = 974, - EntityParrotImitateZombieVillager = 975, - EntityParrotStep = 976, - EntityPhantomAmbient = 977, - EntityPhantomBite = 978, - EntityPhantomDeath = 979, - EntityPhantomFlap = 980, - EntityPhantomHurt = 981, - EntityPhantomSwoop = 982, - EntityPigAmbient = 983, - EntityPigDeath = 984, - EntityPigHurt = 985, - EntityPigSaddle = 986, - EntityPigStep = 987, - EntityPiglinAdmiringItem = 988, - EntityPiglinAmbient = 989, - EntityPiglinAngry = 990, - EntityPiglinCelebrate = 991, - EntityPiglinConvertedToZombified = 997, - EntityPiglinDeath = 992, - EntityPiglinHurt = 994, - EntityPiglinJealous = 993, - EntityPiglinRetreat = 995, - EntityPiglinStep = 996, - EntityPiglinBruteAmbient = 998, - EntityPiglinBruteAngry = 999, - EntityPiglinBruteConvertedToZombified = 1003, - EntityPiglinBruteDeath = 1000, - EntityPiglinBruteHurt = 1001, - EntityPiglinBruteStep = 1002, - EntityPillagerAmbient = 1004, - EntityPillagerCelebrate = 1005, - EntityPillagerDeath = 1006, - EntityPillagerHurt = 1007, - EntityPlayerAttackCrit = 1010, - EntityPlayerAttackKnockback = 1011, - EntityPlayerAttackNodamage = 1012, - EntityPlayerAttackStrong = 1013, - EntityPlayerAttackSweep = 1014, - EntityPlayerAttackWeak = 1015, - EntityPlayerBigFall = 1016, - EntityPlayerBreath = 1017, - EntityPlayerBurp = 1018, - EntityPlayerDeath = 1019, - EntityPlayerHurt = 1020, - EntityPlayerHurtDrown = 1021, - EntityPlayerHurtFreeze = 1022, - EntityPlayerHurtOnFire = 1023, - EntityPlayerHurtSweetBerryBush = 1024, - EntityPlayerLevelup = 1025, - EntityPlayerSmallFall = 1026, - EntityPlayerSplash = 1027, - EntityPlayerSplashHighSpeed = 1028, - EntityPlayerSwim = 1029, - EntityPolarBearAmbient = 1030, - EntityPolarBearAmbientBaby = 1031, - EntityPolarBearDeath = 1032, - EntityPolarBearHurt = 1033, - EntityPolarBearStep = 1034, - EntityPolarBearWarning = 1035, - EntityPufferFishAmbient = 1049, - EntityPufferFishBlowOut = 1050, - EntityPufferFishBlowUp = 1051, - EntityPufferFishDeath = 1052, - EntityPufferFishFlop = 1053, - EntityPufferFishHurt = 1054, - EntityPufferFishSting = 1055, - EntityRabbitAmbient = 1057, - EntityRabbitAttack = 1058, - EntityRabbitDeath = 1059, - EntityRabbitHurt = 1060, - EntityRabbitJump = 1061, - EntityRavagerAmbient = 1063, - EntityRavagerAttack = 1064, - EntityRavagerCelebrate = 1065, - EntityRavagerDeath = 1066, - EntityRavagerHurt = 1067, - EntityRavagerRoar = 1070, - EntityRavagerStep = 1068, - EntityRavagerStunned = 1069, - EntitySalmonAmbient = 1091, - EntitySalmonDeath = 1092, - EntitySalmonFlop = 1093, - EntitySalmonHurt = 1094, - EntitySheepAmbient = 1136, - EntitySheepDeath = 1137, - EntitySheepHurt = 1138, - EntitySheepShear = 1139, - EntitySheepStep = 1140, - EntityShulkerAmbient = 1149, - EntityShulkerClose = 1154, - EntityShulkerDeath = 1155, - EntityShulkerHurt = 1156, - EntityShulkerHurtClosed = 1157, - EntityShulkerOpen = 1158, - EntityShulkerShoot = 1159, - EntityShulkerTeleport = 1160, - EntityShulkerBulletHit = 1152, - EntityShulkerBulletHurt = 1153, - EntitySilverfishAmbient = 1161, - EntitySilverfishDeath = 1162, - EntitySilverfishHurt = 1163, - EntitySilverfishStep = 1164, - EntitySkeletonAmbient = 1165, - EntitySkeletonConvertedToStray = 1166, - EntitySkeletonDeath = 1167, - EntitySkeletonHurt = 1176, - EntitySkeletonShoot = 1177, - EntitySkeletonStep = 1178, - EntitySkeletonHorseAmbient = 1168, - EntitySkeletonHorseAmbientWater = 1172, - EntitySkeletonHorseDeath = 1169, - EntitySkeletonHorseGallopWater = 1173, - EntitySkeletonHorseHurt = 1170, - EntitySkeletonHorseJumpWater = 1174, - EntitySkeletonHorseStepWater = 1175, - EntitySkeletonHorseSwim = 1171, - EntitySlimeAttack = 1179, - EntitySlimeDeath = 1180, - EntitySlimeDeathSmall = 1221, - EntitySlimeHurt = 1181, - EntitySlimeHurtSmall = 1222, - EntitySlimeJump = 1182, - EntitySlimeJumpSmall = 1223, - EntitySlimeSquish = 1183, - EntitySlimeSquishSmall = 1224, - EntitySnifferDeath = 1231, - EntitySnifferDigging = 1236, - EntitySnifferDiggingStop = 1237, - EntitySnifferDropSeed = 1232, - EntitySnifferEat = 1228, - EntitySnifferHappy = 1238, - EntitySnifferHurt = 1230, - EntitySnifferIdle = 1229, - EntitySnifferScenting = 1233, - EntitySnifferSearching = 1235, - EntitySnifferSniffing = 1234, - EntitySnifferStep = 1227, - EntitySnowGolemAmbient = 1245, - EntitySnowGolemDeath = 1246, - EntitySnowGolemHurt = 1247, - EntitySnowGolemShear = 1249, - EntitySnowGolemShoot = 1248, - EntitySnowballThrow = 1242, - EntitySpiderAmbient = 1253, - EntitySpiderDeath = 1254, - EntitySpiderHurt = 1255, - EntitySpiderStep = 1256, - EntitySplashPotionBreak = 1257, - EntitySplashPotionThrow = 1258, - EntitySquidAmbient = 1267, - EntitySquidDeath = 1268, - EntitySquidHurt = 1269, - EntitySquidSquirt = 1270, - EntityStrayAmbient = 1280, - EntityStrayDeath = 1281, - EntityStrayHurt = 1282, - EntityStrayStep = 1283, - EntityStriderAmbient = 1212, - EntityStriderDeath = 1215, - EntityStriderEat = 1219, - EntityStriderHappy = 1213, - EntityStriderHurt = 1216, - EntityStriderRetreat = 1214, - EntityStriderSaddle = 1220, - EntityStriderStep = 1217, - EntityStriderStepLava = 1218, - EntityTadpoleDeath = 1287, - EntityTadpoleFlop = 1288, - EntityTadpoleGrowUp = 1289, - EntityTadpoleHurt = 1290, - EntityTntPrimed = 1292, - EntityTropicalFishAmbient = 1306, - EntityTropicalFishDeath = 1307, - EntityTropicalFishFlop = 1308, - EntityTropicalFishHurt = 1309, - EntityTurtleAmbientLand = 1315, - EntityTurtleDeath = 1316, - EntityTurtleDeathBaby = 1317, - EntityTurtleEggBreak = 1318, - EntityTurtleEggCrack = 1319, - EntityTurtleEggHatch = 1320, - EntityTurtleHurt = 1321, - EntityTurtleHurtBaby = 1322, - EntityTurtleLayEgg = 1323, - EntityTurtleShamble = 1324, - EntityTurtleShambleBaby = 1325, - EntityTurtleSwim = 1326, - EntityVexAmbient = 1336, - EntityVexCharge = 1337, - EntityVexDeath = 1338, - EntityVexHurt = 1339, - EntityVillagerAmbient = 1340, - EntityVillagerCelebrate = 1341, - EntityVillagerDeath = 1342, - EntityVillagerHurt = 1343, - EntityVillagerNo = 1344, - EntityVillagerTrade = 1345, - EntityVillagerWorkArmorer = 1347, - EntityVillagerWorkButcher = 1348, - EntityVillagerWorkCartographer = 1349, - EntityVillagerWorkCleric = 1350, - EntityVillagerWorkFarmer = 1351, - EntityVillagerWorkFisherman = 1352, - EntityVillagerWorkFletcher = 1353, - EntityVillagerWorkLeatherworker = 1354, - EntityVillagerWorkLibrarian = 1355, - EntityVillagerWorkMason = 1356, - EntityVillagerWorkShepherd = 1357, - EntityVillagerWorkToolsmith = 1358, - EntityVillagerWorkWeaponsmith = 1359, - EntityVillagerYes = 1346, - EntityVindicatorAmbient = 1360, - EntityVindicatorCelebrate = 1361, - EntityVindicatorDeath = 1362, - EntityVindicatorHurt = 1363, - EntityWanderingTraderAmbient = 1370, - EntityWanderingTraderDeath = 1371, - EntityWanderingTraderDisappeared = 1372, - EntityWanderingTraderDrinkMilk = 1373, - EntityWanderingTraderDrinkPotion = 1374, - EntityWanderingTraderHurt = 1375, - EntityWanderingTraderNo = 1376, - EntityWanderingTraderReappeared = 1377, - EntityWanderingTraderTrade = 1378, - EntityWanderingTraderYes = 1379, - EntityWardenAgitated = 1380, - EntityWardenAmbient = 1381, - EntityWardenAngry = 1382, - EntityWardenAttackImpact = 1383, - EntityWardenDeath = 1384, - EntityWardenDig = 1385, - EntityWardenEmerge = 1386, - EntityWardenHeartbeat = 1387, - EntityWardenHurt = 1388, - EntityWardenListening = 1389, - EntityWardenListeningAngry = 1390, - EntityWardenNearbyClose = 1391, - EntityWardenNearbyCloser = 1392, - EntityWardenNearbyClosest = 1393, - EntityWardenRoar = 1394, - EntityWardenSniff = 1395, - EntityWardenSonicBoom = 1396, - EntityWardenSonicCharge = 1397, - EntityWardenStep = 1398, - EntityWardenTendrilClicks = 1399, - EntityWitchAmbient = 1414, - EntityWitchCelebrate = 1415, - EntityWitchDeath = 1416, - EntityWitchDrink = 1417, - EntityWitchHurt = 1418, - EntityWitchThrow = 1419, - EntityWitherAmbient = 1420, - EntityWitherBreakBlock = 1421, - EntityWitherDeath = 1422, - EntityWitherHurt = 1423, - EntityWitherShoot = 1424, - EntityWitherSpawn = 1429, - EntityWitherSkeletonAmbient = 1425, - EntityWitherSkeletonDeath = 1426, - EntityWitherSkeletonHurt = 1427, - EntityWitherSkeletonStep = 1428, - EntityWolfAmbient = 1430, - EntityWolfDeath = 1431, - EntityWolfGrowl = 1432, - EntityWolfHowl = 1433, - EntityWolfHurt = 1434, - EntityWolfPant = 1435, - EntityWolfShake = 1436, - EntityWolfStep = 1437, - EntityWolfWhine = 1438, - EntityZoglinAmbient = 1457, - EntityZoglinAngry = 1458, - EntityZoglinAttack = 1459, - EntityZoglinDeath = 1460, - EntityZoglinHurt = 1461, - EntityZoglinStep = 1462, - EntityZombieAmbient = 1463, - EntityZombieAttackIronDoor = 1465, - EntityZombieAttackWoodenDoor = 1464, - EntityZombieBreakWoodenDoor = 1466, - EntityZombieConvertedToDrowned = 1467, - EntityZombieDeath = 1468, - EntityZombieDestroyEgg = 1469, - EntityZombieHurt = 1473, - EntityZombieInfect = 1474, - EntityZombieStep = 1479, - EntityZombieHorseAmbient = 1470, - EntityZombieHorseDeath = 1471, - EntityZombieHorseHurt = 1472, - EntityZombieVillagerAmbient = 1480, - EntityZombieVillagerConverted = 1481, - EntityZombieVillagerCure = 1482, - EntityZombieVillagerDeath = 1483, - EntityZombieVillagerHurt = 1484, - EntityZombieVillagerStep = 1485, - EntityZombifiedPiglinAmbient = 1475, - EntityZombifiedPiglinAngry = 1476, - EntityZombifiedPiglinDeath = 1477, - EntityZombifiedPiglinHurt = 1478, - EventRaidHorn = 1062, - IntentionallyEmpty = 854, + EntityBreezeDeath = 174, + EntityBreezeHurt = 175, + EntityBreezeIdleAir = 169, + EntityBreezeIdleGround = 168, + EntityBreezeInhale = 167, + EntityBreezeJump = 171, + EntityBreezeLand = 172, + EntityBreezeShoot = 170, + EntityBreezeSlide = 173, + EntityCamelAmbient = 208, + EntityCamelDash = 209, + EntityCamelDashReady = 210, + EntityCamelDeath = 211, + EntityCamelEat = 212, + EntityCamelHurt = 213, + EntityCamelSaddle = 214, + EntityCamelSit = 215, + EntityCamelStand = 216, + EntityCamelStep = 217, + EntityCamelStepSand = 218, + EntityCatAmbient = 227, + EntityCatBegForFood = 232, + EntityCatDeath = 229, + EntityCatEat = 230, + EntityCatHiss = 231, + EntityCatHurt = 233, + EntityCatPurr = 234, + EntityCatPurreow = 235, + EntityCatStrayAmbient = 228, + EntityChickenAmbient = 280, + EntityChickenDeath = 281, + EntityChickenEgg = 282, + EntityChickenHurt = 283, + EntityChickenStep = 284, + EntityCodAmbient = 297, + EntityCodDeath = 298, + EntityCodFlop = 299, + EntityCodHurt = 300, + EntityCowAmbient = 337, + EntityCowDeath = 338, + EntityCowHurt = 339, + EntityCowMilk = 340, + EntityCowStep = 341, + EntityCreeperDeath = 344, + EntityCreeperHurt = 345, + EntityCreeperPrimed = 346, + EntityDolphinAmbient = 383, + EntityDolphinAmbientWater = 384, + EntityDolphinAttack = 385, + EntityDolphinDeath = 386, + EntityDolphinEat = 387, + EntityDolphinHurt = 388, + EntityDolphinJump = 389, + EntityDolphinPlay = 390, + EntityDolphinSplash = 391, + EntityDolphinSwim = 392, + EntityDonkeyAmbient = 393, + EntityDonkeyAngry = 394, + EntityDonkeyChest = 395, + EntityDonkeyDeath = 396, + EntityDonkeyEat = 397, + EntityDonkeyHurt = 398, + EntityDragonFireballExplode = 441, + EntityDrownedAmbient = 416, + EntityDrownedAmbientWater = 417, + EntityDrownedDeath = 418, + EntityDrownedDeathWater = 419, + EntityDrownedHurt = 420, + EntityDrownedHurtWater = 421, + EntityDrownedShoot = 422, + EntityDrownedStep = 423, + EntityDrownedSwim = 424, + EntityEggThrow = 426, + EntityElderGuardianAmbient = 427, + EntityElderGuardianAmbientLand = 428, + EntityElderGuardianCurse = 429, + EntityElderGuardianDeath = 430, + EntityElderGuardianDeathLand = 431, + EntityElderGuardianFlop = 432, + EntityElderGuardianHurt = 433, + EntityElderGuardianHurtLand = 434, + EntityEnderDragonAmbient = 439, + EntityEnderDragonDeath = 440, + EntityEnderDragonFlap = 442, + EntityEnderDragonGrowl = 443, + EntityEnderDragonHurt = 444, + EntityEnderDragonShoot = 445, + EntityEnderEyeDeath = 446, + EntityEnderEyeLaunch = 447, + EntityEnderPearlThrow = 458, + EntityEndermanAmbient = 448, + EntityEndermanDeath = 449, + EntityEndermanHurt = 450, + EntityEndermanScream = 451, + EntityEndermanStare = 452, + EntityEndermanTeleport = 453, + EntityEndermiteAmbient = 454, + EntityEndermiteDeath = 455, + EntityEndermiteHurt = 456, + EntityEndermiteStep = 457, + EntityEvokerAmbient = 462, + EntityEvokerCastSpell = 463, + EntityEvokerCelebrate = 464, + EntityEvokerDeath = 465, + EntityEvokerHurt = 467, + EntityEvokerPrepareAttack = 468, + EntityEvokerPrepareSummon = 469, + EntityEvokerPrepareWololo = 470, + EntityEvokerFangsAttack = 466, + EntityExperienceBottleThrow = 471, + EntityExperienceOrbPickup = 472, + EntityFireworkRocketBlast = 476, + EntityFireworkRocketBlastFar = 477, + EntityFireworkRocketLargeBlast = 478, + EntityFireworkRocketLargeBlastFar = 479, + EntityFireworkRocketLaunch = 480, + EntityFireworkRocketShoot = 481, + EntityFireworkRocketTwinkle = 482, + EntityFireworkRocketTwinkleFar = 483, + EntityFishSwim = 486, + EntityFishingBobberRetrieve = 487, + EntityFishingBobberSplash = 488, + EntityFishingBobberThrow = 489, + EntityFoxAggro = 496, + EntityFoxAmbient = 497, + EntityFoxBite = 498, + EntityFoxDeath = 499, + EntityFoxEat = 500, + EntityFoxHurt = 501, + EntityFoxScreech = 502, + EntityFoxSleep = 503, + EntityFoxSniff = 504, + EntityFoxSpit = 505, + EntityFoxTeleport = 506, + EntityFrogAmbient = 528, + EntityFrogDeath = 529, + EntityFrogEat = 530, + EntityFrogHurt = 531, + EntityFrogLaySpawn = 532, + EntityFrogLongJump = 533, + EntityFrogStep = 534, + EntityFrogTongue = 535, + EntityGenericBigFall = 542, + EntityGenericBurn = 543, + EntityGenericDeath = 544, + EntityGenericDrink = 545, + EntityGenericEat = 546, + EntityGenericExplode = 547, + EntityGenericExtinguishFire = 548, + EntityGenericHurt = 549, + EntityGenericSmallFall = 550, + EntityGenericSplash = 551, + EntityGenericSwim = 552, + EntityGenericWindBurst = 1467, + EntityGhastAmbient = 553, + EntityGhastDeath = 554, + EntityGhastHurt = 555, + EntityGhastScream = 556, + EntityGhastShoot = 557, + EntityGhastWarn = 558, + EntityGlowItemFrameAddItem = 570, + EntityGlowItemFrameBreak = 571, + EntityGlowItemFramePlace = 572, + EntityGlowItemFrameRemoveItem = 573, + EntityGlowItemFrameRotateItem = 574, + EntityGlowSquidAmbient = 575, + EntityGlowSquidDeath = 576, + EntityGlowSquidHurt = 577, + EntityGlowSquidSquirt = 578, + EntityGoatAmbient = 579, + EntityGoatDeath = 580, + EntityGoatEat = 581, + EntityGoatHornBreak = 587, + EntityGoatHurt = 582, + EntityGoatLongJump = 583, + EntityGoatMilk = 584, + EntityGoatPrepareRam = 585, + EntityGoatRamImpact = 586, + EntityGoatScreamingAmbient = 589, + EntityGoatScreamingDeath = 590, + EntityGoatScreamingEat = 591, + EntityGoatScreamingHornBreak = 597, + EntityGoatScreamingHurt = 592, + EntityGoatScreamingLongJump = 593, + EntityGoatScreamingMilk = 594, + EntityGoatScreamingPrepareRam = 595, + EntityGoatScreamingRamImpact = 596, + EntityGoatStep = 598, + EntityGuardianAmbient = 611, + EntityGuardianAmbientLand = 612, + EntityGuardianAttack = 613, + EntityGuardianDeath = 614, + EntityGuardianDeathLand = 615, + EntityGuardianFlop = 616, + EntityGuardianHurt = 617, + EntityGuardianHurtLand = 618, + EntityHoglinAmbient = 651, + EntityHoglinAngry = 652, + EntityHoglinAttack = 653, + EntityHoglinConvertedToZombified = 654, + EntityHoglinDeath = 655, + EntityHoglinHurt = 656, + EntityHoglinRetreat = 657, + EntityHoglinStep = 658, + EntityHorseAmbient = 675, + EntityHorseAngry = 676, + EntityHorseArmor = 677, + EntityHorseBreathe = 678, + EntityHorseDeath = 679, + EntityHorseEat = 680, + EntityHorseGallop = 681, + EntityHorseHurt = 682, + EntityHorseJump = 683, + EntityHorseLand = 684, + EntityHorseSaddle = 685, + EntityHorseStep = 686, + EntityHorseStepWood = 687, + EntityHostileBigFall = 688, + EntityHostileDeath = 689, + EntityHostileHurt = 690, + EntityHostileSmallFall = 691, + EntityHostileSplash = 692, + EntityHostileSwim = 693, + EntityHuskAmbient = 694, + EntityHuskConvertedToZombie = 695, + EntityHuskDeath = 696, + EntityHuskHurt = 697, + EntityHuskStep = 698, + EntityIllusionerAmbient = 699, + EntityIllusionerCastSpell = 700, + EntityIllusionerDeath = 701, + EntityIllusionerHurt = 702, + EntityIllusionerMirrorMove = 703, + EntityIllusionerPrepareBlindness = 704, + EntityIllusionerPrepareMirror = 705, + EntityIronGolemAttack = 709, + EntityIronGolemDamage = 710, + EntityIronGolemDeath = 711, + EntityIronGolemHurt = 712, + EntityIronGolemRepair = 713, + EntityIronGolemStep = 714, + EntityItemBreak = 722, + EntityItemPickup = 723, + EntityItemFrameAddItem = 717, + EntityItemFrameBreak = 718, + EntityItemFramePlace = 719, + EntityItemFrameRemoveItem = 720, + EntityItemFrameRotateItem = 721, + EntityLeashKnotBreak = 739, + EntityLeashKnotPlace = 740, + EntityLightningBoltImpact = 742, + EntityLightningBoltThunder = 743, + EntityLingeringPotionThrow = 744, + EntityLlamaAmbient = 745, + EntityLlamaAngry = 746, + EntityLlamaChest = 747, + EntityLlamaDeath = 748, + EntityLlamaEat = 749, + EntityLlamaHurt = 750, + EntityLlamaSpit = 751, + EntityLlamaStep = 752, + EntityLlamaSwag = 753, + EntityMagmaCubeDeath = 761, + EntityMagmaCubeDeathSmall = 754, + EntityMagmaCubeHurt = 762, + EntityMagmaCubeHurtSmall = 763, + EntityMagmaCubeJump = 764, + EntityMagmaCubeSquish = 765, + EntityMagmaCubeSquishSmall = 766, + EntityMinecartInside = 782, + EntityMinecartInsideUnderwater = 781, + EntityMinecartRiding = 783, + EntityMooshroomConvert = 784, + EntityMooshroomEat = 785, + EntityMooshroomMilk = 786, + EntityMooshroomShear = 788, + EntityMooshroomSuspiciousMilk = 787, + EntityMuleAmbient = 819, + EntityMuleAngry = 820, + EntityMuleChest = 821, + EntityMuleDeath = 822, + EntityMuleEat = 823, + EntityMuleHurt = 824, + EntityOcelotAmbient = 963, + EntityOcelotDeath = 964, + EntityOcelotHurt = 962, + EntityPaintingBreak = 965, + EntityPaintingPlace = 966, + EntityPandaAggressiveAmbient = 974, + EntityPandaAmbient = 969, + EntityPandaBite = 977, + EntityPandaCantBreed = 973, + EntityPandaDeath = 970, + EntityPandaEat = 971, + EntityPandaHurt = 976, + EntityPandaPreSneeze = 967, + EntityPandaSneeze = 968, + EntityPandaStep = 972, + EntityPandaWorriedAmbient = 975, + EntityParrotAmbient = 978, + EntityParrotDeath = 979, + EntityParrotEat = 980, + EntityParrotFly = 981, + EntityParrotHurt = 982, + EntityParrotImitateBlaze = 983, + EntityParrotImitateBreeze = 984, + EntityParrotImitateCreeper = 985, + EntityParrotImitateDrowned = 986, + EntityParrotImitateElderGuardian = 987, + EntityParrotImitateEnderDragon = 988, + EntityParrotImitateEndermite = 989, + EntityParrotImitateEvoker = 990, + EntityParrotImitateGhast = 991, + EntityParrotImitateGuardian = 992, + EntityParrotImitateHoglin = 993, + EntityParrotImitateHusk = 994, + EntityParrotImitateIllusioner = 995, + EntityParrotImitateMagmaCube = 996, + EntityParrotImitatePhantom = 997, + EntityParrotImitatePiglin = 998, + EntityParrotImitatePiglinBrute = 999, + EntityParrotImitatePillager = 1000, + EntityParrotImitateRavager = 1001, + EntityParrotImitateShulker = 1002, + EntityParrotImitateSilverfish = 1003, + EntityParrotImitateSkeleton = 1004, + EntityParrotImitateSlime = 1005, + EntityParrotImitateSpider = 1006, + EntityParrotImitateStray = 1007, + EntityParrotImitateVex = 1008, + EntityParrotImitateVindicator = 1009, + EntityParrotImitateWarden = 1010, + EntityParrotImitateWitch = 1011, + EntityParrotImitateWither = 1012, + EntityParrotImitateWitherSkeleton = 1013, + EntityParrotImitateZoglin = 1014, + EntityParrotImitateZombie = 1015, + EntityParrotImitateZombieVillager = 1016, + EntityParrotStep = 1017, + EntityPhantomAmbient = 1018, + EntityPhantomBite = 1019, + EntityPhantomDeath = 1020, + EntityPhantomFlap = 1021, + EntityPhantomHurt = 1022, + EntityPhantomSwoop = 1023, + EntityPigAmbient = 1024, + EntityPigDeath = 1025, + EntityPigHurt = 1026, + EntityPigSaddle = 1027, + EntityPigStep = 1028, + EntityPiglinAdmiringItem = 1029, + EntityPiglinAmbient = 1030, + EntityPiglinAngry = 1031, + EntityPiglinCelebrate = 1032, + EntityPiglinConvertedToZombified = 1038, + EntityPiglinDeath = 1033, + EntityPiglinHurt = 1035, + EntityPiglinJealous = 1034, + EntityPiglinRetreat = 1036, + EntityPiglinStep = 1037, + EntityPiglinBruteAmbient = 1039, + EntityPiglinBruteAngry = 1040, + EntityPiglinBruteConvertedToZombified = 1044, + EntityPiglinBruteDeath = 1041, + EntityPiglinBruteHurt = 1042, + EntityPiglinBruteStep = 1043, + EntityPillagerAmbient = 1045, + EntityPillagerCelebrate = 1046, + EntityPillagerDeath = 1047, + EntityPillagerHurt = 1048, + EntityPlayerAttackCrit = 1051, + EntityPlayerAttackKnockback = 1052, + EntityPlayerAttackNodamage = 1053, + EntityPlayerAttackStrong = 1054, + EntityPlayerAttackSweep = 1055, + EntityPlayerAttackWeak = 1056, + EntityPlayerBigFall = 1057, + EntityPlayerBreath = 1058, + EntityPlayerBurp = 1059, + EntityPlayerDeath = 1060, + EntityPlayerHurt = 1061, + EntityPlayerHurtDrown = 1062, + EntityPlayerHurtFreeze = 1063, + EntityPlayerHurtOnFire = 1064, + EntityPlayerHurtSweetBerryBush = 1065, + EntityPlayerLevelup = 1066, + EntityPlayerSmallFall = 1067, + EntityPlayerSplash = 1068, + EntityPlayerSplashHighSpeed = 1069, + EntityPlayerSwim = 1070, + EntityPlayerTeleport = 1071, + EntityPolarBearAmbient = 1072, + EntityPolarBearAmbientBaby = 1073, + EntityPolarBearDeath = 1074, + EntityPolarBearHurt = 1075, + EntityPolarBearStep = 1076, + EntityPolarBearWarning = 1077, + EntityPufferFishAmbient = 1091, + EntityPufferFishBlowOut = 1092, + EntityPufferFishBlowUp = 1093, + EntityPufferFishDeath = 1094, + EntityPufferFishFlop = 1095, + EntityPufferFishHurt = 1096, + EntityPufferFishSting = 1097, + EntityRabbitAmbient = 1099, + EntityRabbitAttack = 1100, + EntityRabbitDeath = 1101, + EntityRabbitHurt = 1102, + EntityRabbitJump = 1103, + EntityRavagerAmbient = 1105, + EntityRavagerAttack = 1106, + EntityRavagerCelebrate = 1107, + EntityRavagerDeath = 1108, + EntityRavagerHurt = 1109, + EntityRavagerRoar = 1112, + EntityRavagerStep = 1110, + EntityRavagerStunned = 1111, + EntitySalmonAmbient = 1133, + EntitySalmonDeath = 1134, + EntitySalmonFlop = 1135, + EntitySalmonHurt = 1136, + EntitySheepAmbient = 1178, + EntitySheepDeath = 1179, + EntitySheepHurt = 1180, + EntitySheepShear = 1181, + EntitySheepStep = 1182, + EntityShulkerAmbient = 1191, + EntityShulkerClose = 1196, + EntityShulkerDeath = 1197, + EntityShulkerHurt = 1198, + EntityShulkerHurtClosed = 1199, + EntityShulkerOpen = 1200, + EntityShulkerShoot = 1201, + EntityShulkerTeleport = 1202, + EntityShulkerBulletHit = 1194, + EntityShulkerBulletHurt = 1195, + EntitySilverfishAmbient = 1203, + EntitySilverfishDeath = 1204, + EntitySilverfishHurt = 1205, + EntitySilverfishStep = 1206, + EntitySkeletonAmbient = 1207, + EntitySkeletonConvertedToStray = 1208, + EntitySkeletonDeath = 1209, + EntitySkeletonHurt = 1218, + EntitySkeletonShoot = 1219, + EntitySkeletonStep = 1220, + EntitySkeletonHorseAmbient = 1210, + EntitySkeletonHorseAmbientWater = 1214, + EntitySkeletonHorseDeath = 1211, + EntitySkeletonHorseGallopWater = 1215, + EntitySkeletonHorseHurt = 1212, + EntitySkeletonHorseJumpWater = 1216, + EntitySkeletonHorseStepWater = 1217, + EntitySkeletonHorseSwim = 1213, + EntitySlimeAttack = 1221, + EntitySlimeDeath = 1222, + EntitySlimeDeathSmall = 1263, + EntitySlimeHurt = 1223, + EntitySlimeHurtSmall = 1264, + EntitySlimeJump = 1224, + EntitySlimeJumpSmall = 1265, + EntitySlimeSquish = 1225, + EntitySlimeSquishSmall = 1266, + EntitySnifferDeath = 1273, + EntitySnifferDigging = 1278, + EntitySnifferDiggingStop = 1279, + EntitySnifferDropSeed = 1274, + EntitySnifferEat = 1270, + EntitySnifferHappy = 1280, + EntitySnifferHurt = 1272, + EntitySnifferIdle = 1271, + EntitySnifferScenting = 1275, + EntitySnifferSearching = 1277, + EntitySnifferSniffing = 1276, + EntitySnifferStep = 1269, + EntitySnowGolemAmbient = 1287, + EntitySnowGolemDeath = 1288, + EntitySnowGolemHurt = 1289, + EntitySnowGolemShear = 1291, + EntitySnowGolemShoot = 1290, + EntitySnowballThrow = 1284, + EntitySpiderAmbient = 1295, + EntitySpiderDeath = 1296, + EntitySpiderHurt = 1297, + EntitySpiderStep = 1298, + EntitySplashPotionBreak = 1299, + EntitySplashPotionThrow = 1300, + EntitySquidAmbient = 1309, + EntitySquidDeath = 1310, + EntitySquidHurt = 1311, + EntitySquidSquirt = 1312, + EntityStrayAmbient = 1322, + EntityStrayDeath = 1323, + EntityStrayHurt = 1324, + EntityStrayStep = 1325, + EntityStriderAmbient = 1254, + EntityStriderDeath = 1257, + EntityStriderEat = 1261, + EntityStriderHappy = 1255, + EntityStriderHurt = 1258, + EntityStriderRetreat = 1256, + EntityStriderSaddle = 1262, + EntityStriderStep = 1259, + EntityStriderStepLava = 1260, + EntityTadpoleDeath = 1329, + EntityTadpoleFlop = 1330, + EntityTadpoleGrowUp = 1331, + EntityTadpoleHurt = 1332, + EntityTntPrimed = 1334, + EntityTropicalFishAmbient = 1348, + EntityTropicalFishDeath = 1349, + EntityTropicalFishFlop = 1350, + EntityTropicalFishHurt = 1351, + EntityTurtleAmbientLand = 1367, + EntityTurtleDeath = 1368, + EntityTurtleDeathBaby = 1369, + EntityTurtleEggBreak = 1370, + EntityTurtleEggCrack = 1371, + EntityTurtleEggHatch = 1372, + EntityTurtleHurt = 1373, + EntityTurtleHurtBaby = 1374, + EntityTurtleLayEgg = 1375, + EntityTurtleShamble = 1376, + EntityTurtleShambleBaby = 1377, + EntityTurtleSwim = 1378, + EntityVexAmbient = 1388, + EntityVexCharge = 1389, + EntityVexDeath = 1390, + EntityVexHurt = 1391, + EntityVillagerAmbient = 1392, + EntityVillagerCelebrate = 1393, + EntityVillagerDeath = 1394, + EntityVillagerHurt = 1395, + EntityVillagerNo = 1396, + EntityVillagerTrade = 1397, + EntityVillagerWorkArmorer = 1399, + EntityVillagerWorkButcher = 1400, + EntityVillagerWorkCartographer = 1401, + EntityVillagerWorkCleric = 1402, + EntityVillagerWorkFarmer = 1403, + EntityVillagerWorkFisherman = 1404, + EntityVillagerWorkFletcher = 1405, + EntityVillagerWorkLeatherworker = 1406, + EntityVillagerWorkLibrarian = 1407, + EntityVillagerWorkMason = 1408, + EntityVillagerWorkShepherd = 1409, + EntityVillagerWorkToolsmith = 1410, + EntityVillagerWorkWeaponsmith = 1411, + EntityVillagerYes = 1398, + EntityVindicatorAmbient = 1412, + EntityVindicatorCelebrate = 1413, + EntityVindicatorDeath = 1414, + EntityVindicatorHurt = 1415, + EntityWanderingTraderAmbient = 1422, + EntityWanderingTraderDeath = 1423, + EntityWanderingTraderDisappeared = 1424, + EntityWanderingTraderDrinkMilk = 1425, + EntityWanderingTraderDrinkPotion = 1426, + EntityWanderingTraderHurt = 1427, + EntityWanderingTraderNo = 1428, + EntityWanderingTraderReappeared = 1429, + EntityWanderingTraderTrade = 1430, + EntityWanderingTraderYes = 1431, + EntityWardenAgitated = 1432, + EntityWardenAmbient = 1433, + EntityWardenAngry = 1434, + EntityWardenAttackImpact = 1435, + EntityWardenDeath = 1436, + EntityWardenDig = 1437, + EntityWardenEmerge = 1438, + EntityWardenHeartbeat = 1439, + EntityWardenHurt = 1440, + EntityWardenListening = 1441, + EntityWardenListeningAngry = 1442, + EntityWardenNearbyClose = 1443, + EntityWardenNearbyCloser = 1444, + EntityWardenNearbyClosest = 1445, + EntityWardenRoar = 1446, + EntityWardenSniff = 1447, + EntityWardenSonicBoom = 1448, + EntityWardenSonicCharge = 1449, + EntityWardenStep = 1450, + EntityWardenTendrilClicks = 1451, + EntityWitchAmbient = 1468, + EntityWitchCelebrate = 1469, + EntityWitchDeath = 1470, + EntityWitchDrink = 1471, + EntityWitchHurt = 1472, + EntityWitchThrow = 1473, + EntityWitherAmbient = 1474, + EntityWitherBreakBlock = 1475, + EntityWitherDeath = 1476, + EntityWitherHurt = 1477, + EntityWitherShoot = 1478, + EntityWitherSpawn = 1483, + EntityWitherSkeletonAmbient = 1479, + EntityWitherSkeletonDeath = 1480, + EntityWitherSkeletonHurt = 1481, + EntityWitherSkeletonStep = 1482, + EntityWolfAmbient = 1484, + EntityWolfDeath = 1485, + EntityWolfGrowl = 1486, + EntityWolfHowl = 1487, + EntityWolfHurt = 1488, + EntityWolfPant = 1489, + EntityWolfShake = 1490, + EntityWolfStep = 1491, + EntityWolfWhine = 1492, + EntityZoglinAmbient = 1511, + EntityZoglinAngry = 1512, + EntityZoglinAttack = 1513, + EntityZoglinDeath = 1514, + EntityZoglinHurt = 1515, + EntityZoglinStep = 1516, + EntityZombieAmbient = 1517, + EntityZombieAttackIronDoor = 1519, + EntityZombieAttackWoodenDoor = 1518, + EntityZombieBreakWoodenDoor = 1520, + EntityZombieConvertedToDrowned = 1521, + EntityZombieDeath = 1522, + EntityZombieDestroyEgg = 1523, + EntityZombieHurt = 1527, + EntityZombieInfect = 1528, + EntityZombieStep = 1533, + EntityZombieHorseAmbient = 1524, + EntityZombieHorseDeath = 1525, + EntityZombieHorseHurt = 1526, + EntityZombieVillagerAmbient = 1534, + EntityZombieVillagerConverted = 1535, + EntityZombieVillagerCure = 1536, + EntityZombieVillagerDeath = 1537, + EntityZombieVillagerHurt = 1538, + EntityZombieVillagerStep = 1539, + EntityZombifiedPiglinAmbient = 1529, + EntityZombifiedPiglinAngry = 1530, + EntityZombifiedPiglinDeath = 1531, + EntityZombifiedPiglinHurt = 1532, + EventRaidHorn = 1104, + IntentionallyEmpty = 894, ItemArmorEquipChain = 55, ItemArmorEquipDiamond = 56, ItemArmorEquipElytra = 57, @@ -1365,127 +1419,127 @@ public enum SoundId : int ItemBottleEmpty = 164, ItemBottleFill = 165, ItemBottleFillDragonbreath = 166, - ItemBrushBrushingGeneric = 168, - ItemBrushBrushingGravel = 170, - ItemBrushBrushingGravelComplete = 172, - ItemBrushBrushingSand = 169, - ItemBrushBrushingSandComplete = 171, - ItemBucketEmpty = 178, - ItemBucketEmptyAxolotl = 179, - ItemBucketEmptyFish = 180, - ItemBucketEmptyLava = 181, - ItemBucketEmptyPowderSnow = 182, - ItemBucketEmptyTadpole = 183, - ItemBucketFill = 184, - ItemBucketFillAxolotl = 185, - ItemBucketFillFish = 186, - ItemBucketFillLava = 187, - ItemBucketFillPowderSnow = 188, - ItemBucketFillTadpole = 189, - ItemBundleDropContents = 190, - ItemBundleInsert = 191, - ItemBundleRemoveOne = 192, - ItemChorusFruitTeleport = 287, - ItemCropPlant = 321, - ItemCrossbowHit = 322, - ItemCrossbowLoadingEnd = 323, - ItemCrossbowLoadingMiddle = 324, - ItemCrossbowLoadingStart = 325, - ItemCrossbowQuickCharge1 = 326, - ItemCrossbowQuickCharge2 = 327, - ItemCrossbowQuickCharge3 = 328, - ItemCrossbowShoot = 329, - ItemDyeUse = 396, - ItemElytraFlying = 406, - ItemFirechargeUse = 446, - ItemFlintandsteelUse = 461, - ItemGlowInkSacUse = 540, - ItemGoatHornPlay = 559, - ItemGoatHornSound0 = 627, - ItemGoatHornSound1 = 628, - ItemGoatHornSound2 = 629, - ItemGoatHornSound3 = 630, - ItemGoatHornSound4 = 631, - ItemGoatHornSound5 = 632, - ItemGoatHornSound6 = 633, - ItemGoatHornSound7 = 634, - ItemHoeTill = 610, - ItemHoneyBottleDrink = 626, - ItemHoneycombWaxOn = 625, - ItemInkSacUse = 666, - ItemLodestoneCompassLock = 720, - ItemNetherWartPlant = 838, - ItemShieldBlock = 1141, - ItemShieldBreak = 1142, - ItemShovelFlatten = 1148, - ItemSpyglassStopUsing = 1266, - ItemSpyglassUse = 1265, - ItemTotemUse = 1293, - ItemTridentHit = 1294, - ItemTridentHitGround = 1295, - ItemTridentReturn = 1296, - ItemTridentRiptide1 = 1297, - ItemTridentRiptide2 = 1298, - ItemTridentRiptide3 = 1299, - ItemTridentThrow = 1300, - ItemTridentThunder = 1301, - MusicCreative = 785, - MusicCredits = 786, - MusicDragon = 803, - MusicEnd = 804, - MusicGame = 805, - MusicMenu = 806, - MusicNetherBasaltDeltas = 807, - MusicNetherCrimsonForest = 808, - MusicNetherNetherWastes = 819, - MusicNetherSoulSandValley = 822, - MusicNetherWarpedForest = 824, - MusicOverworldBadlands = 827, - MusicOverworldBambooJungle = 830, - MusicOverworldCherryGrove = 818, - MusicOverworldDeepDark = 809, - MusicOverworldDesert = 826, - MusicOverworldDripstoneCaves = 810, - MusicOverworldFlowerForest = 825, - MusicOverworldForest = 815, - MusicOverworldFrozenPeaks = 820, - MusicOverworldGrove = 811, - MusicOverworldJaggedPeaks = 812, - MusicOverworldJungle = 828, - MusicOverworldLushCaves = 813, - MusicOverworldMeadow = 817, - MusicOverworldOldGrowthTaiga = 816, - MusicOverworldSnowySlopes = 821, - MusicOverworldSparseJungle = 829, - MusicOverworldStonyPeaks = 823, - MusicOverworldSwamp = 814, - MusicUnderWater = 831, - MusicDisc11 = 788, - MusicDisc13 = 789, - MusicDisc5 = 787, - MusicDiscBlocks = 790, - MusicDiscCat = 791, - MusicDiscChirp = 792, - MusicDiscFar = 793, - MusicDiscMall = 794, - MusicDiscMellohi = 795, - MusicDiscOtherside = 801, - MusicDiscPigstep = 796, - MusicDiscRelic = 802, - MusicDiscStal = 797, - MusicDiscStrad = 798, - MusicDiscWait = 799, - MusicDiscWard = 800, - ParticleSoulEscape = 1206, - UiButtonClick = 1327, - UiCartographyTableTakeResult = 1330, - UiLoomSelectPattern = 1328, - UiLoomTakeResult = 1329, - UiStonecutterSelectRecipe = 1332, - UiStonecutterTakeResult = 1331, - UiToastChallengeComplete = 1333, - UiToastIn = 1334, - UiToastOut = 1335, - WeatherRain = 1402, - WeatherRainAbove = 1403, + ItemBrushBrushingGeneric = 177, + ItemBrushBrushingGravel = 179, + ItemBrushBrushingGravelComplete = 181, + ItemBrushBrushingSand = 178, + ItemBrushBrushingSandComplete = 180, + ItemBucketEmpty = 187, + ItemBucketEmptyAxolotl = 188, + ItemBucketEmptyFish = 189, + ItemBucketEmptyLava = 190, + ItemBucketEmptyPowderSnow = 191, + ItemBucketEmptyTadpole = 192, + ItemBucketFill = 193, + ItemBucketFillAxolotl = 194, + ItemBucketFillFish = 195, + ItemBucketFillLava = 196, + ItemBucketFillPowderSnow = 197, + ItemBucketFillTadpole = 198, + ItemBundleDropContents = 199, + ItemBundleInsert = 200, + ItemBundleRemoveOne = 201, + ItemChorusFruitTeleport = 296, + ItemCropPlant = 348, + ItemCrossbowHit = 349, + ItemCrossbowLoadingEnd = 350, + ItemCrossbowLoadingMiddle = 351, + ItemCrossbowLoadingStart = 352, + ItemCrossbowQuickCharge1 = 353, + ItemCrossbowQuickCharge2 = 354, + ItemCrossbowQuickCharge3 = 355, + ItemCrossbowShoot = 356, + ItemDyeUse = 425, + ItemElytraFlying = 435, + ItemFirechargeUse = 475, + ItemFlintandsteelUse = 490, + ItemGlowInkSacUse = 569, + ItemGoatHornPlay = 588, + ItemGoatHornSound0 = 667, + ItemGoatHornSound1 = 668, + ItemGoatHornSound2 = 669, + ItemGoatHornSound3 = 670, + ItemGoatHornSound4 = 671, + ItemGoatHornSound5 = 672, + ItemGoatHornSound6 = 673, + ItemGoatHornSound7 = 674, + ItemHoeTill = 650, + ItemHoneyBottleDrink = 666, + ItemHoneycombWaxOn = 665, + ItemInkSacUse = 706, + ItemLodestoneCompassLock = 760, + ItemNetherWartPlant = 878, + ItemShieldBlock = 1183, + ItemShieldBreak = 1184, + ItemShovelFlatten = 1190, + ItemSpyglassStopUsing = 1308, + ItemSpyglassUse = 1307, + ItemTotemUse = 1335, + ItemTridentHit = 1336, + ItemTridentHitGround = 1337, + ItemTridentReturn = 1338, + ItemTridentRiptide1 = 1339, + ItemTridentRiptide2 = 1340, + ItemTridentRiptide3 = 1341, + ItemTridentThrow = 1342, + ItemTridentThunder = 1343, + MusicCreative = 825, + MusicCredits = 826, + MusicDragon = 843, + MusicEnd = 844, + MusicGame = 845, + MusicMenu = 846, + MusicNetherBasaltDeltas = 847, + MusicNetherCrimsonForest = 848, + MusicNetherNetherWastes = 859, + MusicNetherSoulSandValley = 862, + MusicNetherWarpedForest = 864, + MusicOverworldBadlands = 867, + MusicOverworldBambooJungle = 870, + MusicOverworldCherryGrove = 858, + MusicOverworldDeepDark = 849, + MusicOverworldDesert = 866, + MusicOverworldDripstoneCaves = 850, + MusicOverworldFlowerForest = 865, + MusicOverworldForest = 855, + MusicOverworldFrozenPeaks = 860, + MusicOverworldGrove = 851, + MusicOverworldJaggedPeaks = 852, + MusicOverworldJungle = 868, + MusicOverworldLushCaves = 853, + MusicOverworldMeadow = 857, + MusicOverworldOldGrowthTaiga = 856, + MusicOverworldSnowySlopes = 861, + MusicOverworldSparseJungle = 869, + MusicOverworldStonyPeaks = 863, + MusicOverworldSwamp = 854, + MusicUnderWater = 871, + MusicDisc11 = 828, + MusicDisc13 = 829, + MusicDisc5 = 827, + MusicDiscBlocks = 830, + MusicDiscCat = 831, + MusicDiscChirp = 832, + MusicDiscFar = 833, + MusicDiscMall = 834, + MusicDiscMellohi = 835, + MusicDiscOtherside = 841, + MusicDiscPigstep = 836, + MusicDiscRelic = 842, + MusicDiscStal = 837, + MusicDiscStrad = 838, + MusicDiscWait = 839, + MusicDiscWard = 840, + ParticleSoulEscape = 1248, + UiButtonClick = 1379, + UiCartographyTableTakeResult = 1382, + UiLoomSelectPattern = 1380, + UiLoomTakeResult = 1381, + UiStonecutterSelectRecipe = 1384, + UiStonecutterTakeResult = 1383, + UiToastChallengeComplete = 1385, + UiToastIn = 1386, + UiToastOut = 1387, + WeatherRain = 1455, + WeatherRainAbove = 1456, } diff --git a/Obsidian.API/_Types/ChatMessage.cs b/Obsidian.API/_Types/ChatMessage.cs index fd4c8fe52..443bb15fc 100644 --- a/Obsidian.API/_Types/ChatMessage.cs +++ b/Obsidian.API/_Types/ChatMessage.cs @@ -1,15 +1,14 @@ using System.Text.Json; -using System.Text.Json.Serialization; namespace Obsidian.API; -public class ChatMessage +public sealed class ChatMessage { - public string Text { get; set; } + public string? Text { get; set; } - public string Translate { get; set; } + public string? Translate { get; set; } - public HexColor Color { get; set; } + public HexColor? Color { get; set; } public bool Bold { get; set; } @@ -21,15 +20,15 @@ public class ChatMessage public bool Obfuscated { get; set; } - public string Insertion { get; set; } + public string? Insertion { get; set; } - public ClickComponent ClickEvent { get; set; } + public ClickComponent? ClickEvent { get; set; } - public HoverComponent HoverEvent { get; set; } + public HoverComponent? HoverEvent { get; set; } - public List Extra { get; private set; } + public List? Extra { get; private set; } - public List With { get; private set; } + public List? With { get; private set; } public IEnumerable GetExtraChatComponents() => With ?? Enumerable.Empty(); @@ -123,9 +122,9 @@ public static ChatMessage TranslatableChatMessageType(string text, ChatColor col /// The value which will be executed with the action. /// The translate value. /// The given . - public static ChatMessage Click(ChatMessage message, EClickAction action, string value, string translate = "") + public static ChatMessage Click(ChatMessage message, ClickAction action, string value) { - message.ClickEvent = new ClickComponent(action, value, translate); + message.ClickEvent = new ClickComponent { Action = action, Value = value }; return message; } @@ -137,9 +136,9 @@ public static ChatMessage Click(ChatMessage message, EClickAction action, string /// The contents which will be executed with the action. /// The translate value. /// The given . - public static ChatMessage Hover(ChatMessage message, EHoverAction action, object contents, string translate = "") + public static ChatMessage Hover(ChatMessage message, HoverAction action, IHoverContent contents) { - message.HoverEvent = new HoverComponent(action, contents, translate); + message.HoverEvent = new HoverComponent { Action = action, Contents = contents }; return message; } diff --git a/Obsidian.API/_Types/ClickComponent.cs b/Obsidian.API/_Types/ClickComponent.cs index a9682cdb4..0bb3a49de 100644 --- a/Obsidian.API/_Types/ClickComponent.cs +++ b/Obsidian.API/_Types/ClickComponent.cs @@ -1,17 +1,13 @@ namespace Obsidian.API; -public class ClickComponent +public sealed class ClickComponent { - public EClickAction Action { get; set; } + public required ClickAction Action { get; set; } - public string Value { get; set; } + public required string Value { get; set; } +} - public string Translate { get; set; } +public interface ClickComponentValue +{ - public ClickComponent(EClickAction action, string value, string translate = "") - { - Action = action; - Value = value; - Translate = translate; - } } diff --git a/Obsidian.API/_Types/HoverComponent.cs b/Obsidian.API/_Types/HoverComponent.cs index 974ee0b35..68fbb7875 100644 --- a/Obsidian.API/_Types/HoverComponent.cs +++ b/Obsidian.API/_Types/HoverComponent.cs @@ -1,17 +1,25 @@ namespace Obsidian.API; -public class HoverComponent +public sealed class HoverComponent { - public EHoverAction Action { get; set; } + public required HoverAction Action { get; set; } - public object Contents { get; set; } + public required IHoverContent Contents { get; set; } +} + +public sealed class HoverChatContent : IHoverContent +{ + public required ChatMessage ChatMessage { get; set; } +} - public string Translate { get; set; } +public sealed class HoverItemContent : IHoverContent +{ + public required ItemStack Item { get; set; } +} - public HoverComponent(EHoverAction action, object contents, string translate = "") - { - Action = action; - Contents = contents; - Translate = translate; - } +public sealed class HoverEntityComponent : IHoverContent +{ + public required IEntity Entity { get; set; } } + +public interface IHoverContent { } diff --git a/Obsidian.API/_Types/Inventory/ItemStack.cs b/Obsidian.API/_Types/Inventory/ItemStack.cs index 7754e06fe..dea0cd2c3 100644 --- a/Obsidian.API/_Types/Inventory/ItemStack.cs +++ b/Obsidian.API/_Types/Inventory/ItemStack.cs @@ -59,7 +59,7 @@ public ItemStack(Material type, short count = 1, ItemMeta? meta = null) public static bool operator !=(ItemStack? left, ItemStack? right) => !(left == right); - public bool Equals(ItemStack other) => (this.Type, this.ItemMeta) == (other?.Type, other?.ItemMeta); + public bool Equals(ItemStack? other) => (this.Type, this.ItemMeta) == (other?.Type, other?.ItemMeta); public override bool Equals(object? obj) => obj is ItemStack itemStack && Equals(itemStack); diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs index e0fc623dc..3db2b6e4b 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStateBuilder.cs @@ -104,6 +104,10 @@ private static void CreateStateBuilders(Block[] blocks, SourceProductionContext var blockName = block.Name; + //TODO THIS NEEDS TO BE MOVED SOMEWHERE + if (blockName == "TrialSpawner") + blockName = "TrialSpawnerBlock"; + var fullName = $"{blockName}StateBuilder"; var stateBuilder = new CodeBuilder() diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs index 4db12dc5a..58cd8668d 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.BlockStates.cs @@ -12,6 +12,10 @@ private static void CreateBlockStates(Block[] blocks, SourceProductionContext ct var blockName = block.Name; + //TODO THIS NEEDS TO BE MOVED SOMEWHERE + if (blockName == "TrialSpawner") + blockName = "TrialSpawnerBlock"; + var builder = new CodeBuilder() .Namespace("Obsidian.API.BlockStates") .Line() diff --git a/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs b/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs index 72733aa68..b6fa0d6b2 100644 --- a/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs +++ b/Obsidian.SourceGenerators/Registry/BlocksGenerator.Blocks.cs @@ -1,4 +1,5 @@ using Obsidian.SourceGenerators.Registry.Models; +using System.Diagnostics; namespace Obsidian.SourceGenerators.Registry; @@ -18,6 +19,8 @@ private static void GenerateBlocks(Block[] blocks, SourceProductionContext ctx) if (blockName == "Obsidian") blockName = "ObsidianBlock"; + if (blockName == "TrialSpawner") + blockName = "TrialSpawnerBlock"; var builder = new CodeBuilder() .Using("Obsidian.API") @@ -42,6 +45,7 @@ private static void GenerateBlocks(Block[] blocks, SourceProductionContext ctx) if (block.Properties.Length > 0) { builder.Line().Method($"public {blockName}(int stateId)"); + builder.Line($"this.State = new {blockName}StateBuilder(stateId).Build();"); builder.EndScope(); @@ -62,4 +66,5 @@ private static void GenerateBlocks(Block[] blocks, SourceProductionContext ctx) ctx.AddSource("BlocksRegistry.Blocks.g.cs", blocksBuilder.ToString()); } + } diff --git a/Obsidian.SourceGenerators/Registry/EntityGenerator.cs b/Obsidian.SourceGenerators/Registry/EntityGenerator.cs index 76f0a40f6..3b729f1ac 100644 --- a/Obsidian.SourceGenerators/Registry/EntityGenerator.cs +++ b/Obsidian.SourceGenerators/Registry/EntityGenerator.cs @@ -29,7 +29,7 @@ public void Initialize(IncrementalGeneratorInitializationContext ctx) var compilation = ctx.CompilationProvider.Combine(classDeclarations.Collect()).Combine(jsonFiles.Collect()); ctx.RegisterSourceOutput(compilation, - (spc, src) => this.Generate(spc, src.Left.Left, src.Left.Right, src.Right.First())); + (spc, src) => this.Generate(spc, src.Left.Left, src.Left.Right, src.Right.FirstOrDefault())); } private static ClassDeclarationSyntax? TransformData(ClassDeclarationSyntax? syntax, GeneratorSyntaxContext ctx) @@ -45,8 +45,10 @@ public void Initialize(IncrementalGeneratorInitializationContext ctx) return symbol.GetAttributes().Any(x => x.AttributeClass?.Name == AttributeName) ? syntax : null; } - private void Generate(SourceProductionContext context, Compilation compilation, ImmutableArray typeList, string entitiesJson) + private void Generate(SourceProductionContext context, Compilation compilation, ImmutableArray typeList, string? entitiesJson) { + if (entitiesJson == null) return; + using var document = JsonDocument.Parse(entitiesJson); var elements = document.RootElement; @@ -85,6 +87,7 @@ private void Generate(SourceProductionContext context, Compilation compilation, } this.GenerateClasses(classes, document, context); + } private void GenerateClasses(List classes, JsonDocument document, SourceProductionContext context) diff --git a/Obsidian/Assets/advancements.json b/Obsidian/Assets/advancements.json index a3ecf48d4..2f05a9511 100644 --- a/Obsidian/Assets/advancements.json +++ b/Obsidian/Assets/advancements.json @@ -852,17 +852,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.adventuring_time.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:diamond_boots", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.adventuring_time.title" } @@ -1044,7 +1041,6 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.arbalistic.description" }, @@ -1054,7 +1050,6 @@ "item": "minecraft:crossbow", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.arbalistic.title" } @@ -1077,16 +1072,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.avoid_vibration.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:sculk_sensor" }, - "show_toast": true, "title": { "translate": "advancements.adventure.avoid_vibration.title" } @@ -1122,16 +1113,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.bullseye.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:target" }, - "show_toast": true, "title": { "translate": "advancements.adventure.bullseye.title" } @@ -1171,17 +1159,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:decorated_pot", "nbt": "{BlockEntityTag:{id:\"minecraft:decorated_pot\",sherds:[\"minecraft:brick\",\"minecraft:heart_pottery_sherd\",\"minecraft:brick\",\"minecraft:explorer_pottery_sherd\"]}}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title" } @@ -1230,16 +1214,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.fall_from_world_height.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:water_bucket" }, - "show_toast": true, "title": { "translate": "advancements.adventure.fall_from_world_height.title" } @@ -1259,7 +1239,6 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.hero_of_the_village.description" }, @@ -1267,9 +1246,8 @@ "hidden": true, "icon": { "item": "minecraft:white_banner", - "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}'}}" + "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.hero_of_the_village.title" } @@ -1295,16 +1273,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.honey_block_slide.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:honey_block" }, - "show_toast": true, "title": { "translate": "advancements.adventure.honey_block_slide.title" } @@ -1797,17 +1771,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.kill_all_mobs.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:diamond_sword", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.kill_all_mobs.title" } @@ -2402,17 +2373,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.kill_a_mob.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:iron_sword", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.kill_a_mob.title" } @@ -2465,16 +2432,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:sculk_catalyst" }, - "show_toast": true, "title": { "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title" } @@ -2522,16 +2486,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:lightning_rod" }, - "show_toast": true, "title": { "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title" } @@ -2558,17 +2518,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.ol_betsy.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:crossbow", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.ol_betsy.title" } @@ -2609,16 +2565,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.play_jukebox_in_meadows.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:jukebox" }, - "show_toast": true, "title": { "translate": "advancements.adventure.play_jukebox_in_meadows.title" } @@ -2811,16 +2763,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:chiseled_bookshelf" }, - "show_toast": true, "title": { "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title" } @@ -2848,8 +2796,6 @@ "description": { "translate": "advancements.adventure.root.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:map" }, @@ -2917,29 +2863,25 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.salvage_sherd.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:brush", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.salvage_sherd.title" } }, "requirements": [ [ - "trail_ruins_rare", - "ocean_ruin_cold", "desert_pyramid", + "desert_well", + "ocean_ruin_cold", "ocean_ruin_warm", - "trail_ruins_common", - "desert_well" + "trail_ruins_rare", + "trail_ruins_common" ], [ "has_sherd" @@ -2970,17 +2912,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.shoot_arrow.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:bow", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.shoot_arrow.title" } @@ -3000,16 +2938,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.sleep_in_bed.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:red_bed" }, - "show_toast": true, "title": { "translate": "advancements.adventure.sleep_in_bed.title" } @@ -3053,16 +2987,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.sniper_duel.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:arrow" }, - "show_toast": true, "title": { "translate": "advancements.adventure.sniper_duel.title" } @@ -3106,16 +3037,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.spyglass_at_dragon.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:spyglass" }, - "show_toast": true, "title": { "translate": "advancements.adventure.spyglass_at_dragon.title" } @@ -3156,16 +3083,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.spyglass_at_ghast.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:spyglass" }, - "show_toast": true, "title": { "translate": "advancements.adventure.spyglass_at_ghast.title" } @@ -3206,16 +3129,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.spyglass_at_parrot.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:spyglass" }, - "show_toast": true, "title": { "translate": "advancements.adventure.spyglass_at_parrot.title" } @@ -3246,16 +3165,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.summon_iron_golem.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:carved_pumpkin" }, - "show_toast": true, "title": { "translate": "advancements.adventure.summon_iron_golem.title" } @@ -3290,17 +3206,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.throw_trident.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:trident", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.throw_trident.title" } @@ -3327,16 +3239,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.totem_of_undying.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:totem_of_undying" }, - "show_toast": true, "title": { "translate": "advancements.adventure.totem_of_undying.title" } @@ -3356,16 +3265,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.trade.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:emerald" }, - "show_toast": true, "title": { "translate": "advancements.adventure.trade.title" } @@ -3402,16 +3307,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.trade_at_world_height.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:emerald" }, - "show_toast": true, "title": { "translate": "advancements.adventure.trade_at_world_height.title" } @@ -3476,41 +3377,38 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:silence_armor_trim_smithing_template" }, - "show_toast": true, "title": { "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title" } }, "requirements": [ [ - "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim" ], [ - "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim" ], [ - "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim" ], [ - "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim" ], [ - "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim" ], [ "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim" ], [ - "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim" + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim" ], [ "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" @@ -3622,37 +3520,33 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.trim_with_any_armor_pattern.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:dune_armor_trim_smithing_template" }, - "show_toast": true, "title": { "translate": "advancements.adventure.trim_with_any_armor_pattern.title" } }, "requirements": [ [ - "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim", - "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim", "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim" ] ], @@ -3688,17 +3582,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.two_birds_one_arrow.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:crossbow", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.two_birds_one_arrow.title" } @@ -3734,17 +3625,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.very_very_frightening.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:trident", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.very_very_frightening.title" } @@ -3772,7 +3659,7 @@ "items": [ "minecraft:white_banner" ], - "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}'}}" + "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" } } } @@ -3783,17 +3670,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.voluntary_exile.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:white_banner", - "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}'}}" + "nbt": "{BlockEntityTag:{Patterns:[{Color:9,Pattern:\"mr\"},{Color:8,Pattern:\"bs\"},{Color:7,Pattern:\"cs\"},{Color:8,Pattern:\"bo\"},{Color:15,Pattern:\"ms\"},{Color:8,Pattern:\"hh\"},{Color:8,Pattern:\"mc\"},{Color:15,Pattern:\"bo\"}],id:\"minecraft:banner\"},HideFlags:32,display:{Name:'{\"translate\":\"block.minecraft.ominous_banner\",\"color\":\"gold\"}'}}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.voluntary_exile.title" } @@ -3837,17 +3721,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:leather_boots", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title" } @@ -3880,17 +3760,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.adventure.whos_the_pillager_now.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:crossbow", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.adventure.whos_the_pillager_now.title" } @@ -3919,16 +3795,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.dragon_breath.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:dragon_breath" }, - "show_toast": true, "title": { "translate": "advancements.end.dragon_breath.title" } @@ -3957,16 +3830,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.dragon_egg.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:dragon_egg" }, - "show_toast": true, "title": { "translate": "advancements.end.dragon_egg.title" } @@ -3995,17 +3865,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.elytra.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:elytra", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.end.elytra.title" } @@ -4028,16 +3895,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.enter_end_gateway.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:ender_pearl" }, - "show_toast": true, "title": { "translate": "advancements.end.enter_end_gateway.title" } @@ -4070,16 +3933,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.find_end_city.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:purpur_block" }, - "show_toast": true, "title": { "translate": "advancements.end.find_end_city.title" } @@ -4110,16 +3969,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.kill_dragon.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:dragon_head" }, - "show_toast": true, "title": { "translate": "advancements.end.kill_dragon.title" } @@ -4146,16 +4001,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.levitate.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:shulker_shell" }, - "show_toast": true, "title": { "translate": "advancements.end.levitate.title" } @@ -4189,16 +4041,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.end.respawn_dragon.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:end_crystal" }, - "show_toast": true, "title": { "translate": "advancements.end.respawn_dragon.title" } @@ -4225,8 +4074,6 @@ "description": { "translate": "advancements.end.root.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:end_stone" }, @@ -4272,16 +4119,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:note_block" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title" } @@ -4312,16 +4156,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.allay_deliver_item_to_player.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:cookie" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.allay_deliver_item_to_player.title" } @@ -4348,16 +4189,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.axolotl_in_a_bucket.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:axolotl_bucket" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.axolotl_in_a_bucket.title" } @@ -4774,16 +4611,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.balanced_diet.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:apple" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.balanced_diet.title" } @@ -5283,16 +5117,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.breed_all_animals.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:golden_carrot" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.breed_all_animals.title" } @@ -5384,16 +5215,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.breed_an_animal.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:wheat" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.breed_an_animal.title" } @@ -5597,16 +5424,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.complete_catalogue.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:cod" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.complete_catalogue.title" } @@ -5676,16 +5500,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.feed_snifflet.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:torchflower_seeds" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.feed_snifflet.title" } @@ -5742,17 +5563,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.fishy_business.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:fishing_rod", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.fishy_business.title" } @@ -5794,16 +5611,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.froglights.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:verdant_froglight" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.froglights.title" } @@ -5834,16 +5648,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.kill_axolotl_target.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:tropical_fish_bucket" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.kill_axolotl_target.title" } @@ -5929,16 +5739,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.leash_all_frog_variants.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:lead" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.leash_all_frog_variants.title" } @@ -5984,16 +5790,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.make_a_sign_glow.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:glow_ink_sac" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.make_a_sign_glow.title" } @@ -6022,17 +5824,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.netherite_hoe.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:netherite_hoe", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.netherite_hoe.title" } @@ -6064,16 +5863,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.obtain_sniffer_egg.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:sniffer_egg" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.obtain_sniffer_egg.title" } @@ -6112,16 +5908,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.plant_any_sniffer_seed.description" }, - "frame": "task", "hidden": true, "icon": { "item": "minecraft:pitcher_pod" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.plant_any_sniffer_seed.title" } @@ -6216,16 +6009,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.plant_seed.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:wheat" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.plant_seed.title" } @@ -6267,16 +6056,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.ride_a_boat_with_a_goat.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:oak_boat" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.ride_a_boat_with_a_goat.title" } @@ -6300,8 +6085,6 @@ "description": { "translate": "advancements.husbandry.root.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:hay_block" }, @@ -6346,16 +6129,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.safely_harvest_honey.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:honey_bottle" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.safely_harvest_honey.title" } @@ -6389,16 +6168,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.silk_touch_nest.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:bee_nest" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.silk_touch_nest.title" } @@ -6455,16 +6230,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.tactical_fishing.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:pufferfish_bucket" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.tactical_fishing.title" } @@ -6494,16 +6265,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.tadpole_in_a_bucket.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:tadpole_bucket" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.tadpole_in_a_bucket.title" } @@ -6523,16 +6290,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.tame_an_animal.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:lead" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.tame_an_animal.title" } @@ -6570,7 +6333,27 @@ "minecraft:waxed_cut_copper_stairs", "minecraft:waxed_exposed_cut_copper_stairs", "minecraft:waxed_weathered_cut_copper_stairs", - "minecraft:waxed_oxidized_cut_copper_stairs" + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb" ] } } @@ -6594,17 +6377,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.wax_off.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:stone_axe", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.wax_off.title" } @@ -6642,7 +6421,27 @@ "minecraft:cut_copper_stairs", "minecraft:exposed_cut_copper_stairs", "minecraft:weathered_cut_copper_stairs", - "minecraft:oxidized_cut_copper_stairs" + "minecraft:oxidized_cut_copper_stairs", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb" ] } } @@ -6661,16 +6460,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.husbandry.wax_on.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:honeycomb" }, - "show_toast": true, "title": { "translate": "advancements.husbandry.wax_on.title" } @@ -6721,7 +6516,6 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.all_effects.description" }, @@ -6730,7 +6524,6 @@ "icon": { "item": "minecraft:bucket" }, - "show_toast": true, "title": { "translate": "advancements.nether.all_effects.title" } @@ -6770,16 +6563,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.all_potions.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:milk_bucket" }, - "show_toast": true, "title": { "translate": "advancements.nether.all_potions.title" } @@ -6802,16 +6592,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.brew_potion.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:potion" }, - "show_toast": true, "title": { "translate": "advancements.nether.brew_potion.title" } @@ -6856,16 +6642,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.charge_respawn_anchor.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:respawn_anchor" }, - "show_toast": true, "title": { "translate": "advancements.nether.charge_respawn_anchor.title" } @@ -6890,16 +6672,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.create_beacon.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:beacon" }, - "show_toast": true, "title": { "translate": "advancements.nether.create_beacon.title" } @@ -6922,16 +6700,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.create_full_beacon.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:beacon" }, - "show_toast": true, "title": { "translate": "advancements.nether.create_full_beacon.title" } @@ -7122,16 +6897,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.distract_piglin.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:gold_ingot" }, - "show_toast": true, "title": { "translate": "advancements.nether.distract_piglin.title" } @@ -7229,17 +7000,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.explore_nether.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:netherite_boots", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.nether.explore_nether.title" } @@ -7281,16 +7049,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.fast_travel.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:map" }, - "show_toast": true, "title": { "translate": "advancements.nether.fast_travel.title" } @@ -7326,16 +7091,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.find_bastion.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:polished_blackstone_bricks" }, - "show_toast": true, "title": { "translate": "advancements.nether.find_bastion.title" } @@ -7368,16 +7129,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.find_fortress.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:nether_bricks" }, - "show_toast": true, "title": { "translate": "advancements.nether.find_fortress.title" } @@ -7406,16 +7163,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.get_wither_skull.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:wither_skeleton_skull" }, - "show_toast": true, "title": { "translate": "advancements.nether.get_wither_skull.title" } @@ -7456,16 +7209,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.loot_bastion.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:chest" }, - "show_toast": true, "title": { "translate": "advancements.nether.loot_bastion.title" } @@ -7512,17 +7261,14 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.netherite_armor.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:netherite_chestplate", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.nether.netherite_armor.title" } @@ -7554,16 +7300,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.obtain_ancient_debris.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:ancient_debris" }, - "show_toast": true, "title": { "translate": "advancements.nether.obtain_ancient_debris.title" } @@ -7592,16 +7334,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.obtain_blaze_rod.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:blaze_rod" }, - "show_toast": true, "title": { "translate": "advancements.nether.obtain_blaze_rod.title" } @@ -7630,16 +7368,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.obtain_crying_obsidian.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:crying_obsidian" }, - "show_toast": true, "title": { "translate": "advancements.nether.obtain_crying_obsidian.title" } @@ -7681,16 +7415,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.return_to_sender.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:fire_charge" }, - "show_toast": true, "title": { "translate": "advancements.nether.return_to_sender.title" } @@ -7731,17 +7462,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.ride_strider.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:warped_fungus_on_a_stick", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.nether.ride_strider.title" } @@ -7782,17 +7509,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.ride_strider_in_overworld_lava.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:warped_fungus_on_a_stick", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.nether.ride_strider_in_overworld_lava.title" } @@ -7819,8 +7542,6 @@ "description": { "translate": "advancements.nether.root.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:red_nether_bricks" }, @@ -7855,16 +7576,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.summon_wither.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:nether_star" }, - "show_toast": true, "title": { "translate": "advancements.nether.summon_wither.title" } @@ -7898,16 +7615,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.uneasy_alliance.description" }, "frame": "challenge", - "hidden": false, "icon": { "item": "minecraft:ghast_tear" }, - "show_toast": true, "title": { "translate": "advancements.nether.uneasy_alliance.title" } @@ -7952,16 +7666,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.nether.use_lodestone.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:lodestone" }, - "show_toast": true, "title": { "translate": "advancements.nether.use_lodestone.title" } @@ -7983,8 +7693,7 @@ [ "impossible" ] - ], - "sends_telemetry_event": false + ] }, "minecraft:story/cure_zombie_villager": { "parent": "minecraft:story/enter_the_nether", @@ -7994,16 +7703,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.cure_zombie_villager.description" }, "frame": "goal", - "hidden": false, "icon": { "item": "minecraft:golden_apple" }, - "show_toast": true, "title": { "translate": "advancements.story.cure_zombie_villager.title" } @@ -8036,17 +7742,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.deflect_arrow.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:shield", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.deflect_arrow.title" } @@ -8062,21 +7764,16 @@ "parent": "minecraft:story/mine_diamond", "criteria": { "enchanted_item": { - "conditions": {}, "trigger": "minecraft:enchanted_item" } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.enchant_item.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:enchanted_book" }, - "show_toast": true, "title": { "translate": "advancements.story.enchant_item.title" } @@ -8099,16 +7796,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.enter_the_end.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:end_stone" }, - "show_toast": true, "title": { "translate": "advancements.story.enter_the_end.title" } @@ -8131,17 +7824,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.enter_the_nether.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:flint_and_steel", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.enter_the_nether.title" } @@ -8174,16 +7863,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.follow_ender_eye.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:ender_eye" }, - "show_toast": true, "title": { "translate": "advancements.story.follow_ender_eye.title" } @@ -8212,16 +7897,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.form_obsidian.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:obsidian" }, - "show_toast": true, "title": { "translate": "advancements.story.form_obsidian.title" } @@ -8250,17 +7931,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.iron_tools.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:iron_pickaxe", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.iron_tools.title" } @@ -8289,16 +7966,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.lava_bucket.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:lava_bucket" }, - "show_toast": true, "title": { "translate": "advancements.story.lava_bucket.title" } @@ -8327,16 +8000,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.mine_diamond.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:diamond" }, - "show_toast": true, "title": { "translate": "advancements.story.mine_diamond.title" } @@ -8363,17 +8032,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.mine_stone.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:wooden_pickaxe", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.mine_stone.title" } @@ -8438,17 +8103,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.obtain_armor.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:iron_chestplate", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.obtain_armor.title" } @@ -8484,8 +8145,6 @@ "description": { "translate": "advancements.story.root.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:grass_block" }, @@ -8554,17 +8213,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.shiny_gear.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:diamond_chestplate", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.shiny_gear.title" } @@ -8596,16 +8251,12 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.smelt_iron.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:iron_ingot" }, - "show_toast": true, "title": { "translate": "advancements.story.smelt_iron.title" } @@ -8634,17 +8285,13 @@ } }, "display": { - "announce_to_chat": true, "description": { "translate": "advancements.story.upgrade_tools.description" }, - "frame": "task", - "hidden": false, "icon": { "item": "minecraft:stone_pickaxe", "nbt": "{Damage:0}" }, - "show_toast": true, "title": { "translate": "advancements.story.upgrade_tools.title" } @@ -8688,8 +8335,7 @@ "recipes": [ "minecraft:blaze_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/brewing_stand": { "parent": "minecraft:recipes/root", @@ -8723,8 +8369,7 @@ "recipes": [ "minecraft:brewing_stand" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/cauldron": { "parent": "minecraft:recipes/root", @@ -8758,8 +8403,7 @@ "recipes": [ "minecraft:cauldron" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/fermented_spider_eye": { "parent": "minecraft:recipes/root", @@ -8793,8 +8437,7 @@ "recipes": [ "minecraft:fermented_spider_eye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/glass_bottle": { "parent": "minecraft:recipes/root", @@ -8828,8 +8471,7 @@ "recipes": [ "minecraft:glass_bottle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/glistering_melon_slice": { "parent": "minecraft:recipes/root", @@ -8863,8 +8505,7 @@ "recipes": [ "minecraft:glistering_melon_slice" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/golden_carrot": { "parent": "minecraft:recipes/root", @@ -8898,8 +8539,7 @@ "recipes": [ "minecraft:golden_carrot" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/brewing/magma_cream": { "parent": "minecraft:recipes/root", @@ -8933,8 +8573,7 @@ "recipes": [ "minecraft:magma_cream" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/acacia_planks": { "parent": "minecraft:recipes/root", @@ -8966,8 +8605,7 @@ "recipes": [ "minecraft:acacia_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/acacia_slab": { "parent": "minecraft:recipes/root", @@ -9001,8 +8639,7 @@ "recipes": [ "minecraft:acacia_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/acacia_stairs": { "parent": "minecraft:recipes/root", @@ -9036,8 +8673,7 @@ "recipes": [ "minecraft:acacia_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/acacia_wood": { "parent": "minecraft:recipes/root", @@ -9071,8 +8707,7 @@ "recipes": [ "minecraft:acacia_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/amethyst_block": { "parent": "minecraft:recipes/root", @@ -9106,8 +8741,7 @@ "recipes": [ "minecraft:amethyst_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/andesite": { "parent": "minecraft:recipes/root", @@ -9141,8 +8775,7 @@ "recipes": [ "minecraft:andesite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/andesite_slab": { "parent": "minecraft:recipes/root", @@ -9176,8 +8809,7 @@ "recipes": [ "minecraft:andesite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/andesite_slab_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -9211,8 +8843,7 @@ "recipes": [ "minecraft:andesite_slab_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/andesite_stairs": { "parent": "minecraft:recipes/root", @@ -9246,8 +8877,7 @@ "recipes": [ "minecraft:andesite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/andesite_stairs_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -9281,8 +8911,7 @@ "recipes": [ "minecraft:andesite_stairs_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_block": { "parent": "minecraft:recipes/root", @@ -9316,8 +8945,7 @@ "recipes": [ "minecraft:bamboo_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_mosaic_slab": { "parent": "minecraft:recipes/root", @@ -9351,8 +8979,7 @@ "recipes": [ "minecraft:bamboo_mosaic_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_mosaic_stairs": { "parent": "minecraft:recipes/root", @@ -9386,8 +9013,7 @@ "recipes": [ "minecraft:bamboo_mosaic_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_planks": { "parent": "minecraft:recipes/root", @@ -9419,8 +9045,7 @@ "recipes": [ "minecraft:bamboo_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_slab": { "parent": "minecraft:recipes/root", @@ -9454,8 +9079,7 @@ "recipes": [ "minecraft:bamboo_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bamboo_stairs": { "parent": "minecraft:recipes/root", @@ -9489,8 +9113,7 @@ "recipes": [ "minecraft:bamboo_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/birch_planks": { "parent": "minecraft:recipes/root", @@ -9522,8 +9145,7 @@ "recipes": [ "minecraft:birch_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/birch_slab": { "parent": "minecraft:recipes/root", @@ -9557,8 +9179,7 @@ "recipes": [ "minecraft:birch_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/birch_stairs": { "parent": "minecraft:recipes/root", @@ -9592,8 +9213,7 @@ "recipes": [ "minecraft:birch_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/birch_wood": { "parent": "minecraft:recipes/root", @@ -9627,8 +9247,7 @@ "recipes": [ "minecraft:birch_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blackstone_slab": { "parent": "minecraft:recipes/root", @@ -9662,8 +9281,7 @@ "recipes": [ "minecraft:blackstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -9697,8 +9315,7 @@ "recipes": [ "minecraft:blackstone_slab_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blackstone_stairs": { "parent": "minecraft:recipes/root", @@ -9732,8 +9349,7 @@ "recipes": [ "minecraft:blackstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -9767,8 +9383,7 @@ "recipes": [ "minecraft:blackstone_stairs_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/black_concrete_powder": { "parent": "minecraft:recipes/root", @@ -9815,8 +9430,7 @@ "recipes": [ "minecraft:black_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/black_stained_glass": { "parent": "minecraft:recipes/root", @@ -9850,8 +9464,7 @@ "recipes": [ "minecraft:black_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/black_terracotta": { "parent": "minecraft:recipes/root", @@ -9885,8 +9498,7 @@ "recipes": [ "minecraft:black_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blue_concrete_powder": { "parent": "minecraft:recipes/root", @@ -9933,8 +9545,7 @@ "recipes": [ "minecraft:blue_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blue_ice": { "parent": "minecraft:recipes/root", @@ -9968,8 +9579,7 @@ "recipes": [ "minecraft:blue_ice" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blue_stained_glass": { "parent": "minecraft:recipes/root", @@ -10003,8 +9613,7 @@ "recipes": [ "minecraft:blue_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/blue_terracotta": { "parent": "minecraft:recipes/root", @@ -10038,8 +9647,7 @@ "recipes": [ "minecraft:blue_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bone_block": { "parent": "minecraft:recipes/root", @@ -10073,8 +9681,7 @@ "recipes": [ "minecraft:bone_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bookshelf": { "parent": "minecraft:recipes/root", @@ -10108,8 +9715,7 @@ "recipes": [ "minecraft:bookshelf" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/bricks": { "parent": "minecraft:recipes/root", @@ -10143,8 +9749,7 @@ "recipes": [ "minecraft:bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brick_slab": { "parent": "minecraft:recipes/root", @@ -10178,8 +9783,7 @@ "recipes": [ "minecraft:brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brick_slab_from_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -10213,8 +9817,7 @@ "recipes": [ "minecraft:brick_slab_from_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brick_stairs": { "parent": "minecraft:recipes/root", @@ -10248,8 +9851,7 @@ "recipes": [ "minecraft:brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brick_stairs_from_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -10283,8 +9885,7 @@ "recipes": [ "minecraft:brick_stairs_from_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brown_concrete_powder": { "parent": "minecraft:recipes/root", @@ -10331,8 +9932,7 @@ "recipes": [ "minecraft:brown_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brown_stained_glass": { "parent": "minecraft:recipes/root", @@ -10366,8 +9966,7 @@ "recipes": [ "minecraft:brown_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/brown_terracotta": { "parent": "minecraft:recipes/root", @@ -10401,8 +10000,7 @@ "recipes": [ "minecraft:brown_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cherry_planks": { "parent": "minecraft:recipes/root", @@ -10434,8 +10032,7 @@ "recipes": [ "minecraft:cherry_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cherry_slab": { "parent": "minecraft:recipes/root", @@ -10469,8 +10066,7 @@ "recipes": [ "minecraft:cherry_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cherry_stairs": { "parent": "minecraft:recipes/root", @@ -10504,8 +10100,7 @@ "recipes": [ "minecraft:cherry_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cherry_wood": { "parent": "minecraft:recipes/root", @@ -10539,8 +10134,7 @@ "recipes": [ "minecraft:cherry_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_bookshelf": { "parent": "minecraft:recipes/root", @@ -10574,8 +10168,7 @@ "recipes": [ "minecraft:chiseled_bookshelf" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_deepslate": { "parent": "minecraft:recipes/root", @@ -10609,8 +10202,7 @@ "recipes": [ "minecraft:chiseled_deepslate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -10644,8 +10236,7 @@ "recipes": [ "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_nether_bricks": { "parent": "minecraft:recipes/root", @@ -10679,8 +10270,7 @@ "recipes": [ "minecraft:chiseled_nether_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -10714,8 +10304,7 @@ "recipes": [ "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_polished_blackstone": { "parent": "minecraft:recipes/root", @@ -10749,8 +10338,7 @@ "recipes": [ "minecraft:chiseled_polished_blackstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -10784,8 +10372,7 @@ "recipes": [ "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -10819,8 +10406,7 @@ "recipes": [ "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_quartz_block": { "parent": "minecraft:recipes/root", @@ -10880,8 +10466,7 @@ "recipes": [ "minecraft:chiseled_quartz_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -10915,8 +10500,7 @@ "recipes": [ "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_red_sandstone": { "parent": "minecraft:recipes/root", @@ -10976,8 +10560,7 @@ "recipes": [ "minecraft:chiseled_red_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -11011,8 +10594,7 @@ "recipes": [ "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_sandstone": { "parent": "minecraft:recipes/root", @@ -11046,8 +10628,7 @@ "recipes": [ "minecraft:chiseled_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -11081,8 +10662,7 @@ "recipes": [ "minecraft:chiseled_sandstone_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_stone_bricks": { "parent": "minecraft:recipes/root", @@ -11114,8 +10694,7 @@ "recipes": [ "minecraft:chiseled_stone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -11149,8 +10728,7 @@ "recipes": [ "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting": { "parent": "minecraft:recipes/root", @@ -11184,8 +10762,7 @@ "recipes": [ "minecraft:chiseled_stone_bricks_stone_from_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/clay": { "parent": "minecraft:recipes/root", @@ -11219,8 +10796,7 @@ "recipes": [ "minecraft:clay" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/coal_block": { "parent": "minecraft:recipes/root", @@ -11254,8 +10830,7 @@ "recipes": [ "minecraft:coal_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/coarse_dirt": { "parent": "minecraft:recipes/root", @@ -11289,8 +10864,7 @@ "recipes": [ "minecraft:coarse_dirt" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobbled_deepslate_slab": { "parent": "minecraft:recipes/root", @@ -11324,8 +10898,7 @@ "recipes": [ "minecraft:cobbled_deepslate_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -11359,8 +10932,7 @@ "recipes": [ "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobbled_deepslate_stairs": { "parent": "minecraft:recipes/root", @@ -11394,8 +10966,7 @@ "recipes": [ "minecraft:cobbled_deepslate_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -11429,8 +11000,7 @@ "recipes": [ "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobblestone_slab": { "parent": "minecraft:recipes/root", @@ -11464,8 +11034,7 @@ "recipes": [ "minecraft:cobblestone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -11499,8 +11068,7 @@ "recipes": [ "minecraft:cobblestone_slab_from_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobblestone_stairs": { "parent": "minecraft:recipes/root", @@ -11534,8 +11102,7 @@ "recipes": [ "minecraft:cobblestone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -11569,8 +11136,7 @@ "recipes": [ "minecraft:cobblestone_stairs_from_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/copper_block": { "parent": "minecraft:recipes/root", @@ -11604,8 +11170,7 @@ "recipes": [ "minecraft:copper_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cracked_deepslate_bricks": { "parent": "minecraft:recipes/root", @@ -11639,8 +11204,7 @@ "recipes": [ "minecraft:cracked_deepslate_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cracked_deepslate_tiles": { "parent": "minecraft:recipes/root", @@ -11674,8 +11238,7 @@ "recipes": [ "minecraft:cracked_deepslate_tiles" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cracked_nether_bricks": { "parent": "minecraft:recipes/root", @@ -11709,8 +11272,7 @@ "recipes": [ "minecraft:cracked_nether_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cracked_polished_blackstone_bricks": { "parent": "minecraft:recipes/root", @@ -11744,8 +11306,7 @@ "recipes": [ "minecraft:cracked_polished_blackstone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cracked_stone_bricks": { "parent": "minecraft:recipes/root", @@ -11779,8 +11340,7 @@ "recipes": [ "minecraft:cracked_stone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/crimson_hyphae": { "parent": "minecraft:recipes/root", @@ -11814,8 +11374,7 @@ "recipes": [ "minecraft:crimson_hyphae" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/crimson_planks": { "parent": "minecraft:recipes/root", @@ -11847,8 +11406,7 @@ "recipes": [ "minecraft:crimson_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/crimson_slab": { "parent": "minecraft:recipes/root", @@ -11882,8 +11440,7 @@ "recipes": [ "minecraft:crimson_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/crimson_stairs": { "parent": "minecraft:recipes/root", @@ -11917,8 +11474,7 @@ "recipes": [ "minecraft:crimson_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper": { "parent": "minecraft:recipes/root", @@ -11952,8 +11508,7 @@ "recipes": [ "minecraft:cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_from_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -11987,8 +11542,7 @@ "recipes": [ "minecraft:cut_copper_from_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -12022,8 +11576,7 @@ "recipes": [ "minecraft:cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -12057,8 +11610,7 @@ "recipes": [ "minecraft:cut_copper_slab_from_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -12092,8 +11644,7 @@ "recipes": [ "minecraft:cut_copper_slab_from_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -12127,8 +11678,7 @@ "recipes": [ "minecraft:cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -12162,8 +11712,7 @@ "recipes": [ "minecraft:cut_copper_stairs_from_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -12197,8 +11746,7 @@ "recipes": [ "minecraft:cut_copper_stairs_from_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_red_sandstone": { "parent": "minecraft:recipes/root", @@ -12232,8 +11780,7 @@ "recipes": [ "minecraft:cut_red_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12267,8 +11814,7 @@ "recipes": [ "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_red_sandstone_slab": { "parent": "minecraft:recipes/root", @@ -12302,8 +11848,7 @@ "recipes": [ "minecraft:cut_red_sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12337,8 +11882,7 @@ "recipes": [ "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12372,8 +11916,7 @@ "recipes": [ "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_sandstone": { "parent": "minecraft:recipes/root", @@ -12407,8 +11950,7 @@ "recipes": [ "minecraft:cut_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12442,8 +11984,7 @@ "recipes": [ "minecraft:cut_sandstone_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_sandstone_slab": { "parent": "minecraft:recipes/root", @@ -12477,8 +12018,7 @@ "recipes": [ "minecraft:cut_sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12512,8 +12052,7 @@ "recipes": [ "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -12547,8 +12086,7 @@ "recipes": [ "minecraft:cut_sandstone_slab_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cyan_concrete_powder": { "parent": "minecraft:recipes/root", @@ -12595,8 +12133,7 @@ "recipes": [ "minecraft:cyan_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cyan_stained_glass": { "parent": "minecraft:recipes/root", @@ -12630,8 +12167,7 @@ "recipes": [ "minecraft:cyan_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/cyan_terracotta": { "parent": "minecraft:recipes/root", @@ -12665,8 +12201,7 @@ "recipes": [ "minecraft:cyan_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_oak_planks": { "parent": "minecraft:recipes/root", @@ -12698,8 +12233,7 @@ "recipes": [ "minecraft:dark_oak_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_oak_slab": { "parent": "minecraft:recipes/root", @@ -12733,8 +12267,7 @@ "recipes": [ "minecraft:dark_oak_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_oak_stairs": { "parent": "minecraft:recipes/root", @@ -12768,8 +12301,7 @@ "recipes": [ "minecraft:dark_oak_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_oak_wood": { "parent": "minecraft:recipes/root", @@ -12803,8 +12335,7 @@ "recipes": [ "minecraft:dark_oak_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_prismarine": { "parent": "minecraft:recipes/root", @@ -12838,8 +12369,7 @@ "recipes": [ "minecraft:dark_prismarine" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_prismarine_slab": { "parent": "minecraft:recipes/root", @@ -12873,8 +12403,7 @@ "recipes": [ "minecraft:dark_prismarine_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -12908,8 +12437,7 @@ "recipes": [ "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_prismarine_stairs": { "parent": "minecraft:recipes/root", @@ -12943,8 +12471,7 @@ "recipes": [ "minecraft:dark_prismarine_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -12978,8 +12505,7 @@ "recipes": [ "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate": { "parent": "minecraft:recipes/root", @@ -13013,8 +12539,7 @@ "recipes": [ "minecraft:deepslate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_bricks": { "parent": "minecraft:recipes/root", @@ -13048,8 +12573,7 @@ "recipes": [ "minecraft:deepslate_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13083,8 +12607,7 @@ "recipes": [ "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13118,8 +12641,7 @@ "recipes": [ "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_slab": { "parent": "minecraft:recipes/root", @@ -13153,8 +12675,7 @@ "recipes": [ "minecraft:deepslate_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13188,8 +12709,7 @@ "recipes": [ "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -13223,8 +12743,7 @@ "recipes": [ "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13258,8 +12777,7 @@ "recipes": [ "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_stairs": { "parent": "minecraft:recipes/root", @@ -13293,8 +12811,7 @@ "recipes": [ "minecraft:deepslate_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13328,8 +12845,7 @@ "recipes": [ "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -13363,8 +12879,7 @@ "recipes": [ "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13398,8 +12913,7 @@ "recipes": [ "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tiles": { "parent": "minecraft:recipes/root", @@ -13433,8 +12947,7 @@ "recipes": [ "minecraft:deepslate_tiles" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13468,8 +12981,7 @@ "recipes": [ "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -13503,8 +13015,7 @@ "recipes": [ "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13538,8 +13049,7 @@ "recipes": [ "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_slab": { "parent": "minecraft:recipes/root", @@ -13573,8 +13083,7 @@ "recipes": [ "minecraft:deepslate_tile_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13608,8 +13117,7 @@ "recipes": [ "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -13643,8 +13151,7 @@ "recipes": [ "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting": { "parent": "minecraft:recipes/root", @@ -13678,8 +13185,7 @@ "recipes": [ "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13713,8 +13219,7 @@ "recipes": [ "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_stairs": { "parent": "minecraft:recipes/root", @@ -13748,8 +13253,7 @@ "recipes": [ "minecraft:deepslate_tile_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13783,8 +13287,7 @@ "recipes": [ "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -13818,8 +13321,7 @@ "recipes": [ "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting": { "parent": "minecraft:recipes/root", @@ -13853,8 +13355,7 @@ "recipes": [ "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -13888,8 +13389,7 @@ "recipes": [ "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diamond_block": { "parent": "minecraft:recipes/root", @@ -13923,8 +13423,7 @@ "recipes": [ "minecraft:diamond_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diorite": { "parent": "minecraft:recipes/root", @@ -13958,8 +13457,7 @@ "recipes": [ "minecraft:diorite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diorite_slab": { "parent": "minecraft:recipes/root", @@ -13993,8 +13491,7 @@ "recipes": [ "minecraft:diorite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diorite_slab_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -14028,8 +13525,7 @@ "recipes": [ "minecraft:diorite_slab_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diorite_stairs": { "parent": "minecraft:recipes/root", @@ -14063,8 +13559,7 @@ "recipes": [ "minecraft:diorite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/diorite_stairs_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -14098,8 +13593,7 @@ "recipes": [ "minecraft:diorite_stairs_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dried_kelp_block": { "parent": "minecraft:recipes/root", @@ -14133,8 +13627,7 @@ "recipes": [ "minecraft:dried_kelp_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dripstone_block": { "parent": "minecraft:recipes/root", @@ -14168,8 +13661,7 @@ "recipes": [ "minecraft:dripstone_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_black_bed": { "parent": "minecraft:recipes/root", @@ -14203,8 +13695,7 @@ "recipes": [ "minecraft:dye_black_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_black_carpet": { "parent": "minecraft:recipes/root", @@ -14238,8 +13729,7 @@ "recipes": [ "minecraft:dye_black_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_black_wool": { "parent": "minecraft:recipes/root", @@ -14273,8 +13763,7 @@ "recipes": [ "minecraft:dye_black_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_blue_bed": { "parent": "minecraft:recipes/root", @@ -14308,8 +13797,7 @@ "recipes": [ "minecraft:dye_blue_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_blue_carpet": { "parent": "minecraft:recipes/root", @@ -14343,8 +13831,7 @@ "recipes": [ "minecraft:dye_blue_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_blue_wool": { "parent": "minecraft:recipes/root", @@ -14378,8 +13865,7 @@ "recipes": [ "minecraft:dye_blue_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_brown_bed": { "parent": "minecraft:recipes/root", @@ -14413,8 +13899,7 @@ "recipes": [ "minecraft:dye_brown_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_brown_carpet": { "parent": "minecraft:recipes/root", @@ -14448,8 +13933,7 @@ "recipes": [ "minecraft:dye_brown_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_brown_wool": { "parent": "minecraft:recipes/root", @@ -14483,8 +13967,7 @@ "recipes": [ "minecraft:dye_brown_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_cyan_bed": { "parent": "minecraft:recipes/root", @@ -14518,8 +14001,7 @@ "recipes": [ "minecraft:dye_cyan_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_cyan_carpet": { "parent": "minecraft:recipes/root", @@ -14553,8 +14035,7 @@ "recipes": [ "minecraft:dye_cyan_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_cyan_wool": { "parent": "minecraft:recipes/root", @@ -14588,8 +14069,7 @@ "recipes": [ "minecraft:dye_cyan_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_gray_bed": { "parent": "minecraft:recipes/root", @@ -14623,8 +14103,7 @@ "recipes": [ "minecraft:dye_gray_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_gray_carpet": { "parent": "minecraft:recipes/root", @@ -14658,8 +14137,7 @@ "recipes": [ "minecraft:dye_gray_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_gray_wool": { "parent": "minecraft:recipes/root", @@ -14693,8 +14171,7 @@ "recipes": [ "minecraft:dye_gray_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_green_bed": { "parent": "minecraft:recipes/root", @@ -14728,8 +14205,7 @@ "recipes": [ "minecraft:dye_green_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_green_carpet": { "parent": "minecraft:recipes/root", @@ -14763,8 +14239,7 @@ "recipes": [ "minecraft:dye_green_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_green_wool": { "parent": "minecraft:recipes/root", @@ -14798,8 +14273,7 @@ "recipes": [ "minecraft:dye_green_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_blue_bed": { "parent": "minecraft:recipes/root", @@ -14833,8 +14307,7 @@ "recipes": [ "minecraft:dye_light_blue_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_blue_carpet": { "parent": "minecraft:recipes/root", @@ -14868,8 +14341,7 @@ "recipes": [ "minecraft:dye_light_blue_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_blue_wool": { "parent": "minecraft:recipes/root", @@ -14903,8 +14375,7 @@ "recipes": [ "minecraft:dye_light_blue_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_gray_bed": { "parent": "minecraft:recipes/root", @@ -14938,8 +14409,7 @@ "recipes": [ "minecraft:dye_light_gray_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_gray_carpet": { "parent": "minecraft:recipes/root", @@ -14973,8 +14443,7 @@ "recipes": [ "minecraft:dye_light_gray_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_light_gray_wool": { "parent": "minecraft:recipes/root", @@ -15008,8 +14477,7 @@ "recipes": [ "minecraft:dye_light_gray_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_lime_bed": { "parent": "minecraft:recipes/root", @@ -15043,8 +14511,7 @@ "recipes": [ "minecraft:dye_lime_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_lime_carpet": { "parent": "minecraft:recipes/root", @@ -15078,8 +14545,7 @@ "recipes": [ "minecraft:dye_lime_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_lime_wool": { "parent": "minecraft:recipes/root", @@ -15113,8 +14579,7 @@ "recipes": [ "minecraft:dye_lime_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_magenta_bed": { "parent": "minecraft:recipes/root", @@ -15148,8 +14613,7 @@ "recipes": [ "minecraft:dye_magenta_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_magenta_carpet": { "parent": "minecraft:recipes/root", @@ -15183,8 +14647,7 @@ "recipes": [ "minecraft:dye_magenta_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_magenta_wool": { "parent": "minecraft:recipes/root", @@ -15218,8 +14681,7 @@ "recipes": [ "minecraft:dye_magenta_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_orange_bed": { "parent": "minecraft:recipes/root", @@ -15253,8 +14715,7 @@ "recipes": [ "minecraft:dye_orange_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_orange_carpet": { "parent": "minecraft:recipes/root", @@ -15288,8 +14749,7 @@ "recipes": [ "minecraft:dye_orange_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_orange_wool": { "parent": "minecraft:recipes/root", @@ -15323,8 +14783,7 @@ "recipes": [ "minecraft:dye_orange_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_pink_bed": { "parent": "minecraft:recipes/root", @@ -15358,8 +14817,7 @@ "recipes": [ "minecraft:dye_pink_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_pink_carpet": { "parent": "minecraft:recipes/root", @@ -15393,8 +14851,7 @@ "recipes": [ "minecraft:dye_pink_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_pink_wool": { "parent": "minecraft:recipes/root", @@ -15428,8 +14885,7 @@ "recipes": [ "minecraft:dye_pink_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_purple_bed": { "parent": "minecraft:recipes/root", @@ -15463,8 +14919,7 @@ "recipes": [ "minecraft:dye_purple_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_purple_carpet": { "parent": "minecraft:recipes/root", @@ -15498,8 +14953,7 @@ "recipes": [ "minecraft:dye_purple_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_purple_wool": { "parent": "minecraft:recipes/root", @@ -15533,8 +14987,7 @@ "recipes": [ "minecraft:dye_purple_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_red_bed": { "parent": "minecraft:recipes/root", @@ -15568,8 +15021,7 @@ "recipes": [ "minecraft:dye_red_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_red_carpet": { "parent": "minecraft:recipes/root", @@ -15603,8 +15055,7 @@ "recipes": [ "minecraft:dye_red_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_red_wool": { "parent": "minecraft:recipes/root", @@ -15638,8 +15089,7 @@ "recipes": [ "minecraft:dye_red_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_white_bed": { "parent": "minecraft:recipes/root", @@ -15673,8 +15123,7 @@ "recipes": [ "minecraft:dye_white_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_white_carpet": { "parent": "minecraft:recipes/root", @@ -15708,8 +15157,7 @@ "recipes": [ "minecraft:dye_white_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_white_wool": { "parent": "minecraft:recipes/root", @@ -15743,8 +15191,7 @@ "recipes": [ "minecraft:dye_white_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_yellow_bed": { "parent": "minecraft:recipes/root", @@ -15778,8 +15225,7 @@ "recipes": [ "minecraft:dye_yellow_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_yellow_carpet": { "parent": "minecraft:recipes/root", @@ -15813,8 +15259,7 @@ "recipes": [ "minecraft:dye_yellow_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/dye_yellow_wool": { "parent": "minecraft:recipes/root", @@ -15848,8 +15293,7 @@ "recipes": [ "minecraft:dye_yellow_wool" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/emerald_block": { "parent": "minecraft:recipes/root", @@ -15883,8 +15327,7 @@ "recipes": [ "minecraft:emerald_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_bricks": { "parent": "minecraft:recipes/root", @@ -15918,8 +15361,7 @@ "recipes": [ "minecraft:end_stone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -15953,8 +15395,7 @@ "recipes": [ "minecraft:end_stone_bricks_from_end_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_slab": { "parent": "minecraft:recipes/root", @@ -15988,8 +15429,7 @@ "recipes": [ "minecraft:end_stone_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_slab_from_end_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -16023,8 +15463,7 @@ "recipes": [ "minecraft:end_stone_brick_slab_from_end_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -16058,8 +15497,7 @@ "recipes": [ "minecraft:end_stone_brick_slab_from_end_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_stairs": { "parent": "minecraft:recipes/root", @@ -16093,8 +15531,7 @@ "recipes": [ "minecraft:end_stone_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_stairs_from_end_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -16128,8 +15565,7 @@ "recipes": [ "minecraft:end_stone_brick_stairs_from_end_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -16163,8 +15599,7 @@ "recipes": [ "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper": { "parent": "minecraft:recipes/root", @@ -16198,8 +15633,7 @@ "recipes": [ "minecraft:exposed_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -16233,8 +15667,7 @@ "recipes": [ "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -16268,8 +15701,7 @@ "recipes": [ "minecraft:exposed_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -16303,8 +15735,7 @@ "recipes": [ "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -16338,8 +15769,7 @@ "recipes": [ "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -16373,8 +15803,7 @@ "recipes": [ "minecraft:exposed_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -16408,8 +15837,7 @@ "recipes": [ "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -16443,8 +15871,7 @@ "recipes": [ "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/glass": { "parent": "minecraft:recipes/root", @@ -16476,8 +15903,7 @@ "recipes": [ "minecraft:glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/glowstone": { "parent": "minecraft:recipes/root", @@ -16511,8 +15937,7 @@ "recipes": [ "minecraft:glowstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/gold_block": { "parent": "minecraft:recipes/root", @@ -16546,8 +15971,7 @@ "recipes": [ "minecraft:gold_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/granite": { "parent": "minecraft:recipes/root", @@ -16581,8 +16005,7 @@ "recipes": [ "minecraft:granite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/granite_slab": { "parent": "minecraft:recipes/root", @@ -16616,8 +16039,7 @@ "recipes": [ "minecraft:granite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/granite_slab_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -16651,8 +16073,7 @@ "recipes": [ "minecraft:granite_slab_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/granite_stairs": { "parent": "minecraft:recipes/root", @@ -16686,8 +16107,7 @@ "recipes": [ "minecraft:granite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/granite_stairs_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -16721,8 +16141,7 @@ "recipes": [ "minecraft:granite_stairs_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/gray_concrete_powder": { "parent": "minecraft:recipes/root", @@ -16769,8 +16188,7 @@ "recipes": [ "minecraft:gray_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/gray_stained_glass": { "parent": "minecraft:recipes/root", @@ -16804,8 +16222,7 @@ "recipes": [ "minecraft:gray_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/gray_terracotta": { "parent": "minecraft:recipes/root", @@ -16839,8 +16256,7 @@ "recipes": [ "minecraft:gray_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/green_concrete_powder": { "parent": "minecraft:recipes/root", @@ -16887,8 +16303,7 @@ "recipes": [ "minecraft:green_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/green_stained_glass": { "parent": "minecraft:recipes/root", @@ -16922,8 +16337,7 @@ "recipes": [ "minecraft:green_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/green_terracotta": { "parent": "minecraft:recipes/root", @@ -16957,8 +16371,7 @@ "recipes": [ "minecraft:green_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/hay_block": { "parent": "minecraft:recipes/root", @@ -16992,8 +16405,7 @@ "recipes": [ "minecraft:hay_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/iron_block": { "parent": "minecraft:recipes/root", @@ -17027,8 +16439,7 @@ "recipes": [ "minecraft:iron_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/jack_o_lantern": { "parent": "minecraft:recipes/root", @@ -17062,8 +16473,7 @@ "recipes": [ "minecraft:jack_o_lantern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/jungle_planks": { "parent": "minecraft:recipes/root", @@ -17095,8 +16505,7 @@ "recipes": [ "minecraft:jungle_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/jungle_slab": { "parent": "minecraft:recipes/root", @@ -17130,8 +16539,7 @@ "recipes": [ "minecraft:jungle_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/jungle_stairs": { "parent": "minecraft:recipes/root", @@ -17165,8 +16573,7 @@ "recipes": [ "minecraft:jungle_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/jungle_wood": { "parent": "minecraft:recipes/root", @@ -17200,8 +16607,7 @@ "recipes": [ "minecraft:jungle_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/lapis_block": { "parent": "minecraft:recipes/root", @@ -17235,8 +16641,7 @@ "recipes": [ "minecraft:lapis_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_blue_concrete_powder": { "parent": "minecraft:recipes/root", @@ -17283,8 +16688,7 @@ "recipes": [ "minecraft:light_blue_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_blue_stained_glass": { "parent": "minecraft:recipes/root", @@ -17318,8 +16722,7 @@ "recipes": [ "minecraft:light_blue_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_blue_terracotta": { "parent": "minecraft:recipes/root", @@ -17353,8 +16756,7 @@ "recipes": [ "minecraft:light_blue_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_gray_concrete_powder": { "parent": "minecraft:recipes/root", @@ -17401,8 +16803,7 @@ "recipes": [ "minecraft:light_gray_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_gray_stained_glass": { "parent": "minecraft:recipes/root", @@ -17436,8 +16837,7 @@ "recipes": [ "minecraft:light_gray_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/light_gray_terracotta": { "parent": "minecraft:recipes/root", @@ -17471,8 +16871,7 @@ "recipes": [ "minecraft:light_gray_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/lime_concrete_powder": { "parent": "minecraft:recipes/root", @@ -17519,8 +16918,7 @@ "recipes": [ "minecraft:lime_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/lime_stained_glass": { "parent": "minecraft:recipes/root", @@ -17554,8 +16952,7 @@ "recipes": [ "minecraft:lime_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/lime_terracotta": { "parent": "minecraft:recipes/root", @@ -17589,8 +16986,7 @@ "recipes": [ "minecraft:lime_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/magenta_concrete_powder": { "parent": "minecraft:recipes/root", @@ -17637,8 +17033,7 @@ "recipes": [ "minecraft:magenta_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/magenta_stained_glass": { "parent": "minecraft:recipes/root", @@ -17672,8 +17067,7 @@ "recipes": [ "minecraft:magenta_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/magenta_terracotta": { "parent": "minecraft:recipes/root", @@ -17707,8 +17101,7 @@ "recipes": [ "minecraft:magenta_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/magma_block": { "parent": "minecraft:recipes/root", @@ -17742,8 +17135,7 @@ "recipes": [ "minecraft:magma_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mangrove_planks": { "parent": "minecraft:recipes/root", @@ -17775,8 +17167,7 @@ "recipes": [ "minecraft:mangrove_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mangrove_slab": { "parent": "minecraft:recipes/root", @@ -17810,8 +17201,7 @@ "recipes": [ "minecraft:mangrove_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mangrove_stairs": { "parent": "minecraft:recipes/root", @@ -17845,8 +17235,7 @@ "recipes": [ "minecraft:mangrove_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mangrove_wood": { "parent": "minecraft:recipes/root", @@ -17880,8 +17269,7 @@ "recipes": [ "minecraft:mangrove_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/melon": { "parent": "minecraft:recipes/root", @@ -17915,8 +17303,7 @@ "recipes": [ "minecraft:melon" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_from_moss_block": { "parent": "minecraft:recipes/root", @@ -17950,8 +17337,7 @@ "recipes": [ "minecraft:mossy_cobblestone_from_moss_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_from_vine": { "parent": "minecraft:recipes/root", @@ -17985,8 +17371,7 @@ "recipes": [ "minecraft:mossy_cobblestone_from_vine" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_slab": { "parent": "minecraft:recipes/root", @@ -18020,8 +17405,7 @@ "recipes": [ "minecraft:mossy_cobblestone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -18055,8 +17439,7 @@ "recipes": [ "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_stairs": { "parent": "minecraft:recipes/root", @@ -18090,8 +17473,7 @@ "recipes": [ "minecraft:mossy_cobblestone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -18125,8 +17507,7 @@ "recipes": [ "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_bricks_from_moss_block": { "parent": "minecraft:recipes/root", @@ -18160,8 +17541,7 @@ "recipes": [ "minecraft:mossy_stone_bricks_from_moss_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_bricks_from_vine": { "parent": "minecraft:recipes/root", @@ -18195,8 +17575,7 @@ "recipes": [ "minecraft:mossy_stone_bricks_from_vine" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_brick_slab": { "parent": "minecraft:recipes/root", @@ -18230,8 +17609,7 @@ "recipes": [ "minecraft:mossy_stone_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -18265,8 +17643,7 @@ "recipes": [ "minecraft:mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_brick_stairs": { "parent": "minecraft:recipes/root", @@ -18300,8 +17677,7 @@ "recipes": [ "minecraft:mossy_stone_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -18335,8 +17711,7 @@ "recipes": [ "minecraft:mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/muddy_mangrove_roots": { "parent": "minecraft:recipes/root", @@ -18370,8 +17745,7 @@ "recipes": [ "minecraft:muddy_mangrove_roots" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mud_bricks": { "parent": "minecraft:recipes/root", @@ -18405,8 +17779,7 @@ "recipes": [ "minecraft:mud_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mud_brick_slab": { "parent": "minecraft:recipes/root", @@ -18440,8 +17813,7 @@ "recipes": [ "minecraft:mud_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -18475,8 +17847,7 @@ "recipes": [ "minecraft:mud_brick_slab_from_mud_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mud_brick_stairs": { "parent": "minecraft:recipes/root", @@ -18510,8 +17881,7 @@ "recipes": [ "minecraft:mud_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -18545,8 +17915,7 @@ "recipes": [ "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/netherite_block": { "parent": "minecraft:recipes/root", @@ -18580,8 +17949,7 @@ "recipes": [ "minecraft:netherite_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_bricks": { "parent": "minecraft:recipes/root", @@ -18615,8 +17983,7 @@ "recipes": [ "minecraft:nether_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_brick_slab": { "parent": "minecraft:recipes/root", @@ -18650,8 +18017,7 @@ "recipes": [ "minecraft:nether_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -18685,8 +18051,7 @@ "recipes": [ "minecraft:nether_brick_slab_from_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_brick_stairs": { "parent": "minecraft:recipes/root", @@ -18720,8 +18085,7 @@ "recipes": [ "minecraft:nether_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -18755,8 +18119,7 @@ "recipes": [ "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/nether_wart_block": { "parent": "minecraft:recipes/root", @@ -18790,8 +18153,7 @@ "recipes": [ "minecraft:nether_wart_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oak_planks": { "parent": "minecraft:recipes/root", @@ -18823,8 +18185,7 @@ "recipes": [ "minecraft:oak_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oak_slab": { "parent": "minecraft:recipes/root", @@ -18858,8 +18219,7 @@ "recipes": [ "minecraft:oak_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oak_stairs": { "parent": "minecraft:recipes/root", @@ -18893,8 +18253,7 @@ "recipes": [ "minecraft:oak_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oak_wood": { "parent": "minecraft:recipes/root", @@ -18928,8 +18287,7 @@ "recipes": [ "minecraft:oak_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/orange_concrete_powder": { "parent": "minecraft:recipes/root", @@ -18976,8 +18334,7 @@ "recipes": [ "minecraft:orange_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/orange_stained_glass": { "parent": "minecraft:recipes/root", @@ -19011,8 +18368,7 @@ "recipes": [ "minecraft:orange_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/orange_terracotta": { "parent": "minecraft:recipes/root", @@ -19046,8 +18402,7 @@ "recipes": [ "minecraft:orange_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper": { "parent": "minecraft:recipes/root", @@ -19081,8 +18436,7 @@ "recipes": [ "minecraft:oxidized_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -19116,8 +18470,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -19151,8 +18504,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -19186,8 +18538,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -19221,8 +18572,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -19256,8 +18606,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -19291,8 +18640,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -19326,8 +18674,7 @@ "recipes": [ "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/packed_ice": { "parent": "minecraft:recipes/root", @@ -19361,8 +18708,7 @@ "recipes": [ "minecraft:packed_ice" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/packed_mud": { "parent": "minecraft:recipes/root", @@ -19396,8 +18742,7 @@ "recipes": [ "minecraft:packed_mud" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/pink_concrete_powder": { "parent": "minecraft:recipes/root", @@ -19444,8 +18789,7 @@ "recipes": [ "minecraft:pink_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/pink_stained_glass": { "parent": "minecraft:recipes/root", @@ -19479,8 +18823,7 @@ "recipes": [ "minecraft:pink_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/pink_terracotta": { "parent": "minecraft:recipes/root", @@ -19514,8 +18857,7 @@ "recipes": [ "minecraft:pink_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite": { "parent": "minecraft:recipes/root", @@ -19549,8 +18891,7 @@ "recipes": [ "minecraft:polished_andesite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -19584,8 +18925,7 @@ "recipes": [ "minecraft:polished_andesite_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_slab": { "parent": "minecraft:recipes/root", @@ -19619,8 +18959,7 @@ "recipes": [ "minecraft:polished_andesite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -19654,8 +18993,7 @@ "recipes": [ "minecraft:polished_andesite_slab_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -19689,8 +19027,7 @@ "recipes": [ "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_stairs": { "parent": "minecraft:recipes/root", @@ -19724,8 +19061,7 @@ "recipes": [ "minecraft:polished_andesite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -19759,8 +19095,7 @@ "recipes": [ "minecraft:polished_andesite_stairs_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -19794,8 +19129,7 @@ "recipes": [ "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_basalt": { "parent": "minecraft:recipes/root", @@ -19829,8 +19163,7 @@ "recipes": [ "minecraft:polished_basalt" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_basalt_from_basalt_stonecutting": { "parent": "minecraft:recipes/root", @@ -19864,8 +19197,7 @@ "recipes": [ "minecraft:polished_basalt_from_basalt_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone": { "parent": "minecraft:recipes/root", @@ -19899,8 +19231,7 @@ "recipes": [ "minecraft:polished_blackstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_bricks": { "parent": "minecraft:recipes/root", @@ -19934,8 +19265,7 @@ "recipes": [ "minecraft:polished_blackstone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -19969,8 +19299,7 @@ "recipes": [ "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20004,8 +19333,7 @@ "recipes": [ "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_slab": { "parent": "minecraft:recipes/root", @@ -20039,8 +19367,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20074,8 +19401,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -20109,8 +19435,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20144,8 +19469,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_stairs": { "parent": "minecraft:recipes/root", @@ -20179,8 +19503,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20214,8 +19537,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -20249,8 +19571,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20284,8 +19605,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20319,8 +19639,7 @@ "recipes": [ "minecraft:polished_blackstone_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_slab": { "parent": "minecraft:recipes/root", @@ -20354,8 +19673,7 @@ "recipes": [ "minecraft:polished_blackstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20389,8 +19707,7 @@ "recipes": [ "minecraft:polished_blackstone_slab_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20424,8 +19741,7 @@ "recipes": [ "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_stairs": { "parent": "minecraft:recipes/root", @@ -20459,8 +19775,7 @@ "recipes": [ "minecraft:polished_blackstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20494,8 +19809,7 @@ "recipes": [ "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -20529,8 +19843,7 @@ "recipes": [ "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate": { "parent": "minecraft:recipes/root", @@ -20564,8 +19877,7 @@ "recipes": [ "minecraft:polished_deepslate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -20599,8 +19911,7 @@ "recipes": [ "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_slab": { "parent": "minecraft:recipes/root", @@ -20634,8 +19945,7 @@ "recipes": [ "minecraft:polished_deepslate_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -20669,8 +19979,7 @@ "recipes": [ "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -20704,8 +20013,7 @@ "recipes": [ "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_stairs": { "parent": "minecraft:recipes/root", @@ -20739,8 +20047,7 @@ "recipes": [ "minecraft:polished_deepslate_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -20774,8 +20081,7 @@ "recipes": [ "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -20809,8 +20115,7 @@ "recipes": [ "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite": { "parent": "minecraft:recipes/root", @@ -20844,8 +20149,7 @@ "recipes": [ "minecraft:polished_diorite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -20879,8 +20183,7 @@ "recipes": [ "minecraft:polished_diorite_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_slab": { "parent": "minecraft:recipes/root", @@ -20914,8 +20217,7 @@ "recipes": [ "minecraft:polished_diorite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -20949,8 +20251,7 @@ "recipes": [ "minecraft:polished_diorite_slab_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -20984,8 +20285,7 @@ "recipes": [ "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_stairs": { "parent": "minecraft:recipes/root", @@ -21019,8 +20319,7 @@ "recipes": [ "minecraft:polished_diorite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21054,8 +20353,7 @@ "recipes": [ "minecraft:polished_diorite_stairs_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21089,8 +20387,7 @@ "recipes": [ "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite": { "parent": "minecraft:recipes/root", @@ -21124,8 +20421,7 @@ "recipes": [ "minecraft:polished_granite" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21159,8 +20455,7 @@ "recipes": [ "minecraft:polished_granite_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_slab": { "parent": "minecraft:recipes/root", @@ -21194,8 +20489,7 @@ "recipes": [ "minecraft:polished_granite_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_slab_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21229,8 +20523,7 @@ "recipes": [ "minecraft:polished_granite_slab_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21264,8 +20557,7 @@ "recipes": [ "minecraft:polished_granite_slab_from_polished_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_stairs": { "parent": "minecraft:recipes/root", @@ -21299,8 +20591,7 @@ "recipes": [ "minecraft:polished_granite_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21334,8 +20625,7 @@ "recipes": [ "minecraft:polished_granite_stairs_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -21369,8 +20659,7 @@ "recipes": [ "minecraft:polished_granite_stairs_from_polished_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine": { "parent": "minecraft:recipes/root", @@ -21404,8 +20693,7 @@ "recipes": [ "minecraft:prismarine" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_bricks": { "parent": "minecraft:recipes/root", @@ -21439,8 +20727,7 @@ "recipes": [ "minecraft:prismarine_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_brick_slab": { "parent": "minecraft:recipes/root", @@ -21474,8 +20761,7 @@ "recipes": [ "minecraft:prismarine_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_brick_slab_from_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -21509,8 +20795,7 @@ "recipes": [ "minecraft:prismarine_brick_slab_from_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_brick_stairs": { "parent": "minecraft:recipes/root", @@ -21544,8 +20829,7 @@ "recipes": [ "minecraft:prismarine_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_brick_stairs_from_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -21579,8 +20863,7 @@ "recipes": [ "minecraft:prismarine_brick_stairs_from_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_slab": { "parent": "minecraft:recipes/root", @@ -21614,8 +20897,7 @@ "recipes": [ "minecraft:prismarine_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -21649,8 +20931,7 @@ "recipes": [ "minecraft:prismarine_slab_from_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_stairs": { "parent": "minecraft:recipes/root", @@ -21684,8 +20965,7 @@ "recipes": [ "minecraft:prismarine_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -21719,8 +20999,7 @@ "recipes": [ "minecraft:prismarine_stairs_from_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purple_concrete_powder": { "parent": "minecraft:recipes/root", @@ -21767,8 +21046,7 @@ "recipes": [ "minecraft:purple_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purple_stained_glass": { "parent": "minecraft:recipes/root", @@ -21802,8 +21080,7 @@ "recipes": [ "minecraft:purple_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purple_terracotta": { "parent": "minecraft:recipes/root", @@ -21837,8 +21114,7 @@ "recipes": [ "minecraft:purple_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_block": { "parent": "minecraft:recipes/root", @@ -21872,8 +21148,7 @@ "recipes": [ "minecraft:purpur_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_pillar": { "parent": "minecraft:recipes/root", @@ -21907,8 +21182,7 @@ "recipes": [ "minecraft:purpur_pillar" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -21942,8 +21216,7 @@ "recipes": [ "minecraft:purpur_pillar_from_purpur_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_slab": { "parent": "minecraft:recipes/root", @@ -21977,8 +21250,7 @@ "recipes": [ "minecraft:purpur_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -22012,8 +21284,7 @@ "recipes": [ "minecraft:purpur_slab_from_purpur_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_stairs": { "parent": "minecraft:recipes/root", @@ -22047,8 +21318,7 @@ "recipes": [ "minecraft:purpur_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -22082,8 +21352,7 @@ "recipes": [ "minecraft:purpur_stairs_from_purpur_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_block": { "parent": "minecraft:recipes/root", @@ -22117,8 +21386,7 @@ "recipes": [ "minecraft:quartz_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_bricks": { "parent": "minecraft:recipes/root", @@ -22152,8 +21420,7 @@ "recipes": [ "minecraft:quartz_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -22187,8 +21454,7 @@ "recipes": [ "minecraft:quartz_bricks_from_quartz_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_pillar": { "parent": "minecraft:recipes/root", @@ -22248,8 +21514,7 @@ "recipes": [ "minecraft:quartz_pillar" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -22283,8 +21548,7 @@ "recipes": [ "minecraft:quartz_pillar_from_quartz_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_slab": { "parent": "minecraft:recipes/root", @@ -22344,8 +21608,7 @@ "recipes": [ "minecraft:quartz_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_slab_from_stonecutting": { "parent": "minecraft:recipes/root", @@ -22379,8 +21642,7 @@ "recipes": [ "minecraft:quartz_slab_from_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_stairs": { "parent": "minecraft:recipes/root", @@ -22440,8 +21702,7 @@ "recipes": [ "minecraft:quartz_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -22475,8 +21736,7 @@ "recipes": [ "minecraft:quartz_stairs_from_quartz_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/raw_copper_block": { "parent": "minecraft:recipes/root", @@ -22510,8 +21770,7 @@ "recipes": [ "minecraft:raw_copper_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/raw_gold_block": { "parent": "minecraft:recipes/root", @@ -22545,8 +21804,7 @@ "recipes": [ "minecraft:raw_gold_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/raw_iron_block": { "parent": "minecraft:recipes/root", @@ -22580,8 +21838,7 @@ "recipes": [ "minecraft:raw_iron_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_concrete_powder": { "parent": "minecraft:recipes/root", @@ -22628,8 +21885,7 @@ "recipes": [ "minecraft:red_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_nether_bricks": { "parent": "minecraft:recipes/root", @@ -22663,8 +21919,7 @@ "recipes": [ "minecraft:red_nether_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_nether_brick_slab": { "parent": "minecraft:recipes/root", @@ -22698,8 +21953,7 @@ "recipes": [ "minecraft:red_nether_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -22733,8 +21987,7 @@ "recipes": [ "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_nether_brick_stairs": { "parent": "minecraft:recipes/root", @@ -22768,8 +22021,7 @@ "recipes": [ "minecraft:red_nether_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -22803,8 +22055,7 @@ "recipes": [ "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_sandstone": { "parent": "minecraft:recipes/root", @@ -22838,8 +22089,7 @@ "recipes": [ "minecraft:red_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_sandstone_slab": { "parent": "minecraft:recipes/root", @@ -22886,8 +22136,7 @@ "recipes": [ "minecraft:red_sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -22921,8 +22170,7 @@ "recipes": [ "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_sandstone_stairs": { "parent": "minecraft:recipes/root", @@ -22982,8 +22230,7 @@ "recipes": [ "minecraft:red_sandstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23017,8 +22264,7 @@ "recipes": [ "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_stained_glass": { "parent": "minecraft:recipes/root", @@ -23052,8 +22298,7 @@ "recipes": [ "minecraft:red_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/red_terracotta": { "parent": "minecraft:recipes/root", @@ -23087,8 +22332,7 @@ "recipes": [ "minecraft:red_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sandstone": { "parent": "minecraft:recipes/root", @@ -23122,8 +22366,7 @@ "recipes": [ "minecraft:sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sandstone_slab": { "parent": "minecraft:recipes/root", @@ -23170,8 +22413,7 @@ "recipes": [ "minecraft:sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23205,8 +22447,7 @@ "recipes": [ "minecraft:sandstone_slab_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sandstone_stairs": { "parent": "minecraft:recipes/root", @@ -23266,8 +22507,7 @@ "recipes": [ "minecraft:sandstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23301,8 +22541,7 @@ "recipes": [ "minecraft:sandstone_stairs_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sea_lantern": { "parent": "minecraft:recipes/root", @@ -23336,8 +22575,7 @@ "recipes": [ "minecraft:sea_lantern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_basalt": { "parent": "minecraft:recipes/root", @@ -23371,8 +22609,7 @@ "recipes": [ "minecraft:smooth_basalt" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_quartz": { "parent": "minecraft:recipes/root", @@ -23406,8 +22643,7 @@ "recipes": [ "minecraft:smooth_quartz" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_quartz_slab": { "parent": "minecraft:recipes/root", @@ -23441,8 +22677,7 @@ "recipes": [ "minecraft:smooth_quartz_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting": { "parent": "minecraft:recipes/root", @@ -23476,8 +22711,7 @@ "recipes": [ "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_quartz_stairs": { "parent": "minecraft:recipes/root", @@ -23511,8 +22745,7 @@ "recipes": [ "minecraft:smooth_quartz_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting": { "parent": "minecraft:recipes/root", @@ -23546,8 +22779,7 @@ "recipes": [ "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_red_sandstone": { "parent": "minecraft:recipes/root", @@ -23581,8 +22813,7 @@ "recipes": [ "minecraft:smooth_red_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_red_sandstone_slab": { "parent": "minecraft:recipes/root", @@ -23616,8 +22847,7 @@ "recipes": [ "minecraft:smooth_red_sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23651,8 +22881,7 @@ "recipes": [ "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_red_sandstone_stairs": { "parent": "minecraft:recipes/root", @@ -23686,8 +22915,7 @@ "recipes": [ "minecraft:smooth_red_sandstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23721,8 +22949,7 @@ "recipes": [ "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_sandstone": { "parent": "minecraft:recipes/root", @@ -23756,8 +22983,7 @@ "recipes": [ "minecraft:smooth_sandstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_sandstone_slab": { "parent": "minecraft:recipes/root", @@ -23791,8 +23017,7 @@ "recipes": [ "minecraft:smooth_sandstone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23826,8 +23051,7 @@ "recipes": [ "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_sandstone_stairs": { "parent": "minecraft:recipes/root", @@ -23861,8 +23085,7 @@ "recipes": [ "minecraft:smooth_sandstone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -23896,8 +23119,7 @@ "recipes": [ "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_stone": { "parent": "minecraft:recipes/root", @@ -23931,8 +23153,7 @@ "recipes": [ "minecraft:smooth_stone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_stone_slab": { "parent": "minecraft:recipes/root", @@ -23966,8 +23187,7 @@ "recipes": [ "minecraft:smooth_stone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24001,8 +23221,7 @@ "recipes": [ "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/snow_block": { "parent": "minecraft:recipes/root", @@ -24036,8 +23255,7 @@ "recipes": [ "minecraft:snow_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/sponge": { "parent": "minecraft:recipes/root", @@ -24071,8 +23289,7 @@ "recipes": [ "minecraft:sponge" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/spruce_planks": { "parent": "minecraft:recipes/root", @@ -24104,8 +23321,7 @@ "recipes": [ "minecraft:spruce_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/spruce_slab": { "parent": "minecraft:recipes/root", @@ -24139,8 +23355,7 @@ "recipes": [ "minecraft:spruce_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/spruce_stairs": { "parent": "minecraft:recipes/root", @@ -24174,8 +23389,7 @@ "recipes": [ "minecraft:spruce_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/spruce_wood": { "parent": "minecraft:recipes/root", @@ -24209,8 +23423,7 @@ "recipes": [ "minecraft:spruce_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone": { "parent": "minecraft:recipes/root", @@ -24244,8 +23457,7 @@ "recipes": [ "minecraft:stone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_bricks": { "parent": "minecraft:recipes/root", @@ -24279,8 +23491,7 @@ "recipes": [ "minecraft:stone_bricks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_bricks_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24314,8 +23525,7 @@ "recipes": [ "minecraft:stone_bricks_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_slab": { "parent": "minecraft:recipes/root", @@ -24347,8 +23557,7 @@ "recipes": [ "minecraft:stone_brick_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -24382,8 +23591,7 @@ "recipes": [ "minecraft:stone_brick_slab_from_stone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_slab_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24417,8 +23625,7 @@ "recipes": [ "minecraft:stone_brick_slab_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_stairs": { "parent": "minecraft:recipes/root", @@ -24450,8 +23657,7 @@ "recipes": [ "minecraft:stone_brick_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -24485,8 +23691,7 @@ "recipes": [ "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24520,8 +23725,7 @@ "recipes": [ "minecraft:stone_brick_stairs_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_slab": { "parent": "minecraft:recipes/root", @@ -24555,8 +23759,7 @@ "recipes": [ "minecraft:stone_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_slab_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24590,8 +23793,7 @@ "recipes": [ "minecraft:stone_slab_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_stairs": { "parent": "minecraft:recipes/root", @@ -24625,8 +23827,7 @@ "recipes": [ "minecraft:stone_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stone_stairs_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -24660,8 +23861,7 @@ "recipes": [ "minecraft:stone_stairs_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_acacia_wood": { "parent": "minecraft:recipes/root", @@ -24695,8 +23895,7 @@ "recipes": [ "minecraft:stripped_acacia_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_birch_wood": { "parent": "minecraft:recipes/root", @@ -24730,8 +23929,7 @@ "recipes": [ "minecraft:stripped_birch_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_cherry_wood": { "parent": "minecraft:recipes/root", @@ -24765,8 +23963,7 @@ "recipes": [ "minecraft:stripped_cherry_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_crimson_hyphae": { "parent": "minecraft:recipes/root", @@ -24800,8 +23997,7 @@ "recipes": [ "minecraft:stripped_crimson_hyphae" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_dark_oak_wood": { "parent": "minecraft:recipes/root", @@ -24835,8 +24031,7 @@ "recipes": [ "minecraft:stripped_dark_oak_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_jungle_wood": { "parent": "minecraft:recipes/root", @@ -24870,8 +24065,7 @@ "recipes": [ "minecraft:stripped_jungle_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_mangrove_wood": { "parent": "minecraft:recipes/root", @@ -24905,8 +24099,7 @@ "recipes": [ "minecraft:stripped_mangrove_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_oak_wood": { "parent": "minecraft:recipes/root", @@ -24940,8 +24133,7 @@ "recipes": [ "minecraft:stripped_oak_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_spruce_wood": { "parent": "minecraft:recipes/root", @@ -24975,8 +24167,7 @@ "recipes": [ "minecraft:stripped_spruce_wood" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/stripped_warped_hyphae": { "parent": "minecraft:recipes/root", @@ -25010,8 +24201,7 @@ "recipes": [ "minecraft:stripped_warped_hyphae" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/terracotta": { "parent": "minecraft:recipes/root", @@ -25045,8 +24235,7 @@ "recipes": [ "minecraft:terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/tinted_glass": { "parent": "minecraft:recipes/root", @@ -25080,8 +24269,7 @@ "recipes": [ "minecraft:tinted_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/warped_hyphae": { "parent": "minecraft:recipes/root", @@ -25115,8 +24303,7 @@ "recipes": [ "minecraft:warped_hyphae" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/warped_planks": { "parent": "minecraft:recipes/root", @@ -25148,8 +24335,7 @@ "recipes": [ "minecraft:warped_planks" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/warped_slab": { "parent": "minecraft:recipes/root", @@ -25183,8 +24369,7 @@ "recipes": [ "minecraft:warped_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/warped_stairs": { "parent": "minecraft:recipes/root", @@ -25218,8 +24403,7 @@ "recipes": [ "minecraft:warped_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_copper_block_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25253,8 +24437,7 @@ "recipes": [ "minecraft:waxed_copper_block_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper": { "parent": "minecraft:recipes/root", @@ -25288,8 +24471,7 @@ "recipes": [ "minecraft:waxed_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25323,8 +24505,7 @@ "recipes": [ "minecraft:waxed_cut_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -25358,8 +24539,7 @@ "recipes": [ "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -25393,8 +24573,7 @@ "recipes": [ "minecraft:waxed_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25428,8 +24607,7 @@ "recipes": [ "minecraft:waxed_cut_copper_slab_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -25463,8 +24641,7 @@ "recipes": [ "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -25498,8 +24675,7 @@ "recipes": [ "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -25533,8 +24709,7 @@ "recipes": [ "minecraft:waxed_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25568,8 +24743,7 @@ "recipes": [ "minecraft:waxed_cut_copper_stairs_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting": { "parent": "minecraft:recipes/root", @@ -25603,8 +24777,7 @@ "recipes": [ "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -25638,8 +24811,7 @@ "recipes": [ "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25673,8 +24845,7 @@ "recipes": [ "minecraft:waxed_exposed_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper": { "parent": "minecraft:recipes/root", @@ -25708,8 +24879,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25743,8 +24913,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -25778,8 +24947,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -25813,8 +24981,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25848,8 +25015,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -25883,8 +25049,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -25918,8 +25083,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -25953,8 +25117,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -25988,8 +25151,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26023,8 +25185,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26058,8 +25219,7 @@ "recipes": [ "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26093,8 +25253,7 @@ "recipes": [ "minecraft:waxed_oxidized_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper": { "parent": "minecraft:recipes/root", @@ -26128,8 +25287,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26163,8 +25321,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26198,8 +25355,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -26233,8 +25389,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26268,8 +25423,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26303,8 +25457,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26338,8 +25491,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -26373,8 +25525,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26408,8 +25559,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26443,8 +25593,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26478,8 +25627,7 @@ "recipes": [ "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26513,8 +25661,7 @@ "recipes": [ "minecraft:waxed_weathered_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper": { "parent": "minecraft:recipes/root", @@ -26548,8 +25695,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26583,8 +25729,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26618,8 +25763,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -26653,8 +25797,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26688,8 +25831,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26723,8 +25865,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26758,8 +25899,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -26793,8 +25933,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb": { "parent": "minecraft:recipes/root", @@ -26828,8 +25967,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26863,8 +26001,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26898,8 +26035,7 @@ "recipes": [ "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper": { "parent": "minecraft:recipes/root", @@ -26933,8 +26069,7 @@ "recipes": [ "minecraft:weathered_cut_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -26968,8 +26103,7 @@ "recipes": [ "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_slab": { "parent": "minecraft:recipes/root", @@ -27003,8 +26137,7 @@ "recipes": [ "minecraft:weathered_cut_copper_slab" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -27038,8 +26171,7 @@ "recipes": [ "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -27073,8 +26205,7 @@ "recipes": [ "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_stairs": { "parent": "minecraft:recipes/root", @@ -27108,8 +26239,7 @@ "recipes": [ "minecraft:weathered_cut_copper_stairs" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -27143,8 +26273,7 @@ "recipes": [ "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting": { "parent": "minecraft:recipes/root", @@ -27178,8 +26307,7 @@ "recipes": [ "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/white_concrete_powder": { "parent": "minecraft:recipes/root", @@ -27226,8 +26354,7 @@ "recipes": [ "minecraft:white_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/white_stained_glass": { "parent": "minecraft:recipes/root", @@ -27261,8 +26388,7 @@ "recipes": [ "minecraft:white_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/white_terracotta": { "parent": "minecraft:recipes/root", @@ -27296,8 +26422,7 @@ "recipes": [ "minecraft:white_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/white_wool_from_string": { "parent": "minecraft:recipes/root", @@ -27331,8 +26456,7 @@ "recipes": [ "minecraft:white_wool_from_string" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/yellow_concrete_powder": { "parent": "minecraft:recipes/root", @@ -27379,8 +26503,7 @@ "recipes": [ "minecraft:yellow_concrete_powder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/yellow_stained_glass": { "parent": "minecraft:recipes/root", @@ -27414,8 +26537,7 @@ "recipes": [ "minecraft:yellow_stained_glass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/building_blocks/yellow_terracotta": { "parent": "minecraft:recipes/root", @@ -27449,8 +26571,7 @@ "recipes": [ "minecraft:yellow_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/arrow": { "parent": "minecraft:recipes/root", @@ -27497,8 +26618,7 @@ "recipes": [ "minecraft:arrow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/bow": { "parent": "minecraft:recipes/root", @@ -27532,8 +26652,7 @@ "recipes": [ "minecraft:bow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/crossbow": { "parent": "minecraft:recipes/root", @@ -27593,8 +26712,7 @@ "recipes": [ "minecraft:crossbow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/diamond_boots": { "parent": "minecraft:recipes/root", @@ -27628,8 +26746,7 @@ "recipes": [ "minecraft:diamond_boots" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/diamond_chestplate": { "parent": "minecraft:recipes/root", @@ -27663,8 +26780,7 @@ "recipes": [ "minecraft:diamond_chestplate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/diamond_helmet": { "parent": "minecraft:recipes/root", @@ -27698,8 +26814,7 @@ "recipes": [ "minecraft:diamond_helmet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/diamond_leggings": { "parent": "minecraft:recipes/root", @@ -27733,8 +26848,7 @@ "recipes": [ "minecraft:diamond_leggings" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/diamond_sword": { "parent": "minecraft:recipes/root", @@ -27768,8 +26882,7 @@ "recipes": [ "minecraft:diamond_sword" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/golden_boots": { "parent": "minecraft:recipes/root", @@ -27803,8 +26916,7 @@ "recipes": [ "minecraft:golden_boots" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/golden_chestplate": { "parent": "minecraft:recipes/root", @@ -27838,8 +26950,7 @@ "recipes": [ "minecraft:golden_chestplate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/golden_helmet": { "parent": "minecraft:recipes/root", @@ -27873,8 +26984,7 @@ "recipes": [ "minecraft:golden_helmet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/golden_leggings": { "parent": "minecraft:recipes/root", @@ -27908,8 +27018,7 @@ "recipes": [ "minecraft:golden_leggings" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/golden_sword": { "parent": "minecraft:recipes/root", @@ -27943,8 +27052,7 @@ "recipes": [ "minecraft:golden_sword" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/iron_boots": { "parent": "minecraft:recipes/root", @@ -27978,8 +27086,7 @@ "recipes": [ "minecraft:iron_boots" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/iron_chestplate": { "parent": "minecraft:recipes/root", @@ -28013,8 +27120,7 @@ "recipes": [ "minecraft:iron_chestplate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/iron_helmet": { "parent": "minecraft:recipes/root", @@ -28048,8 +27154,7 @@ "recipes": [ "minecraft:iron_helmet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/iron_leggings": { "parent": "minecraft:recipes/root", @@ -28083,8 +27188,7 @@ "recipes": [ "minecraft:iron_leggings" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/iron_sword": { "parent": "minecraft:recipes/root", @@ -28118,8 +27222,7 @@ "recipes": [ "minecraft:iron_sword" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/leather_boots": { "parent": "minecraft:recipes/root", @@ -28153,8 +27256,7 @@ "recipes": [ "minecraft:leather_boots" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/leather_chestplate": { "parent": "minecraft:recipes/root", @@ -28188,8 +27290,7 @@ "recipes": [ "minecraft:leather_chestplate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/leather_helmet": { "parent": "minecraft:recipes/root", @@ -28223,8 +27324,7 @@ "recipes": [ "minecraft:leather_helmet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/leather_leggings": { "parent": "minecraft:recipes/root", @@ -28258,8 +27358,7 @@ "recipes": [ "minecraft:leather_leggings" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/netherite_boots_smithing": { "parent": "minecraft:recipes/root", @@ -28293,8 +27392,7 @@ "recipes": [ "minecraft:netherite_boots_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/netherite_chestplate_smithing": { "parent": "minecraft:recipes/root", @@ -28328,8 +27426,7 @@ "recipes": [ "minecraft:netherite_chestplate_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/netherite_helmet_smithing": { "parent": "minecraft:recipes/root", @@ -28363,8 +27460,7 @@ "recipes": [ "minecraft:netherite_helmet_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/netherite_leggings_smithing": { "parent": "minecraft:recipes/root", @@ -28398,8 +27494,7 @@ "recipes": [ "minecraft:netherite_leggings_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/netherite_sword_smithing": { "parent": "minecraft:recipes/root", @@ -28433,8 +27528,7 @@ "recipes": [ "minecraft:netherite_sword_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/shield": { "parent": "minecraft:recipes/root", @@ -28468,8 +27562,7 @@ "recipes": [ "minecraft:shield" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/spectral_arrow": { "parent": "minecraft:recipes/root", @@ -28503,8 +27596,7 @@ "recipes": [ "minecraft:spectral_arrow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/stone_sword": { "parent": "minecraft:recipes/root", @@ -28536,8 +27628,7 @@ "recipes": [ "minecraft:stone_sword" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/turtle_helmet": { "parent": "minecraft:recipes/root", @@ -28571,8 +27662,7 @@ "recipes": [ "minecraft:turtle_helmet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/combat/wooden_sword": { "parent": "minecraft:recipes/root", @@ -28606,8 +27696,7 @@ "recipes": [ "minecraft:wooden_sword" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/acacia_fence": { "parent": "minecraft:recipes/root", @@ -28641,8 +27730,7 @@ "recipes": [ "minecraft:acacia_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/acacia_hanging_sign": { "parent": "minecraft:recipes/root", @@ -28676,8 +27764,7 @@ "recipes": [ "minecraft:acacia_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/acacia_sign": { "parent": "minecraft:recipes/root", @@ -28711,8 +27798,7 @@ "recipes": [ "minecraft:acacia_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/andesite_wall": { "parent": "minecraft:recipes/root", @@ -28746,8 +27832,7 @@ "recipes": [ "minecraft:andesite_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/andesite_wall_from_andesite_stonecutting": { "parent": "minecraft:recipes/root", @@ -28781,8 +27866,7 @@ "recipes": [ "minecraft:andesite_wall_from_andesite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/anvil": { "parent": "minecraft:recipes/root", @@ -28816,8 +27900,7 @@ "recipes": [ "minecraft:anvil" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/armor_stand": { "parent": "minecraft:recipes/root", @@ -28851,8 +27934,7 @@ "recipes": [ "minecraft:armor_stand" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/bamboo_fence": { "parent": "minecraft:recipes/root", @@ -28886,8 +27968,7 @@ "recipes": [ "minecraft:bamboo_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/bamboo_hanging_sign": { "parent": "minecraft:recipes/root", @@ -28921,8 +28002,7 @@ "recipes": [ "minecraft:bamboo_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/bamboo_mosaic": { "parent": "minecraft:recipes/root", @@ -28956,8 +28036,7 @@ "recipes": [ "minecraft:bamboo_mosaic" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/bamboo_sign": { "parent": "minecraft:recipes/root", @@ -28991,8 +28070,7 @@ "recipes": [ "minecraft:bamboo_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/barrel": { "parent": "minecraft:recipes/root", @@ -29035,8 +28113,7 @@ "recipes": [ "minecraft:barrel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/beehive": { "parent": "minecraft:recipes/root", @@ -29070,8 +28147,7 @@ "recipes": [ "minecraft:beehive" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/birch_fence": { "parent": "minecraft:recipes/root", @@ -29105,8 +28181,7 @@ "recipes": [ "minecraft:birch_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/birch_hanging_sign": { "parent": "minecraft:recipes/root", @@ -29140,8 +28215,7 @@ "recipes": [ "minecraft:birch_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/birch_sign": { "parent": "minecraft:recipes/root", @@ -29175,8 +28249,7 @@ "recipes": [ "minecraft:birch_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blackstone_wall": { "parent": "minecraft:recipes/root", @@ -29210,8 +28283,7 @@ "recipes": [ "minecraft:blackstone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blackstone_wall_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -29245,8 +28317,7 @@ "recipes": [ "minecraft:blackstone_wall_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_banner": { "parent": "minecraft:recipes/root", @@ -29280,8 +28351,7 @@ "recipes": [ "minecraft:black_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_bed": { "parent": "minecraft:recipes/root", @@ -29315,8 +28385,7 @@ "recipes": [ "minecraft:black_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_candle": { "parent": "minecraft:recipes/root", @@ -29350,8 +28419,7 @@ "recipes": [ "minecraft:black_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_carpet": { "parent": "minecraft:recipes/root", @@ -29385,8 +28453,7 @@ "recipes": [ "minecraft:black_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -29420,8 +28487,7 @@ "recipes": [ "minecraft:black_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -29455,8 +28521,7 @@ "recipes": [ "minecraft:black_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/black_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -29503,8 +28568,7 @@ "recipes": [ "minecraft:black_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blast_furnace": { "parent": "minecraft:recipes/root", @@ -29538,8 +28602,7 @@ "recipes": [ "minecraft:blast_furnace" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_banner": { "parent": "minecraft:recipes/root", @@ -29573,8 +28636,7 @@ "recipes": [ "minecraft:blue_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_bed": { "parent": "minecraft:recipes/root", @@ -29608,8 +28670,7 @@ "recipes": [ "minecraft:blue_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_candle": { "parent": "minecraft:recipes/root", @@ -29643,8 +28704,7 @@ "recipes": [ "minecraft:blue_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_carpet": { "parent": "minecraft:recipes/root", @@ -29678,8 +28738,7 @@ "recipes": [ "minecraft:blue_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -29713,8 +28772,7 @@ "recipes": [ "minecraft:blue_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -29748,8 +28806,7 @@ "recipes": [ "minecraft:blue_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/blue_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -29796,8 +28853,7 @@ "recipes": [ "minecraft:blue_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brick_wall": { "parent": "minecraft:recipes/root", @@ -29831,8 +28887,7 @@ "recipes": [ "minecraft:brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brick_wall_from_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -29866,8 +28921,7 @@ "recipes": [ "minecraft:brick_wall_from_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_banner": { "parent": "minecraft:recipes/root", @@ -29901,8 +28955,7 @@ "recipes": [ "minecraft:brown_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_bed": { "parent": "minecraft:recipes/root", @@ -29936,8 +28989,7 @@ "recipes": [ "minecraft:brown_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_candle": { "parent": "minecraft:recipes/root", @@ -29971,8 +29023,7 @@ "recipes": [ "minecraft:brown_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_carpet": { "parent": "minecraft:recipes/root", @@ -30006,8 +29057,7 @@ "recipes": [ "minecraft:brown_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -30041,8 +29091,7 @@ "recipes": [ "minecraft:brown_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -30076,8 +29125,7 @@ "recipes": [ "minecraft:brown_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/brown_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -30124,8 +29172,7 @@ "recipes": [ "minecraft:brown_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/campfire": { "parent": "minecraft:recipes/root", @@ -30170,8 +29217,7 @@ "recipes": [ "minecraft:campfire" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/candle": { "parent": "minecraft:recipes/root", @@ -30218,8 +29264,7 @@ "recipes": [ "minecraft:candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cartography_table": { "parent": "minecraft:recipes/root", @@ -30253,8 +29298,7 @@ "recipes": [ "minecraft:cartography_table" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/chain": { "parent": "minecraft:recipes/root", @@ -30301,8 +29345,7 @@ "recipes": [ "minecraft:chain" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cherry_fence": { "parent": "minecraft:recipes/root", @@ -30336,8 +29379,7 @@ "recipes": [ "minecraft:cherry_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cherry_hanging_sign": { "parent": "minecraft:recipes/root", @@ -30371,8 +29413,7 @@ "recipes": [ "minecraft:cherry_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cherry_sign": { "parent": "minecraft:recipes/root", @@ -30406,8 +29447,7 @@ "recipes": [ "minecraft:cherry_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/chest": { "parent": "minecraft:recipes/root", @@ -30439,8 +29479,7 @@ "recipes": [ "minecraft:chest" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cobbled_deepslate_wall": { "parent": "minecraft:recipes/root", @@ -30474,8 +29513,7 @@ "recipes": [ "minecraft:cobbled_deepslate_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -30509,8 +29547,7 @@ "recipes": [ "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cobblestone_wall": { "parent": "minecraft:recipes/root", @@ -30544,8 +29581,7 @@ "recipes": [ "minecraft:cobblestone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -30579,8 +29615,7 @@ "recipes": [ "minecraft:cobblestone_wall_from_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/composter": { "parent": "minecraft:recipes/root", @@ -30612,8 +29647,7 @@ "recipes": [ "minecraft:composter" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/crafting_table": { "parent": "minecraft:recipes/root", @@ -30638,8 +29672,7 @@ "recipes": [ "minecraft:crafting_table" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/crimson_fence": { "parent": "minecraft:recipes/root", @@ -30673,8 +29706,7 @@ "recipes": [ "minecraft:crimson_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/crimson_hanging_sign": { "parent": "minecraft:recipes/root", @@ -30708,8 +29740,7 @@ "recipes": [ "minecraft:crimson_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/crimson_sign": { "parent": "minecraft:recipes/root", @@ -30743,8 +29774,7 @@ "recipes": [ "minecraft:crimson_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_banner": { "parent": "minecraft:recipes/root", @@ -30778,8 +29808,7 @@ "recipes": [ "minecraft:cyan_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_bed": { "parent": "minecraft:recipes/root", @@ -30813,8 +29842,7 @@ "recipes": [ "minecraft:cyan_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_candle": { "parent": "minecraft:recipes/root", @@ -30848,8 +29876,7 @@ "recipes": [ "minecraft:cyan_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_carpet": { "parent": "minecraft:recipes/root", @@ -30883,8 +29910,7 @@ "recipes": [ "minecraft:cyan_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -30918,8 +29944,7 @@ "recipes": [ "minecraft:cyan_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -30953,8 +29978,7 @@ "recipes": [ "minecraft:cyan_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/cyan_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -31001,8 +30025,7 @@ "recipes": [ "minecraft:cyan_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/dark_oak_fence": { "parent": "minecraft:recipes/root", @@ -31036,8 +30059,7 @@ "recipes": [ "minecraft:dark_oak_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/dark_oak_hanging_sign": { "parent": "minecraft:recipes/root", @@ -31071,8 +30093,7 @@ "recipes": [ "minecraft:dark_oak_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/dark_oak_sign": { "parent": "minecraft:recipes/root", @@ -31106,8 +30127,7 @@ "recipes": [ "minecraft:dark_oak_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/decorated_pot_simple": { "parent": "minecraft:recipes/root", @@ -31139,8 +30159,7 @@ "recipes": [ "minecraft:decorated_pot_simple" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_brick_wall": { "parent": "minecraft:recipes/root", @@ -31174,8 +30193,7 @@ "recipes": [ "minecraft:deepslate_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -31209,8 +30227,7 @@ "recipes": [ "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -31244,8 +30261,7 @@ "recipes": [ "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -31279,8 +30295,7 @@ "recipes": [ "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_tile_wall": { "parent": "minecraft:recipes/root", @@ -31314,8 +30329,7 @@ "recipes": [ "minecraft:deepslate_tile_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -31349,8 +30363,7 @@ "recipes": [ "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -31384,8 +30397,7 @@ "recipes": [ "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting": { "parent": "minecraft:recipes/root", @@ -31419,8 +30431,7 @@ "recipes": [ "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -31454,8 +30465,7 @@ "recipes": [ "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/diorite_wall": { "parent": "minecraft:recipes/root", @@ -31489,8 +30499,7 @@ "recipes": [ "minecraft:diorite_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/diorite_wall_from_diorite_stonecutting": { "parent": "minecraft:recipes/root", @@ -31524,8 +30533,7 @@ "recipes": [ "minecraft:diorite_wall_from_diorite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/enchanting_table": { "parent": "minecraft:recipes/root", @@ -31559,8 +30567,7 @@ "recipes": [ "minecraft:enchanting_table" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/ender_chest": { "parent": "minecraft:recipes/root", @@ -31594,8 +30601,7 @@ "recipes": [ "minecraft:ender_chest" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/end_crystal": { "parent": "minecraft:recipes/root", @@ -31629,8 +30635,7 @@ "recipes": [ "minecraft:end_crystal" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/end_rod": { "parent": "minecraft:recipes/root", @@ -31664,8 +30669,7 @@ "recipes": [ "minecraft:end_rod" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/end_stone_brick_wall": { "parent": "minecraft:recipes/root", @@ -31699,8 +30703,7 @@ "recipes": [ "minecraft:end_stone_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/end_stone_brick_wall_from_end_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -31734,8 +30737,7 @@ "recipes": [ "minecraft:end_stone_brick_wall_from_end_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -31769,8 +30771,7 @@ "recipes": [ "minecraft:end_stone_brick_wall_from_end_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/fletching_table": { "parent": "minecraft:recipes/root", @@ -31804,8 +30805,7 @@ "recipes": [ "minecraft:fletching_table" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/flower_pot": { "parent": "minecraft:recipes/root", @@ -31839,8 +30839,7 @@ "recipes": [ "minecraft:flower_pot" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/furnace": { "parent": "minecraft:recipes/root", @@ -31872,8 +30871,7 @@ "recipes": [ "minecraft:furnace" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/glass_pane": { "parent": "minecraft:recipes/root", @@ -31907,8 +30905,7 @@ "recipes": [ "minecraft:glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/glow_item_frame": { "parent": "minecraft:recipes/root", @@ -31955,8 +30952,7 @@ "recipes": [ "minecraft:glow_item_frame" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/granite_wall": { "parent": "minecraft:recipes/root", @@ -31990,8 +30986,7 @@ "recipes": [ "minecraft:granite_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/granite_wall_from_granite_stonecutting": { "parent": "minecraft:recipes/root", @@ -32025,8 +31020,7 @@ "recipes": [ "minecraft:granite_wall_from_granite_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_banner": { "parent": "minecraft:recipes/root", @@ -32060,8 +31054,7 @@ "recipes": [ "minecraft:gray_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_bed": { "parent": "minecraft:recipes/root", @@ -32095,8 +31088,7 @@ "recipes": [ "minecraft:gray_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_candle": { "parent": "minecraft:recipes/root", @@ -32130,8 +31122,7 @@ "recipes": [ "minecraft:gray_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_carpet": { "parent": "minecraft:recipes/root", @@ -32165,8 +31156,7 @@ "recipes": [ "minecraft:gray_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -32200,8 +31190,7 @@ "recipes": [ "minecraft:gray_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -32235,8 +31224,7 @@ "recipes": [ "minecraft:gray_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/gray_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -32283,8 +31271,7 @@ "recipes": [ "minecraft:gray_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_banner": { "parent": "minecraft:recipes/root", @@ -32318,8 +31305,7 @@ "recipes": [ "minecraft:green_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_bed": { "parent": "minecraft:recipes/root", @@ -32353,8 +31339,7 @@ "recipes": [ "minecraft:green_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_candle": { "parent": "minecraft:recipes/root", @@ -32388,8 +31373,7 @@ "recipes": [ "minecraft:green_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_carpet": { "parent": "minecraft:recipes/root", @@ -32423,8 +31407,7 @@ "recipes": [ "minecraft:green_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -32458,8 +31441,7 @@ "recipes": [ "minecraft:green_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -32493,8 +31475,7 @@ "recipes": [ "minecraft:green_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/green_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -32541,8 +31522,7 @@ "recipes": [ "minecraft:green_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/grindstone": { "parent": "minecraft:recipes/root", @@ -32576,8 +31556,7 @@ "recipes": [ "minecraft:grindstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/honeycomb_block": { "parent": "minecraft:recipes/root", @@ -32611,8 +31590,7 @@ "recipes": [ "minecraft:honeycomb_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/iron_bars": { "parent": "minecraft:recipes/root", @@ -32646,8 +31624,7 @@ "recipes": [ "minecraft:iron_bars" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/item_frame": { "parent": "minecraft:recipes/root", @@ -32681,8 +31658,7 @@ "recipes": [ "minecraft:item_frame" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/jukebox": { "parent": "minecraft:recipes/root", @@ -32716,8 +31692,7 @@ "recipes": [ "minecraft:jukebox" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/jungle_fence": { "parent": "minecraft:recipes/root", @@ -32751,8 +31726,7 @@ "recipes": [ "minecraft:jungle_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/jungle_hanging_sign": { "parent": "minecraft:recipes/root", @@ -32786,8 +31760,7 @@ "recipes": [ "minecraft:jungle_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/jungle_sign": { "parent": "minecraft:recipes/root", @@ -32821,8 +31794,7 @@ "recipes": [ "minecraft:jungle_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/ladder": { "parent": "minecraft:recipes/root", @@ -32856,8 +31828,7 @@ "recipes": [ "minecraft:ladder" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lantern": { "parent": "minecraft:recipes/root", @@ -32904,8 +31875,7 @@ "recipes": [ "minecraft:lantern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_banner": { "parent": "minecraft:recipes/root", @@ -32939,8 +31909,7 @@ "recipes": [ "minecraft:light_blue_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_bed": { "parent": "minecraft:recipes/root", @@ -32974,8 +31943,7 @@ "recipes": [ "minecraft:light_blue_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_candle": { "parent": "minecraft:recipes/root", @@ -33009,8 +31977,7 @@ "recipes": [ "minecraft:light_blue_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_carpet": { "parent": "minecraft:recipes/root", @@ -33044,8 +32011,7 @@ "recipes": [ "minecraft:light_blue_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -33079,8 +32045,7 @@ "recipes": [ "minecraft:light_blue_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -33114,8 +32079,7 @@ "recipes": [ "minecraft:light_blue_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_blue_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -33162,8 +32126,7 @@ "recipes": [ "minecraft:light_blue_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_banner": { "parent": "minecraft:recipes/root", @@ -33197,8 +32160,7 @@ "recipes": [ "minecraft:light_gray_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_bed": { "parent": "minecraft:recipes/root", @@ -33232,8 +32194,7 @@ "recipes": [ "minecraft:light_gray_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_candle": { "parent": "minecraft:recipes/root", @@ -33267,8 +32228,7 @@ "recipes": [ "minecraft:light_gray_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_carpet": { "parent": "minecraft:recipes/root", @@ -33302,8 +32262,7 @@ "recipes": [ "minecraft:light_gray_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -33337,8 +32296,7 @@ "recipes": [ "minecraft:light_gray_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -33372,8 +32330,7 @@ "recipes": [ "minecraft:light_gray_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/light_gray_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -33420,8 +32377,7 @@ "recipes": [ "minecraft:light_gray_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_banner": { "parent": "minecraft:recipes/root", @@ -33455,8 +32411,7 @@ "recipes": [ "minecraft:lime_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_bed": { "parent": "minecraft:recipes/root", @@ -33490,8 +32445,7 @@ "recipes": [ "minecraft:lime_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_candle": { "parent": "minecraft:recipes/root", @@ -33525,8 +32479,7 @@ "recipes": [ "minecraft:lime_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_carpet": { "parent": "minecraft:recipes/root", @@ -33560,8 +32513,7 @@ "recipes": [ "minecraft:lime_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -33595,8 +32547,7 @@ "recipes": [ "minecraft:lime_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -33630,8 +32581,7 @@ "recipes": [ "minecraft:lime_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lime_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -33678,8 +32628,7 @@ "recipes": [ "minecraft:lime_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/lodestone": { "parent": "minecraft:recipes/root", @@ -33713,8 +32662,7 @@ "recipes": [ "minecraft:lodestone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/loom": { "parent": "minecraft:recipes/root", @@ -33748,8 +32696,7 @@ "recipes": [ "minecraft:loom" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_banner": { "parent": "minecraft:recipes/root", @@ -33783,8 +32730,7 @@ "recipes": [ "minecraft:magenta_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_bed": { "parent": "minecraft:recipes/root", @@ -33818,8 +32764,7 @@ "recipes": [ "minecraft:magenta_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_candle": { "parent": "minecraft:recipes/root", @@ -33853,8 +32798,7 @@ "recipes": [ "minecraft:magenta_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_carpet": { "parent": "minecraft:recipes/root", @@ -33888,8 +32832,7 @@ "recipes": [ "minecraft:magenta_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -33923,8 +32866,7 @@ "recipes": [ "minecraft:magenta_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -33958,8 +32900,7 @@ "recipes": [ "minecraft:magenta_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/magenta_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -34006,8 +32947,7 @@ "recipes": [ "minecraft:magenta_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mangrove_fence": { "parent": "minecraft:recipes/root", @@ -34041,8 +32981,7 @@ "recipes": [ "minecraft:mangrove_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mangrove_hanging_sign": { "parent": "minecraft:recipes/root", @@ -34076,8 +33015,7 @@ "recipes": [ "minecraft:mangrove_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mangrove_sign": { "parent": "minecraft:recipes/root", @@ -34111,8 +33049,7 @@ "recipes": [ "minecraft:mangrove_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mossy_cobblestone_wall": { "parent": "minecraft:recipes/root", @@ -34146,8 +33083,7 @@ "recipes": [ "minecraft:mossy_cobblestone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting": { "parent": "minecraft:recipes/root", @@ -34181,8 +33117,7 @@ "recipes": [ "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mossy_stone_brick_wall": { "parent": "minecraft:recipes/root", @@ -34216,8 +33151,7 @@ "recipes": [ "minecraft:mossy_stone_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting": { "parent": "minecraft:recipes/root", @@ -34251,8 +33185,7 @@ "recipes": [ "minecraft:mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/moss_carpet": { "parent": "minecraft:recipes/root", @@ -34286,8 +33219,7 @@ "recipes": [ "minecraft:moss_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mud_brick_wall": { "parent": "minecraft:recipes/root", @@ -34321,8 +33253,7 @@ "recipes": [ "minecraft:mud_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -34356,8 +33287,7 @@ "recipes": [ "minecraft:mud_brick_wall_from_mud_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/nether_brick_fence": { "parent": "minecraft:recipes/root", @@ -34391,8 +33321,7 @@ "recipes": [ "minecraft:nether_brick_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/nether_brick_wall": { "parent": "minecraft:recipes/root", @@ -34426,8 +33355,7 @@ "recipes": [ "minecraft:nether_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -34461,8 +33389,7 @@ "recipes": [ "minecraft:nether_brick_wall_from_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/oak_fence": { "parent": "minecraft:recipes/root", @@ -34496,8 +33423,7 @@ "recipes": [ "minecraft:oak_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/oak_hanging_sign": { "parent": "minecraft:recipes/root", @@ -34531,8 +33457,7 @@ "recipes": [ "minecraft:oak_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/oak_sign": { "parent": "minecraft:recipes/root", @@ -34566,8 +33491,7 @@ "recipes": [ "minecraft:oak_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_banner": { "parent": "minecraft:recipes/root", @@ -34601,8 +33525,7 @@ "recipes": [ "minecraft:orange_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_bed": { "parent": "minecraft:recipes/root", @@ -34636,8 +33559,7 @@ "recipes": [ "minecraft:orange_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_candle": { "parent": "minecraft:recipes/root", @@ -34671,8 +33593,7 @@ "recipes": [ "minecraft:orange_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_carpet": { "parent": "minecraft:recipes/root", @@ -34706,8 +33627,7 @@ "recipes": [ "minecraft:orange_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -34741,8 +33661,7 @@ "recipes": [ "minecraft:orange_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -34776,8 +33695,7 @@ "recipes": [ "minecraft:orange_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/orange_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -34824,8 +33742,7 @@ "recipes": [ "minecraft:orange_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/painting": { "parent": "minecraft:recipes/root", @@ -34857,8 +33774,7 @@ "recipes": [ "minecraft:painting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_banner": { "parent": "minecraft:recipes/root", @@ -34892,8 +33808,7 @@ "recipes": [ "minecraft:pink_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_bed": { "parent": "minecraft:recipes/root", @@ -34927,8 +33842,7 @@ "recipes": [ "minecraft:pink_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_candle": { "parent": "minecraft:recipes/root", @@ -34962,8 +33876,7 @@ "recipes": [ "minecraft:pink_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_carpet": { "parent": "minecraft:recipes/root", @@ -34997,8 +33910,7 @@ "recipes": [ "minecraft:pink_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -35032,8 +33944,7 @@ "recipes": [ "minecraft:pink_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -35067,8 +33978,7 @@ "recipes": [ "minecraft:pink_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/pink_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -35115,8 +34025,7 @@ "recipes": [ "minecraft:pink_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_brick_wall": { "parent": "minecraft:recipes/root", @@ -35150,8 +34059,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -35185,8 +34093,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -35220,8 +34127,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -35255,8 +34161,7 @@ "recipes": [ "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_wall": { "parent": "minecraft:recipes/root", @@ -35290,8 +34195,7 @@ "recipes": [ "minecraft:polished_blackstone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -35325,8 +34229,7 @@ "recipes": [ "minecraft:polished_blackstone_wall_from_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -35360,8 +34263,7 @@ "recipes": [ "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_deepslate_wall": { "parent": "minecraft:recipes/root", @@ -35395,8 +34297,7 @@ "recipes": [ "minecraft:polished_deepslate_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -35430,8 +34331,7 @@ "recipes": [ "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting": { "parent": "minecraft:recipes/root", @@ -35465,8 +34365,7 @@ "recipes": [ "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/prismarine_wall": { "parent": "minecraft:recipes/root", @@ -35500,8 +34399,7 @@ "recipes": [ "minecraft:prismarine_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/prismarine_wall_from_prismarine_stonecutting": { "parent": "minecraft:recipes/root", @@ -35535,8 +34433,7 @@ "recipes": [ "minecraft:prismarine_wall_from_prismarine_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_banner": { "parent": "minecraft:recipes/root", @@ -35570,8 +34467,7 @@ "recipes": [ "minecraft:purple_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_bed": { "parent": "minecraft:recipes/root", @@ -35605,8 +34501,7 @@ "recipes": [ "minecraft:purple_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_candle": { "parent": "minecraft:recipes/root", @@ -35640,8 +34535,7 @@ "recipes": [ "minecraft:purple_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_carpet": { "parent": "minecraft:recipes/root", @@ -35675,8 +34569,7 @@ "recipes": [ "minecraft:purple_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -35710,8 +34603,7 @@ "recipes": [ "minecraft:purple_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -35745,8 +34637,7 @@ "recipes": [ "minecraft:purple_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/purple_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -35793,8 +34684,7 @@ "recipes": [ "minecraft:purple_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_banner": { "parent": "minecraft:recipes/root", @@ -35828,8 +34718,7 @@ "recipes": [ "minecraft:red_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_bed": { "parent": "minecraft:recipes/root", @@ -35863,8 +34752,7 @@ "recipes": [ "minecraft:red_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_candle": { "parent": "minecraft:recipes/root", @@ -35898,8 +34786,7 @@ "recipes": [ "minecraft:red_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_carpet": { "parent": "minecraft:recipes/root", @@ -35933,8 +34820,7 @@ "recipes": [ "minecraft:red_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -35968,8 +34854,7 @@ "recipes": [ "minecraft:red_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_nether_brick_wall": { "parent": "minecraft:recipes/root", @@ -36003,8 +34888,7 @@ "recipes": [ "minecraft:red_nether_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -36038,8 +34922,7 @@ "recipes": [ "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_sandstone_wall": { "parent": "minecraft:recipes/root", @@ -36073,8 +34956,7 @@ "recipes": [ "minecraft:red_sandstone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -36108,8 +34990,7 @@ "recipes": [ "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -36143,8 +35024,7 @@ "recipes": [ "minecraft:red_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/red_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -36191,8 +35071,7 @@ "recipes": [ "minecraft:red_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/respawn_anchor": { "parent": "minecraft:recipes/root", @@ -36226,8 +35105,7 @@ "recipes": [ "minecraft:respawn_anchor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/sandstone_wall": { "parent": "minecraft:recipes/root", @@ -36261,8 +35139,7 @@ "recipes": [ "minecraft:sandstone_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/sandstone_wall_from_sandstone_stonecutting": { "parent": "minecraft:recipes/root", @@ -36296,8 +35173,7 @@ "recipes": [ "minecraft:sandstone_wall_from_sandstone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/scaffolding": { "parent": "minecraft:recipes/root", @@ -36331,8 +35207,7 @@ "recipes": [ "minecraft:scaffolding" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/shulker_box": { "parent": "minecraft:recipes/root", @@ -36366,8 +35241,7 @@ "recipes": [ "minecraft:shulker_box" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/smithing_table": { "parent": "minecraft:recipes/root", @@ -36401,8 +35275,7 @@ "recipes": [ "minecraft:smithing_table" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/smoker": { "parent": "minecraft:recipes/root", @@ -36436,8 +35309,7 @@ "recipes": [ "minecraft:smoker" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/snow": { "parent": "minecraft:recipes/root", @@ -36471,8 +35343,7 @@ "recipes": [ "minecraft:snow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/soul_campfire": { "parent": "minecraft:recipes/root", @@ -36504,8 +35375,7 @@ "recipes": [ "minecraft:soul_campfire" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/soul_lantern": { "parent": "minecraft:recipes/root", @@ -36539,8 +35409,7 @@ "recipes": [ "minecraft:soul_lantern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/soul_torch": { "parent": "minecraft:recipes/root", @@ -36572,8 +35441,7 @@ "recipes": [ "minecraft:soul_torch" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/spruce_fence": { "parent": "minecraft:recipes/root", @@ -36607,8 +35475,7 @@ "recipes": [ "minecraft:spruce_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/spruce_hanging_sign": { "parent": "minecraft:recipes/root", @@ -36642,8 +35509,7 @@ "recipes": [ "minecraft:spruce_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/spruce_sign": { "parent": "minecraft:recipes/root", @@ -36677,8 +35543,7 @@ "recipes": [ "minecraft:spruce_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/stonecutter": { "parent": "minecraft:recipes/root", @@ -36712,8 +35577,7 @@ "recipes": [ "minecraft:stonecutter" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/stone_brick_wall": { "parent": "minecraft:recipes/root", @@ -36747,8 +35611,7 @@ "recipes": [ "minecraft:stone_brick_wall" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/stone_brick_walls_from_stone_stonecutting": { "parent": "minecraft:recipes/root", @@ -36782,8 +35645,7 @@ "recipes": [ "minecraft:stone_brick_walls_from_stone_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting": { "parent": "minecraft:recipes/root", @@ -36817,8 +35679,7 @@ "recipes": [ "minecraft:stone_brick_wall_from_stone_bricks_stonecutting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/torch": { "parent": "minecraft:recipes/root", @@ -36852,8 +35713,7 @@ "recipes": [ "minecraft:torch" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/warped_fence": { "parent": "minecraft:recipes/root", @@ -36887,8 +35747,7 @@ "recipes": [ "minecraft:warped_fence" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/warped_hanging_sign": { "parent": "minecraft:recipes/root", @@ -36922,8 +35781,7 @@ "recipes": [ "minecraft:warped_hanging_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/warped_sign": { "parent": "minecraft:recipes/root", @@ -36957,8 +35815,7 @@ "recipes": [ "minecraft:warped_sign" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_banner": { "parent": "minecraft:recipes/root", @@ -36992,8 +35849,7 @@ "recipes": [ "minecraft:white_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_bed": { "parent": "minecraft:recipes/root", @@ -37027,8 +35883,7 @@ "recipes": [ "minecraft:white_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_candle": { "parent": "minecraft:recipes/root", @@ -37062,8 +35917,7 @@ "recipes": [ "minecraft:white_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_carpet": { "parent": "minecraft:recipes/root", @@ -37097,8 +35951,7 @@ "recipes": [ "minecraft:white_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -37132,8 +35985,7 @@ "recipes": [ "minecraft:white_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -37167,8 +36019,7 @@ "recipes": [ "minecraft:white_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/white_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -37215,8 +36066,7 @@ "recipes": [ "minecraft:white_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_banner": { "parent": "minecraft:recipes/root", @@ -37250,8 +36100,7 @@ "recipes": [ "minecraft:yellow_banner" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_bed": { "parent": "minecraft:recipes/root", @@ -37285,8 +36134,7 @@ "recipes": [ "minecraft:yellow_bed" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_candle": { "parent": "minecraft:recipes/root", @@ -37320,8 +36168,7 @@ "recipes": [ "minecraft:yellow_candle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_carpet": { "parent": "minecraft:recipes/root", @@ -37355,8 +36202,7 @@ "recipes": [ "minecraft:yellow_carpet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_glazed_terracotta": { "parent": "minecraft:recipes/root", @@ -37390,8 +36236,7 @@ "recipes": [ "minecraft:yellow_glazed_terracotta" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_stained_glass_pane": { "parent": "minecraft:recipes/root", @@ -37425,8 +36270,7 @@ "recipes": [ "minecraft:yellow_stained_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/decorations/yellow_stained_glass_pane_from_glass_pane": { "parent": "minecraft:recipes/root", @@ -37473,8 +36317,7 @@ "recipes": [ "minecraft:yellow_stained_glass_pane_from_glass_pane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/baked_potato": { "parent": "minecraft:recipes/root", @@ -37508,8 +36351,7 @@ "recipes": [ "minecraft:baked_potato" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/baked_potato_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -37543,8 +36385,7 @@ "recipes": [ "minecraft:baked_potato_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/baked_potato_from_smoking": { "parent": "minecraft:recipes/root", @@ -37578,8 +36419,7 @@ "recipes": [ "minecraft:baked_potato_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/beetroot_soup": { "parent": "minecraft:recipes/root", @@ -37613,8 +36453,7 @@ "recipes": [ "minecraft:beetroot_soup" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/bread": { "parent": "minecraft:recipes/root", @@ -37648,8 +36487,7 @@ "recipes": [ "minecraft:bread" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cake": { "parent": "minecraft:recipes/root", @@ -37683,8 +36521,7 @@ "recipes": [ "minecraft:cake" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_beef": { "parent": "minecraft:recipes/root", @@ -37718,8 +36555,7 @@ "recipes": [ "minecraft:cooked_beef" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_beef_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -37753,8 +36589,7 @@ "recipes": [ "minecraft:cooked_beef_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_beef_from_smoking": { "parent": "minecraft:recipes/root", @@ -37788,8 +36623,7 @@ "recipes": [ "minecraft:cooked_beef_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_chicken": { "parent": "minecraft:recipes/root", @@ -37823,8 +36657,7 @@ "recipes": [ "minecraft:cooked_chicken" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_chicken_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -37858,8 +36691,7 @@ "recipes": [ "minecraft:cooked_chicken_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_chicken_from_smoking": { "parent": "minecraft:recipes/root", @@ -37893,8 +36725,7 @@ "recipes": [ "minecraft:cooked_chicken_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_cod": { "parent": "minecraft:recipes/root", @@ -37928,8 +36759,7 @@ "recipes": [ "minecraft:cooked_cod" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_cod_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -37963,8 +36793,7 @@ "recipes": [ "minecraft:cooked_cod_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_cod_from_smoking": { "parent": "minecraft:recipes/root", @@ -37998,8 +36827,7 @@ "recipes": [ "minecraft:cooked_cod_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_mutton": { "parent": "minecraft:recipes/root", @@ -38033,8 +36861,7 @@ "recipes": [ "minecraft:cooked_mutton" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_mutton_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -38068,8 +36895,7 @@ "recipes": [ "minecraft:cooked_mutton_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_mutton_from_smoking": { "parent": "minecraft:recipes/root", @@ -38103,8 +36929,7 @@ "recipes": [ "minecraft:cooked_mutton_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_porkchop": { "parent": "minecraft:recipes/root", @@ -38138,8 +36963,7 @@ "recipes": [ "minecraft:cooked_porkchop" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_porkchop_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -38173,8 +36997,7 @@ "recipes": [ "minecraft:cooked_porkchop_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_porkchop_from_smoking": { "parent": "minecraft:recipes/root", @@ -38208,8 +37031,7 @@ "recipes": [ "minecraft:cooked_porkchop_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_rabbit": { "parent": "minecraft:recipes/root", @@ -38243,8 +37065,7 @@ "recipes": [ "minecraft:cooked_rabbit" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_rabbit_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -38278,8 +37099,7 @@ "recipes": [ "minecraft:cooked_rabbit_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_rabbit_from_smoking": { "parent": "minecraft:recipes/root", @@ -38313,8 +37133,7 @@ "recipes": [ "minecraft:cooked_rabbit_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_salmon": { "parent": "minecraft:recipes/root", @@ -38348,8 +37167,7 @@ "recipes": [ "minecraft:cooked_salmon" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_salmon_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -38383,8 +37201,7 @@ "recipes": [ "minecraft:cooked_salmon_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cooked_salmon_from_smoking": { "parent": "minecraft:recipes/root", @@ -38418,8 +37235,7 @@ "recipes": [ "minecraft:cooked_salmon_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/cookie": { "parent": "minecraft:recipes/root", @@ -38453,8 +37269,7 @@ "recipes": [ "minecraft:cookie" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/dried_kelp": { "parent": "minecraft:recipes/root", @@ -38488,8 +37303,7 @@ "recipes": [ "minecraft:dried_kelp" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/dried_kelp_from_campfire_cooking": { "parent": "minecraft:recipes/root", @@ -38523,8 +37337,7 @@ "recipes": [ "minecraft:dried_kelp_from_campfire_cooking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/dried_kelp_from_smelting": { "parent": "minecraft:recipes/root", @@ -38558,8 +37371,7 @@ "recipes": [ "minecraft:dried_kelp_from_smelting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/dried_kelp_from_smoking": { "parent": "minecraft:recipes/root", @@ -38593,8 +37405,7 @@ "recipes": [ "minecraft:dried_kelp_from_smoking" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/golden_apple": { "parent": "minecraft:recipes/root", @@ -38628,8 +37439,7 @@ "recipes": [ "minecraft:golden_apple" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/honey_bottle": { "parent": "minecraft:recipes/root", @@ -38663,8 +37473,7 @@ "recipes": [ "minecraft:honey_bottle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/mushroom_stew": { "parent": "minecraft:recipes/root", @@ -38737,8 +37546,7 @@ "recipes": [ "minecraft:mushroom_stew" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/pumpkin_pie": { "parent": "minecraft:recipes/root", @@ -38785,8 +37593,7 @@ "recipes": [ "minecraft:pumpkin_pie" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/rabbit_stew_from_brown_mushroom": { "parent": "minecraft:recipes/root", @@ -38820,8 +37627,7 @@ "recipes": [ "minecraft:rabbit_stew_from_brown_mushroom" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/food/rabbit_stew_from_red_mushroom": { "parent": "minecraft:recipes/root", @@ -38855,8 +37661,7 @@ "recipes": [ "minecraft:rabbit_stew_from_red_mushroom" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/beacon": { "parent": "minecraft:recipes/root", @@ -38890,8 +37695,7 @@ "recipes": [ "minecraft:beacon" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/black_dye": { "parent": "minecraft:recipes/root", @@ -38925,8 +37729,7 @@ "recipes": [ "minecraft:black_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/black_dye_from_wither_rose": { "parent": "minecraft:recipes/root", @@ -38960,8 +37763,7 @@ "recipes": [ "minecraft:black_dye_from_wither_rose" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/blue_dye": { "parent": "minecraft:recipes/root", @@ -38995,8 +37797,7 @@ "recipes": [ "minecraft:blue_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/blue_dye_from_cornflower": { "parent": "minecraft:recipes/root", @@ -39030,8 +37831,7 @@ "recipes": [ "minecraft:blue_dye_from_cornflower" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/bone_meal": { "parent": "minecraft:recipes/root", @@ -39065,8 +37865,7 @@ "recipes": [ "minecraft:bone_meal" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/bone_meal_from_bone_block": { "parent": "minecraft:recipes/root", @@ -39100,8 +37899,7 @@ "recipes": [ "minecraft:bone_meal_from_bone_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/book": { "parent": "minecraft:recipes/root", @@ -39135,8 +37933,7 @@ "recipes": [ "minecraft:book" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/bowl": { "parent": "minecraft:recipes/root", @@ -39196,8 +37993,7 @@ "recipes": [ "minecraft:bowl" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/brick": { "parent": "minecraft:recipes/root", @@ -39231,8 +38027,7 @@ "recipes": [ "minecraft:brick" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/brown_dye": { "parent": "minecraft:recipes/root", @@ -39266,8 +38061,7 @@ "recipes": [ "minecraft:brown_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/bucket": { "parent": "minecraft:recipes/root", @@ -39301,8 +38095,7 @@ "recipes": [ "minecraft:bucket" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/charcoal": { "parent": "minecraft:recipes/root", @@ -39334,8 +38127,7 @@ "recipes": [ "minecraft:charcoal" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coal": { "parent": "minecraft:recipes/root", @@ -39369,8 +38161,7 @@ "recipes": [ "minecraft:coal" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coal_from_blasting_coal_ore": { "parent": "minecraft:recipes/root", @@ -39404,8 +38195,7 @@ "recipes": [ "minecraft:coal_from_blasting_coal_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coal_from_blasting_deepslate_coal_ore": { "parent": "minecraft:recipes/root", @@ -39439,8 +38229,7 @@ "recipes": [ "minecraft:coal_from_blasting_deepslate_coal_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coal_from_smelting_coal_ore": { "parent": "minecraft:recipes/root", @@ -39474,8 +38263,7 @@ "recipes": [ "minecraft:coal_from_smelting_coal_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coal_from_smelting_deepslate_coal_ore": { "parent": "minecraft:recipes/root", @@ -39509,8 +38297,7 @@ "recipes": [ "minecraft:coal_from_smelting_deepslate_coal_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coast_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -39544,8 +38331,7 @@ "recipes": [ "minecraft:coast_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/coast_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -39579,8 +38365,7 @@ "recipes": [ "minecraft:coast_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/conduit": { "parent": "minecraft:recipes/root", @@ -39627,8 +38412,7 @@ "recipes": [ "minecraft:conduit" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot": { "parent": "minecraft:recipes/root", @@ -39662,8 +38446,7 @@ "recipes": [ "minecraft:copper_ingot" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_blasting_copper_ore": { "parent": "minecraft:recipes/root", @@ -39697,8 +38480,7 @@ "recipes": [ "minecraft:copper_ingot_from_blasting_copper_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore": { "parent": "minecraft:recipes/root", @@ -39732,8 +38514,7 @@ "recipes": [ "minecraft:copper_ingot_from_blasting_deepslate_copper_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_blasting_raw_copper": { "parent": "minecraft:recipes/root", @@ -39767,8 +38548,7 @@ "recipes": [ "minecraft:copper_ingot_from_blasting_raw_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_smelting_copper_ore": { "parent": "minecraft:recipes/root", @@ -39802,8 +38582,7 @@ "recipes": [ "minecraft:copper_ingot_from_smelting_copper_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore": { "parent": "minecraft:recipes/root", @@ -39837,8 +38616,7 @@ "recipes": [ "minecraft:copper_ingot_from_smelting_deepslate_copper_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_smelting_raw_copper": { "parent": "minecraft:recipes/root", @@ -39872,8 +38650,7 @@ "recipes": [ "minecraft:copper_ingot_from_smelting_raw_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/copper_ingot_from_waxed_copper_block": { "parent": "minecraft:recipes/root", @@ -39907,8 +38684,7 @@ "recipes": [ "minecraft:copper_ingot_from_waxed_copper_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/creeper_banner_pattern": { "parent": "minecraft:recipes/root", @@ -39942,8 +38718,7 @@ "recipes": [ "minecraft:creeper_banner_pattern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/cyan_dye": { "parent": "minecraft:recipes/root", @@ -39990,8 +38765,7 @@ "recipes": [ "minecraft:cyan_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/cyan_dye_from_pitcher_plant": { "parent": "minecraft:recipes/root", @@ -40025,8 +38799,7 @@ "recipes": [ "minecraft:cyan_dye_from_pitcher_plant" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/diamond": { "parent": "minecraft:recipes/root", @@ -40060,8 +38833,7 @@ "recipes": [ "minecraft:diamond" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/diamond_from_blasting_deepslate_diamond_ore": { "parent": "minecraft:recipes/root", @@ -40095,8 +38867,7 @@ "recipes": [ "minecraft:diamond_from_blasting_deepslate_diamond_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/diamond_from_blasting_diamond_ore": { "parent": "minecraft:recipes/root", @@ -40130,8 +38901,7 @@ "recipes": [ "minecraft:diamond_from_blasting_diamond_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/diamond_from_smelting_deepslate_diamond_ore": { "parent": "minecraft:recipes/root", @@ -40165,8 +38935,7 @@ "recipes": [ "minecraft:diamond_from_smelting_deepslate_diamond_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/diamond_from_smelting_diamond_ore": { "parent": "minecraft:recipes/root", @@ -40200,8 +38969,7 @@ "recipes": [ "minecraft:diamond_from_smelting_diamond_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/dune_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -40235,8 +39003,7 @@ "recipes": [ "minecraft:dune_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/dune_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -40270,8 +39037,7 @@ "recipes": [ "minecraft:dune_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/emerald": { "parent": "minecraft:recipes/root", @@ -40305,8 +39071,7 @@ "recipes": [ "minecraft:emerald" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/emerald_from_blasting_deepslate_emerald_ore": { "parent": "minecraft:recipes/root", @@ -40340,8 +39105,7 @@ "recipes": [ "minecraft:emerald_from_blasting_deepslate_emerald_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/emerald_from_blasting_emerald_ore": { "parent": "minecraft:recipes/root", @@ -40375,8 +39139,7 @@ "recipes": [ "minecraft:emerald_from_blasting_emerald_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/emerald_from_smelting_deepslate_emerald_ore": { "parent": "minecraft:recipes/root", @@ -40410,8 +39173,7 @@ "recipes": [ "minecraft:emerald_from_smelting_deepslate_emerald_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/emerald_from_smelting_emerald_ore": { "parent": "minecraft:recipes/root", @@ -40445,8 +39207,7 @@ "recipes": [ "minecraft:emerald_from_smelting_emerald_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/ender_eye": { "parent": "minecraft:recipes/root", @@ -40480,8 +39241,7 @@ "recipes": [ "minecraft:ender_eye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/eye_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -40515,8 +39275,7 @@ "recipes": [ "minecraft:eye_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/eye_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -40550,8 +39309,7 @@ "recipes": [ "minecraft:eye_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/firework_rocket_simple": { "parent": "minecraft:recipes/root", @@ -40585,8 +39343,7 @@ "recipes": [ "minecraft:firework_rocket_simple" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/fire_charge": { "parent": "minecraft:recipes/root", @@ -40620,8 +39377,7 @@ "recipes": [ "minecraft:fire_charge" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/flower_banner_pattern": { "parent": "minecraft:recipes/root", @@ -40655,8 +39411,7 @@ "recipes": [ "minecraft:flower_banner_pattern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore": { "parent": "minecraft:recipes/root", @@ -40690,8 +39445,7 @@ "recipes": [ "minecraft:gold_ingot_from_blasting_deepslate_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_blasting_gold_ore": { "parent": "minecraft:recipes/root", @@ -40725,8 +39479,7 @@ "recipes": [ "minecraft:gold_ingot_from_blasting_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_blasting_nether_gold_ore": { "parent": "minecraft:recipes/root", @@ -40760,8 +39513,7 @@ "recipes": [ "minecraft:gold_ingot_from_blasting_nether_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_blasting_raw_gold": { "parent": "minecraft:recipes/root", @@ -40795,8 +39547,7 @@ "recipes": [ "minecraft:gold_ingot_from_blasting_raw_gold" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_gold_block": { "parent": "minecraft:recipes/root", @@ -40830,8 +39581,7 @@ "recipes": [ "minecraft:gold_ingot_from_gold_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_nuggets": { "parent": "minecraft:recipes/root", @@ -40865,8 +39615,7 @@ "recipes": [ "minecraft:gold_ingot_from_nuggets" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore": { "parent": "minecraft:recipes/root", @@ -40900,8 +39649,7 @@ "recipes": [ "minecraft:gold_ingot_from_smelting_deepslate_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_smelting_gold_ore": { "parent": "minecraft:recipes/root", @@ -40935,8 +39683,7 @@ "recipes": [ "minecraft:gold_ingot_from_smelting_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_smelting_nether_gold_ore": { "parent": "minecraft:recipes/root", @@ -40970,8 +39717,7 @@ "recipes": [ "minecraft:gold_ingot_from_smelting_nether_gold_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_ingot_from_smelting_raw_gold": { "parent": "minecraft:recipes/root", @@ -41005,8 +39751,7 @@ "recipes": [ "minecraft:gold_ingot_from_smelting_raw_gold" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_nugget": { "parent": "minecraft:recipes/root", @@ -41040,8 +39785,7 @@ "recipes": [ "minecraft:gold_nugget" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_nugget_from_blasting": { "parent": "minecraft:recipes/root", @@ -41192,8 +39936,7 @@ "recipes": [ "minecraft:gold_nugget_from_blasting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gold_nugget_from_smelting": { "parent": "minecraft:recipes/root", @@ -41344,8 +40087,7 @@ "recipes": [ "minecraft:gold_nugget_from_smelting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/gray_dye": { "parent": "minecraft:recipes/root", @@ -41392,8 +40134,7 @@ "recipes": [ "minecraft:gray_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/green_dye": { "parent": "minecraft:recipes/root", @@ -41427,8 +40168,7 @@ "recipes": [ "minecraft:green_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/host_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -41462,8 +40202,7 @@ "recipes": [ "minecraft:host_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/host_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -41497,8 +40236,7 @@ "recipes": [ "minecraft:host_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore": { "parent": "minecraft:recipes/root", @@ -41532,8 +40270,7 @@ "recipes": [ "minecraft:iron_ingot_from_blasting_deepslate_iron_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_blasting_iron_ore": { "parent": "minecraft:recipes/root", @@ -41567,8 +40304,7 @@ "recipes": [ "minecraft:iron_ingot_from_blasting_iron_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_blasting_raw_iron": { "parent": "minecraft:recipes/root", @@ -41602,8 +40338,7 @@ "recipes": [ "minecraft:iron_ingot_from_blasting_raw_iron" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_iron_block": { "parent": "minecraft:recipes/root", @@ -41637,8 +40372,7 @@ "recipes": [ "minecraft:iron_ingot_from_iron_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_nuggets": { "parent": "minecraft:recipes/root", @@ -41672,8 +40406,7 @@ "recipes": [ "minecraft:iron_ingot_from_nuggets" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore": { "parent": "minecraft:recipes/root", @@ -41707,8 +40440,7 @@ "recipes": [ "minecraft:iron_ingot_from_smelting_deepslate_iron_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_smelting_iron_ore": { "parent": "minecraft:recipes/root", @@ -41742,8 +40474,7 @@ "recipes": [ "minecraft:iron_ingot_from_smelting_iron_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_ingot_from_smelting_raw_iron": { "parent": "minecraft:recipes/root", @@ -41777,8 +40508,7 @@ "recipes": [ "minecraft:iron_ingot_from_smelting_raw_iron" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_nugget": { "parent": "minecraft:recipes/root", @@ -41812,8 +40542,7 @@ "recipes": [ "minecraft:iron_nugget" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_nugget_from_blasting": { "parent": "minecraft:recipes/root", @@ -42016,8 +40745,7 @@ "recipes": [ "minecraft:iron_nugget_from_blasting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/iron_nugget_from_smelting": { "parent": "minecraft:recipes/root", @@ -42220,8 +40948,7 @@ "recipes": [ "minecraft:iron_nugget_from_smelting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lapis_lazuli": { "parent": "minecraft:recipes/root", @@ -42255,8 +40982,7 @@ "recipes": [ "minecraft:lapis_lazuli" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore": { "parent": "minecraft:recipes/root", @@ -42290,8 +41016,7 @@ "recipes": [ "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lapis_lazuli_from_blasting_lapis_ore": { "parent": "minecraft:recipes/root", @@ -42325,8 +41050,7 @@ "recipes": [ "minecraft:lapis_lazuli_from_blasting_lapis_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore": { "parent": "minecraft:recipes/root", @@ -42360,8 +41084,7 @@ "recipes": [ "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lapis_lazuli_from_smelting_lapis_ore": { "parent": "minecraft:recipes/root", @@ -42395,8 +41118,7 @@ "recipes": [ "minecraft:lapis_lazuli_from_smelting_lapis_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/leather": { "parent": "minecraft:recipes/root", @@ -42430,8 +41152,7 @@ "recipes": [ "minecraft:leather" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/leather_horse_armor": { "parent": "minecraft:recipes/root", @@ -42465,8 +41186,7 @@ "recipes": [ "minecraft:leather_horse_armor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_blue_dye_from_blue_orchid": { "parent": "minecraft:recipes/root", @@ -42500,8 +41220,7 @@ "recipes": [ "minecraft:light_blue_dye_from_blue_orchid" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_blue_dye_from_blue_white_dye": { "parent": "minecraft:recipes/root", @@ -42548,8 +41267,7 @@ "recipes": [ "minecraft:light_blue_dye_from_blue_white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_gray_dye_from_azure_bluet": { "parent": "minecraft:recipes/root", @@ -42583,8 +41301,7 @@ "recipes": [ "minecraft:light_gray_dye_from_azure_bluet" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_gray_dye_from_black_white_dye": { "parent": "minecraft:recipes/root", @@ -42631,8 +41348,7 @@ "recipes": [ "minecraft:light_gray_dye_from_black_white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_gray_dye_from_gray_white_dye": { "parent": "minecraft:recipes/root", @@ -42679,8 +41395,7 @@ "recipes": [ "minecraft:light_gray_dye_from_gray_white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_gray_dye_from_oxeye_daisy": { "parent": "minecraft:recipes/root", @@ -42714,8 +41429,7 @@ "recipes": [ "minecraft:light_gray_dye_from_oxeye_daisy" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/light_gray_dye_from_white_tulip": { "parent": "minecraft:recipes/root", @@ -42749,8 +41463,7 @@ "recipes": [ "minecraft:light_gray_dye_from_white_tulip" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lime_dye": { "parent": "minecraft:recipes/root", @@ -42797,8 +41510,7 @@ "recipes": [ "minecraft:lime_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/lime_dye_from_smelting": { "parent": "minecraft:recipes/root", @@ -42832,8 +41544,7 @@ "recipes": [ "minecraft:lime_dye_from_smelting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/magenta_dye_from_allium": { "parent": "minecraft:recipes/root", @@ -42867,8 +41578,7 @@ "recipes": [ "minecraft:magenta_dye_from_allium" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/magenta_dye_from_blue_red_pink": { "parent": "minecraft:recipes/root", @@ -42928,8 +41638,7 @@ "recipes": [ "minecraft:magenta_dye_from_blue_red_pink" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/magenta_dye_from_blue_red_white_dye": { "parent": "minecraft:recipes/root", @@ -42989,8 +41698,7 @@ "recipes": [ "minecraft:magenta_dye_from_blue_red_white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/magenta_dye_from_lilac": { "parent": "minecraft:recipes/root", @@ -43024,8 +41732,7 @@ "recipes": [ "minecraft:magenta_dye_from_lilac" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/magenta_dye_from_purple_and_pink": { "parent": "minecraft:recipes/root", @@ -43072,8 +41779,7 @@ "recipes": [ "minecraft:magenta_dye_from_purple_and_pink" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/map": { "parent": "minecraft:recipes/root", @@ -43107,8 +41813,7 @@ "recipes": [ "minecraft:map" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/melon_seeds": { "parent": "minecraft:recipes/root", @@ -43142,8 +41847,7 @@ "recipes": [ "minecraft:melon_seeds" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/mojang_banner_pattern": { "parent": "minecraft:recipes/root", @@ -43177,8 +41881,7 @@ "recipes": [ "minecraft:mojang_banner_pattern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/music_disc_5": { "parent": "minecraft:recipes/root", @@ -43212,8 +41915,7 @@ "recipes": [ "minecraft:music_disc_5" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/netherite_ingot": { "parent": "minecraft:recipes/root", @@ -43247,8 +41949,7 @@ "recipes": [ "minecraft:netherite_ingot" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/netherite_ingot_from_netherite_block": { "parent": "minecraft:recipes/root", @@ -43282,8 +41983,7 @@ "recipes": [ "minecraft:netherite_ingot_from_netherite_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/netherite_scrap": { "parent": "minecraft:recipes/root", @@ -43317,8 +42017,7 @@ "recipes": [ "minecraft:netherite_scrap" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/netherite_scrap_from_blasting": { "parent": "minecraft:recipes/root", @@ -43352,8 +42051,7 @@ "recipes": [ "minecraft:netherite_scrap_from_blasting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/netherite_upgrade_smithing_template": { "parent": "minecraft:recipes/root", @@ -43387,8 +42085,7 @@ "recipes": [ "minecraft:netherite_upgrade_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/nether_brick": { "parent": "minecraft:recipes/root", @@ -43422,8 +42119,7 @@ "recipes": [ "minecraft:nether_brick" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/orange_dye_from_orange_tulip": { "parent": "minecraft:recipes/root", @@ -43457,8 +42153,7 @@ "recipes": [ "minecraft:orange_dye_from_orange_tulip" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/orange_dye_from_red_yellow": { "parent": "minecraft:recipes/root", @@ -43505,8 +42200,7 @@ "recipes": [ "minecraft:orange_dye_from_red_yellow" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/orange_dye_from_torchflower": { "parent": "minecraft:recipes/root", @@ -43540,8 +42234,7 @@ "recipes": [ "minecraft:orange_dye_from_torchflower" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/paper": { "parent": "minecraft:recipes/root", @@ -43575,8 +42268,7 @@ "recipes": [ "minecraft:paper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/pink_dye_from_peony": { "parent": "minecraft:recipes/root", @@ -43610,8 +42302,7 @@ "recipes": [ "minecraft:pink_dye_from_peony" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/pink_dye_from_pink_petals": { "parent": "minecraft:recipes/root", @@ -43645,8 +42336,7 @@ "recipes": [ "minecraft:pink_dye_from_pink_petals" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/pink_dye_from_pink_tulip": { "parent": "minecraft:recipes/root", @@ -43680,8 +42370,7 @@ "recipes": [ "minecraft:pink_dye_from_pink_tulip" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/pink_dye_from_red_white_dye": { "parent": "minecraft:recipes/root", @@ -43728,8 +42417,7 @@ "recipes": [ "minecraft:pink_dye_from_red_white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/popped_chorus_fruit": { "parent": "minecraft:recipes/root", @@ -43763,8 +42451,7 @@ "recipes": [ "minecraft:popped_chorus_fruit" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/pumpkin_seeds": { "parent": "minecraft:recipes/root", @@ -43798,8 +42485,7 @@ "recipes": [ "minecraft:pumpkin_seeds" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/purple_dye": { "parent": "minecraft:recipes/root", @@ -43846,8 +42532,7 @@ "recipes": [ "minecraft:purple_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/quartz": { "parent": "minecraft:recipes/root", @@ -43881,8 +42566,7 @@ "recipes": [ "minecraft:quartz" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/quartz_from_blasting": { "parent": "minecraft:recipes/root", @@ -43916,8 +42600,7 @@ "recipes": [ "minecraft:quartz_from_blasting" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/raiser_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -43951,8 +42634,7 @@ "recipes": [ "minecraft:raiser_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/raiser_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -43986,8 +42668,7 @@ "recipes": [ "minecraft:raiser_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/raw_copper": { "parent": "minecraft:recipes/root", @@ -44021,8 +42702,7 @@ "recipes": [ "minecraft:raw_copper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/raw_gold": { "parent": "minecraft:recipes/root", @@ -44056,8 +42736,7 @@ "recipes": [ "minecraft:raw_gold" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/raw_iron": { "parent": "minecraft:recipes/root", @@ -44091,8 +42770,7 @@ "recipes": [ "minecraft:raw_iron" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/red_dye_from_beetroot": { "parent": "minecraft:recipes/root", @@ -44126,8 +42804,7 @@ "recipes": [ "minecraft:red_dye_from_beetroot" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/red_dye_from_poppy": { "parent": "minecraft:recipes/root", @@ -44161,8 +42838,7 @@ "recipes": [ "minecraft:red_dye_from_poppy" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/red_dye_from_rose_bush": { "parent": "minecraft:recipes/root", @@ -44196,8 +42872,7 @@ "recipes": [ "minecraft:red_dye_from_rose_bush" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/red_dye_from_tulip": { "parent": "minecraft:recipes/root", @@ -44231,8 +42906,7 @@ "recipes": [ "minecraft:red_dye_from_tulip" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/rib_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44266,8 +42940,7 @@ "recipes": [ "minecraft:rib_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/rib_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44301,8 +42974,7 @@ "recipes": [ "minecraft:rib_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/sentry_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44336,8 +43008,7 @@ "recipes": [ "minecraft:sentry_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/sentry_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44371,8 +43042,7 @@ "recipes": [ "minecraft:sentry_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/shaper_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44406,8 +43076,7 @@ "recipes": [ "minecraft:shaper_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/shaper_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44441,8 +43110,7 @@ "recipes": [ "minecraft:shaper_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/silence_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44476,8 +43144,7 @@ "recipes": [ "minecraft:silence_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/silence_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44511,8 +43178,7 @@ "recipes": [ "minecraft:silence_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/skull_banner_pattern": { "parent": "minecraft:recipes/root", @@ -44546,8 +43212,7 @@ "recipes": [ "minecraft:skull_banner_pattern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/slime_ball": { "parent": "minecraft:recipes/root", @@ -44581,8 +43246,7 @@ "recipes": [ "minecraft:slime_ball" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/snout_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44616,8 +43280,7 @@ "recipes": [ "minecraft:snout_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/snout_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44651,8 +43314,7 @@ "recipes": [ "minecraft:snout_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/spire_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44686,8 +43348,7 @@ "recipes": [ "minecraft:spire_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/spire_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44721,8 +43382,7 @@ "recipes": [ "minecraft:spire_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/stick": { "parent": "minecraft:recipes/root", @@ -44754,8 +43414,7 @@ "recipes": [ "minecraft:stick" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/stick_from_bamboo_item": { "parent": "minecraft:recipes/root", @@ -44789,8 +43448,7 @@ "recipes": [ "minecraft:stick_from_bamboo_item" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/sugar_from_honey_bottle": { "parent": "minecraft:recipes/root", @@ -44824,8 +43482,7 @@ "recipes": [ "minecraft:sugar_from_honey_bottle" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/sugar_from_sugar_cane": { "parent": "minecraft:recipes/root", @@ -44859,8 +43516,7 @@ "recipes": [ "minecraft:sugar_from_sugar_cane" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/tide_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44894,8 +43550,7 @@ "recipes": [ "minecraft:tide_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/tide_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44929,8 +43584,7 @@ "recipes": [ "minecraft:tide_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/vex_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -44964,8 +43618,7 @@ "recipes": [ "minecraft:vex_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/vex_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -44999,8 +43652,7 @@ "recipes": [ "minecraft:vex_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/ward_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -45034,8 +43686,7 @@ "recipes": [ "minecraft:ward_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/ward_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -45069,8 +43720,7 @@ "recipes": [ "minecraft:ward_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/wayfinder_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -45104,8 +43754,7 @@ "recipes": [ "minecraft:wayfinder_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -45139,8 +43788,7 @@ "recipes": [ "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/wheat": { "parent": "minecraft:recipes/root", @@ -45174,8 +43822,7 @@ "recipes": [ "minecraft:wheat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/white_dye": { "parent": "minecraft:recipes/root", @@ -45209,8 +43856,7 @@ "recipes": [ "minecraft:white_dye" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/white_dye_from_lily_of_the_valley": { "parent": "minecraft:recipes/root", @@ -45244,8 +43890,7 @@ "recipes": [ "minecraft:white_dye_from_lily_of_the_valley" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/wild_armor_trim_smithing_template": { "parent": "minecraft:recipes/root", @@ -45279,8 +43924,7 @@ "recipes": [ "minecraft:wild_armor_trim_smithing_template" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/wild_armor_trim_smithing_template_smithing_trim": { "parent": "minecraft:recipes/root", @@ -45314,8 +43958,7 @@ "recipes": [ "minecraft:wild_armor_trim_smithing_template_smithing_trim" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/writable_book": { "parent": "minecraft:recipes/root", @@ -45349,8 +43992,7 @@ "recipes": [ "minecraft:writable_book" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/yellow_dye_from_dandelion": { "parent": "minecraft:recipes/root", @@ -45384,8 +44026,7 @@ "recipes": [ "minecraft:yellow_dye_from_dandelion" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/misc/yellow_dye_from_sunflower": { "parent": "minecraft:recipes/root", @@ -45419,8 +44060,7 @@ "recipes": [ "minecraft:yellow_dye_from_sunflower" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/acacia_button": { "parent": "minecraft:recipes/root", @@ -45454,8 +44094,7 @@ "recipes": [ "minecraft:acacia_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/acacia_door": { "parent": "minecraft:recipes/root", @@ -45489,8 +44128,7 @@ "recipes": [ "minecraft:acacia_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/acacia_fence_gate": { "parent": "minecraft:recipes/root", @@ -45524,8 +44162,7 @@ "recipes": [ "minecraft:acacia_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/acacia_pressure_plate": { "parent": "minecraft:recipes/root", @@ -45559,8 +44196,7 @@ "recipes": [ "minecraft:acacia_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/acacia_trapdoor": { "parent": "minecraft:recipes/root", @@ -45594,8 +44230,7 @@ "recipes": [ "minecraft:acacia_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/bamboo_button": { "parent": "minecraft:recipes/root", @@ -45629,8 +44264,7 @@ "recipes": [ "minecraft:bamboo_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/bamboo_door": { "parent": "minecraft:recipes/root", @@ -45664,8 +44298,7 @@ "recipes": [ "minecraft:bamboo_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/bamboo_fence_gate": { "parent": "minecraft:recipes/root", @@ -45699,8 +44332,7 @@ "recipes": [ "minecraft:bamboo_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/bamboo_pressure_plate": { "parent": "minecraft:recipes/root", @@ -45734,8 +44366,7 @@ "recipes": [ "minecraft:bamboo_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/bamboo_trapdoor": { "parent": "minecraft:recipes/root", @@ -45769,8 +44400,7 @@ "recipes": [ "minecraft:bamboo_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/birch_button": { "parent": "minecraft:recipes/root", @@ -45804,8 +44434,7 @@ "recipes": [ "minecraft:birch_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/birch_door": { "parent": "minecraft:recipes/root", @@ -45839,8 +44468,7 @@ "recipes": [ "minecraft:birch_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/birch_fence_gate": { "parent": "minecraft:recipes/root", @@ -45874,8 +44502,7 @@ "recipes": [ "minecraft:birch_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/birch_pressure_plate": { "parent": "minecraft:recipes/root", @@ -45909,8 +44536,7 @@ "recipes": [ "minecraft:birch_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/birch_trapdoor": { "parent": "minecraft:recipes/root", @@ -45944,8 +44570,7 @@ "recipes": [ "minecraft:birch_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/calibrated_sculk_sensor": { "parent": "minecraft:recipes/root", @@ -45979,8 +44604,7 @@ "recipes": [ "minecraft:calibrated_sculk_sensor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/cherry_button": { "parent": "minecraft:recipes/root", @@ -46014,8 +44638,7 @@ "recipes": [ "minecraft:cherry_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/cherry_door": { "parent": "minecraft:recipes/root", @@ -46049,8 +44672,7 @@ "recipes": [ "minecraft:cherry_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/cherry_fence_gate": { "parent": "minecraft:recipes/root", @@ -46084,8 +44706,7 @@ "recipes": [ "minecraft:cherry_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/cherry_pressure_plate": { "parent": "minecraft:recipes/root", @@ -46119,8 +44740,7 @@ "recipes": [ "minecraft:cherry_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/cherry_trapdoor": { "parent": "minecraft:recipes/root", @@ -46154,8 +44774,7 @@ "recipes": [ "minecraft:cherry_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/comparator": { "parent": "minecraft:recipes/root", @@ -46189,8 +44808,7 @@ "recipes": [ "minecraft:comparator" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/crimson_button": { "parent": "minecraft:recipes/root", @@ -46224,8 +44842,7 @@ "recipes": [ "minecraft:crimson_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/crimson_door": { "parent": "minecraft:recipes/root", @@ -46259,8 +44876,7 @@ "recipes": [ "minecraft:crimson_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/crimson_fence_gate": { "parent": "minecraft:recipes/root", @@ -46294,8 +44910,7 @@ "recipes": [ "minecraft:crimson_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/crimson_pressure_plate": { "parent": "minecraft:recipes/root", @@ -46329,8 +44944,7 @@ "recipes": [ "minecraft:crimson_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/crimson_trapdoor": { "parent": "minecraft:recipes/root", @@ -46364,8 +44978,7 @@ "recipes": [ "minecraft:crimson_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dark_oak_button": { "parent": "minecraft:recipes/root", @@ -46399,8 +45012,7 @@ "recipes": [ "minecraft:dark_oak_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dark_oak_door": { "parent": "minecraft:recipes/root", @@ -46434,8 +45046,7 @@ "recipes": [ "minecraft:dark_oak_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dark_oak_fence_gate": { "parent": "minecraft:recipes/root", @@ -46469,8 +45080,7 @@ "recipes": [ "minecraft:dark_oak_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dark_oak_pressure_plate": { "parent": "minecraft:recipes/root", @@ -46504,8 +45114,7 @@ "recipes": [ "minecraft:dark_oak_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dark_oak_trapdoor": { "parent": "minecraft:recipes/root", @@ -46539,8 +45148,7 @@ "recipes": [ "minecraft:dark_oak_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/daylight_detector": { "parent": "minecraft:recipes/root", @@ -46574,8 +45182,7 @@ "recipes": [ "minecraft:daylight_detector" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dispenser": { "parent": "minecraft:recipes/root", @@ -46609,8 +45216,7 @@ "recipes": [ "minecraft:dispenser" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/dropper": { "parent": "minecraft:recipes/root", @@ -46644,8 +45250,7 @@ "recipes": [ "minecraft:dropper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/heavy_weighted_pressure_plate": { "parent": "minecraft:recipes/root", @@ -46679,8 +45284,7 @@ "recipes": [ "minecraft:heavy_weighted_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/honey_block": { "parent": "minecraft:recipes/root", @@ -46714,8 +45318,7 @@ "recipes": [ "minecraft:honey_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/hopper": { "parent": "minecraft:recipes/root", @@ -46749,8 +45352,7 @@ "recipes": [ "minecraft:hopper" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/iron_door": { "parent": "minecraft:recipes/root", @@ -46784,8 +45386,7 @@ "recipes": [ "minecraft:iron_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/iron_trapdoor": { "parent": "minecraft:recipes/root", @@ -46819,8 +45420,7 @@ "recipes": [ "minecraft:iron_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/jungle_button": { "parent": "minecraft:recipes/root", @@ -46854,8 +45454,7 @@ "recipes": [ "minecraft:jungle_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/jungle_door": { "parent": "minecraft:recipes/root", @@ -46889,8 +45488,7 @@ "recipes": [ "minecraft:jungle_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/jungle_fence_gate": { "parent": "minecraft:recipes/root", @@ -46924,8 +45522,7 @@ "recipes": [ "minecraft:jungle_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/jungle_pressure_plate": { "parent": "minecraft:recipes/root", @@ -46959,8 +45556,7 @@ "recipes": [ "minecraft:jungle_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/jungle_trapdoor": { "parent": "minecraft:recipes/root", @@ -46994,8 +45590,7 @@ "recipes": [ "minecraft:jungle_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/lectern": { "parent": "minecraft:recipes/root", @@ -47029,8 +45624,7 @@ "recipes": [ "minecraft:lectern" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/lever": { "parent": "minecraft:recipes/root", @@ -47064,8 +45658,7 @@ "recipes": [ "minecraft:lever" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/lightning_rod": { "parent": "minecraft:recipes/root", @@ -47099,8 +45692,7 @@ "recipes": [ "minecraft:lightning_rod" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/light_weighted_pressure_plate": { "parent": "minecraft:recipes/root", @@ -47134,8 +45726,7 @@ "recipes": [ "minecraft:light_weighted_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/mangrove_button": { "parent": "minecraft:recipes/root", @@ -47169,8 +45760,7 @@ "recipes": [ "minecraft:mangrove_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/mangrove_door": { "parent": "minecraft:recipes/root", @@ -47204,8 +45794,7 @@ "recipes": [ "minecraft:mangrove_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/mangrove_fence_gate": { "parent": "minecraft:recipes/root", @@ -47239,8 +45828,7 @@ "recipes": [ "minecraft:mangrove_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/mangrove_pressure_plate": { "parent": "minecraft:recipes/root", @@ -47274,8 +45862,7 @@ "recipes": [ "minecraft:mangrove_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/mangrove_trapdoor": { "parent": "minecraft:recipes/root", @@ -47309,8 +45896,7 @@ "recipes": [ "minecraft:mangrove_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/note_block": { "parent": "minecraft:recipes/root", @@ -47344,8 +45930,7 @@ "recipes": [ "minecraft:note_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/oak_button": { "parent": "minecraft:recipes/root", @@ -47379,8 +45964,7 @@ "recipes": [ "minecraft:oak_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/oak_door": { "parent": "minecraft:recipes/root", @@ -47414,8 +45998,7 @@ "recipes": [ "minecraft:oak_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/oak_fence_gate": { "parent": "minecraft:recipes/root", @@ -47449,8 +46032,7 @@ "recipes": [ "minecraft:oak_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/oak_pressure_plate": { "parent": "minecraft:recipes/root", @@ -47484,8 +46066,7 @@ "recipes": [ "minecraft:oak_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/oak_trapdoor": { "parent": "minecraft:recipes/root", @@ -47519,8 +46100,7 @@ "recipes": [ "minecraft:oak_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/observer": { "parent": "minecraft:recipes/root", @@ -47554,8 +46134,7 @@ "recipes": [ "minecraft:observer" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/piston": { "parent": "minecraft:recipes/root", @@ -47589,8 +46168,7 @@ "recipes": [ "minecraft:piston" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/polished_blackstone_button": { "parent": "minecraft:recipes/root", @@ -47624,8 +46202,7 @@ "recipes": [ "minecraft:polished_blackstone_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/polished_blackstone_pressure_plate": { "parent": "minecraft:recipes/root", @@ -47659,8 +46236,7 @@ "recipes": [ "minecraft:polished_blackstone_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone": { "parent": "minecraft:recipes/root", @@ -47694,8 +46270,7 @@ "recipes": [ "minecraft:redstone" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_block": { "parent": "minecraft:recipes/root", @@ -47729,8 +46304,7 @@ "recipes": [ "minecraft:redstone_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_from_blasting_deepslate_redstone_ore": { "parent": "minecraft:recipes/root", @@ -47764,8 +46338,7 @@ "recipes": [ "minecraft:redstone_from_blasting_deepslate_redstone_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_from_blasting_redstone_ore": { "parent": "minecraft:recipes/root", @@ -47799,8 +46372,7 @@ "recipes": [ "minecraft:redstone_from_blasting_redstone_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_from_smelting_deepslate_redstone_ore": { "parent": "minecraft:recipes/root", @@ -47834,8 +46406,7 @@ "recipes": [ "minecraft:redstone_from_smelting_deepslate_redstone_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_from_smelting_redstone_ore": { "parent": "minecraft:recipes/root", @@ -47869,8 +46440,7 @@ "recipes": [ "minecraft:redstone_from_smelting_redstone_ore" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_lamp": { "parent": "minecraft:recipes/root", @@ -47904,8 +46474,7 @@ "recipes": [ "minecraft:redstone_lamp" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/redstone_torch": { "parent": "minecraft:recipes/root", @@ -47939,8 +46508,7 @@ "recipes": [ "minecraft:redstone_torch" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/repeater": { "parent": "minecraft:recipes/root", @@ -47974,8 +46542,7 @@ "recipes": [ "minecraft:repeater" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/slime_block": { "parent": "minecraft:recipes/root", @@ -48009,8 +46576,7 @@ "recipes": [ "minecraft:slime_block" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/spruce_button": { "parent": "minecraft:recipes/root", @@ -48044,8 +46610,7 @@ "recipes": [ "minecraft:spruce_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/spruce_door": { "parent": "minecraft:recipes/root", @@ -48079,8 +46644,7 @@ "recipes": [ "minecraft:spruce_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/spruce_fence_gate": { "parent": "minecraft:recipes/root", @@ -48114,8 +46678,7 @@ "recipes": [ "minecraft:spruce_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/spruce_pressure_plate": { "parent": "minecraft:recipes/root", @@ -48149,8 +46712,7 @@ "recipes": [ "minecraft:spruce_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/spruce_trapdoor": { "parent": "minecraft:recipes/root", @@ -48184,8 +46746,7 @@ "recipes": [ "minecraft:spruce_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/sticky_piston": { "parent": "minecraft:recipes/root", @@ -48219,8 +46780,7 @@ "recipes": [ "minecraft:sticky_piston" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/stone_button": { "parent": "minecraft:recipes/root", @@ -48254,8 +46814,7 @@ "recipes": [ "minecraft:stone_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/stone_pressure_plate": { "parent": "minecraft:recipes/root", @@ -48289,8 +46848,7 @@ "recipes": [ "minecraft:stone_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/target": { "parent": "minecraft:recipes/root", @@ -48337,8 +46895,7 @@ "recipes": [ "minecraft:target" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/tnt": { "parent": "minecraft:recipes/root", @@ -48372,8 +46929,7 @@ "recipes": [ "minecraft:tnt" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/trapped_chest": { "parent": "minecraft:recipes/root", @@ -48407,8 +46963,7 @@ "recipes": [ "minecraft:trapped_chest" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/tripwire_hook": { "parent": "minecraft:recipes/root", @@ -48442,8 +46997,7 @@ "recipes": [ "minecraft:tripwire_hook" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/warped_button": { "parent": "minecraft:recipes/root", @@ -48477,8 +47031,7 @@ "recipes": [ "minecraft:warped_button" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/warped_door": { "parent": "minecraft:recipes/root", @@ -48512,8 +47065,7 @@ "recipes": [ "minecraft:warped_door" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/warped_fence_gate": { "parent": "minecraft:recipes/root", @@ -48547,8 +47099,7 @@ "recipes": [ "minecraft:warped_fence_gate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/warped_pressure_plate": { "parent": "minecraft:recipes/root", @@ -48582,8 +47133,7 @@ "recipes": [ "minecraft:warped_pressure_plate" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/redstone/warped_trapdoor": { "parent": "minecraft:recipes/root", @@ -48617,8 +47167,7 @@ "recipes": [ "minecraft:warped_trapdoor" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/brush": { "parent": "minecraft:recipes/root", @@ -48652,8 +47201,7 @@ "recipes": [ "minecraft:brush" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/clock": { "parent": "minecraft:recipes/root", @@ -48687,8 +47235,7 @@ "recipes": [ "minecraft:clock" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/compass": { "parent": "minecraft:recipes/root", @@ -48722,8 +47269,7 @@ "recipes": [ "minecraft:compass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/diamond_axe": { "parent": "minecraft:recipes/root", @@ -48757,8 +47303,7 @@ "recipes": [ "minecraft:diamond_axe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/diamond_hoe": { "parent": "minecraft:recipes/root", @@ -48792,8 +47337,7 @@ "recipes": [ "minecraft:diamond_hoe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/diamond_pickaxe": { "parent": "minecraft:recipes/root", @@ -48827,8 +47371,7 @@ "recipes": [ "minecraft:diamond_pickaxe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/diamond_shovel": { "parent": "minecraft:recipes/root", @@ -48862,8 +47405,7 @@ "recipes": [ "minecraft:diamond_shovel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/fishing_rod": { "parent": "minecraft:recipes/root", @@ -48897,8 +47439,7 @@ "recipes": [ "minecraft:fishing_rod" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/flint_and_steel": { "parent": "minecraft:recipes/root", @@ -48945,8 +47486,7 @@ "recipes": [ "minecraft:flint_and_steel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/golden_axe": { "parent": "minecraft:recipes/root", @@ -48980,8 +47520,7 @@ "recipes": [ "minecraft:golden_axe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/golden_hoe": { "parent": "minecraft:recipes/root", @@ -49015,8 +47554,7 @@ "recipes": [ "minecraft:golden_hoe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/golden_pickaxe": { "parent": "minecraft:recipes/root", @@ -49050,8 +47588,7 @@ "recipes": [ "minecraft:golden_pickaxe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/golden_shovel": { "parent": "minecraft:recipes/root", @@ -49085,8 +47622,7 @@ "recipes": [ "minecraft:golden_shovel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/iron_axe": { "parent": "minecraft:recipes/root", @@ -49120,8 +47656,7 @@ "recipes": [ "minecraft:iron_axe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/iron_hoe": { "parent": "minecraft:recipes/root", @@ -49155,8 +47690,7 @@ "recipes": [ "minecraft:iron_hoe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/iron_pickaxe": { "parent": "minecraft:recipes/root", @@ -49190,8 +47724,7 @@ "recipes": [ "minecraft:iron_pickaxe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/iron_shovel": { "parent": "minecraft:recipes/root", @@ -49225,8 +47758,7 @@ "recipes": [ "minecraft:iron_shovel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/lead": { "parent": "minecraft:recipes/root", @@ -49260,8 +47792,7 @@ "recipes": [ "minecraft:lead" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/netherite_axe_smithing": { "parent": "minecraft:recipes/root", @@ -49295,8 +47826,7 @@ "recipes": [ "minecraft:netherite_axe_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/netherite_hoe_smithing": { "parent": "minecraft:recipes/root", @@ -49330,8 +47860,7 @@ "recipes": [ "minecraft:netherite_hoe_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/netherite_pickaxe_smithing": { "parent": "minecraft:recipes/root", @@ -49365,8 +47894,7 @@ "recipes": [ "minecraft:netherite_pickaxe_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/netherite_shovel_smithing": { "parent": "minecraft:recipes/root", @@ -49400,8 +47928,7 @@ "recipes": [ "minecraft:netherite_shovel_smithing" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/recovery_compass": { "parent": "minecraft:recipes/root", @@ -49435,8 +47962,7 @@ "recipes": [ "minecraft:recovery_compass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/shears": { "parent": "minecraft:recipes/root", @@ -49470,8 +47996,7 @@ "recipes": [ "minecraft:shears" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/spyglass": { "parent": "minecraft:recipes/root", @@ -49505,8 +48030,7 @@ "recipes": [ "minecraft:spyglass" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/stone_axe": { "parent": "minecraft:recipes/root", @@ -49538,8 +48062,7 @@ "recipes": [ "minecraft:stone_axe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/stone_hoe": { "parent": "minecraft:recipes/root", @@ -49571,8 +48094,7 @@ "recipes": [ "minecraft:stone_hoe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/stone_pickaxe": { "parent": "minecraft:recipes/root", @@ -49604,8 +48126,7 @@ "recipes": [ "minecraft:stone_pickaxe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/stone_shovel": { "parent": "minecraft:recipes/root", @@ -49637,8 +48158,7 @@ "recipes": [ "minecraft:stone_shovel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/wooden_axe": { "parent": "minecraft:recipes/root", @@ -49672,8 +48192,7 @@ "recipes": [ "minecraft:wooden_axe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/wooden_hoe": { "parent": "minecraft:recipes/root", @@ -49707,8 +48226,7 @@ "recipes": [ "minecraft:wooden_hoe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/wooden_pickaxe": { "parent": "minecraft:recipes/root", @@ -49742,8 +48260,7 @@ "recipes": [ "minecraft:wooden_pickaxe" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/tools/wooden_shovel": { "parent": "minecraft:recipes/root", @@ -49777,8 +48294,7 @@ "recipes": [ "minecraft:wooden_shovel" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/acacia_boat": { "parent": "minecraft:recipes/root", @@ -49806,8 +48322,7 @@ "recipes": [ "minecraft:acacia_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/acacia_chest_boat": { "parent": "minecraft:recipes/root", @@ -49839,8 +48354,7 @@ "recipes": [ "minecraft:acacia_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/activator_rail": { "parent": "minecraft:recipes/root", @@ -49874,8 +48388,7 @@ "recipes": [ "minecraft:activator_rail" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/bamboo_chest_raft": { "parent": "minecraft:recipes/root", @@ -49907,8 +48420,7 @@ "recipes": [ "minecraft:bamboo_chest_raft" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/bamboo_raft": { "parent": "minecraft:recipes/root", @@ -49936,8 +48448,7 @@ "recipes": [ "minecraft:bamboo_raft" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/birch_boat": { "parent": "minecraft:recipes/root", @@ -49965,8 +48476,7 @@ "recipes": [ "minecraft:birch_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/birch_chest_boat": { "parent": "minecraft:recipes/root", @@ -49998,8 +48508,7 @@ "recipes": [ "minecraft:birch_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/carrot_on_a_stick": { "parent": "minecraft:recipes/root", @@ -50033,8 +48542,7 @@ "recipes": [ "minecraft:carrot_on_a_stick" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/cherry_boat": { "parent": "minecraft:recipes/root", @@ -50062,8 +48570,7 @@ "recipes": [ "minecraft:cherry_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/cherry_chest_boat": { "parent": "minecraft:recipes/root", @@ -50095,8 +48602,7 @@ "recipes": [ "minecraft:cherry_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/chest_minecart": { "parent": "minecraft:recipes/root", @@ -50130,8 +48636,7 @@ "recipes": [ "minecraft:chest_minecart" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/dark_oak_boat": { "parent": "minecraft:recipes/root", @@ -50159,8 +48664,7 @@ "recipes": [ "minecraft:dark_oak_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/dark_oak_chest_boat": { "parent": "minecraft:recipes/root", @@ -50192,8 +48696,7 @@ "recipes": [ "minecraft:dark_oak_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/detector_rail": { "parent": "minecraft:recipes/root", @@ -50227,8 +48730,7 @@ "recipes": [ "minecraft:detector_rail" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/furnace_minecart": { "parent": "minecraft:recipes/root", @@ -50262,8 +48764,7 @@ "recipes": [ "minecraft:furnace_minecart" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/hopper_minecart": { "parent": "minecraft:recipes/root", @@ -50297,8 +48798,7 @@ "recipes": [ "minecraft:hopper_minecart" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/jungle_boat": { "parent": "minecraft:recipes/root", @@ -50326,8 +48826,7 @@ "recipes": [ "minecraft:jungle_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/jungle_chest_boat": { "parent": "minecraft:recipes/root", @@ -50359,8 +48858,7 @@ "recipes": [ "minecraft:jungle_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/mangrove_boat": { "parent": "minecraft:recipes/root", @@ -50388,8 +48886,7 @@ "recipes": [ "minecraft:mangrove_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/mangrove_chest_boat": { "parent": "minecraft:recipes/root", @@ -50421,8 +48918,7 @@ "recipes": [ "minecraft:mangrove_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/minecart": { "parent": "minecraft:recipes/root", @@ -50456,8 +48952,7 @@ "recipes": [ "minecraft:minecart" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/oak_boat": { "parent": "minecraft:recipes/root", @@ -50485,8 +48980,7 @@ "recipes": [ "minecraft:oak_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/oak_chest_boat": { "parent": "minecraft:recipes/root", @@ -50518,8 +49012,7 @@ "recipes": [ "minecraft:oak_chest_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/powered_rail": { "parent": "minecraft:recipes/root", @@ -50553,8 +49046,7 @@ "recipes": [ "minecraft:powered_rail" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/rail": { "parent": "minecraft:recipes/root", @@ -50588,8 +49080,7 @@ "recipes": [ "minecraft:rail" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/spruce_boat": { "parent": "minecraft:recipes/root", @@ -50617,8 +49108,7 @@ "recipes": [ "minecraft:spruce_boat" ] - }, - "sends_telemetry_event": false + } }, "minecraft:recipes/transportation/spruce_chest_boat": { "parent": "minecraft:recipes/root", @@ -50650,6 +49140,74 @@ "recipes": [ "minecraft:spruce_chest_boat" ] + } + }, + "minecraft:recipes/transportation/tnt_minecart": { + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": [ + "minecraft:minecart" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tnt_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } }, - "sends_telemetry_event": false - } \ No newline at end of file + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tnt_minecart" + ] + } + }, + "minecraft:recipes/transportation/warped_fungus_on_a_stick": { + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fungus_on_a_stick" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_warped_fungus": { + "conditions": { + "items": [ + { + "items": [ + "minecraft:warped_fungus" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_warped_fungus" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fungus_on_a_stick" + ] + } + } +} \ No newline at end of file diff --git a/Obsidian/Assets/biomes.json b/Obsidian/Assets/biomes.json index 81e2e4eee..9160581ae 100644 --- a/Obsidian/Assets/biomes.json +++ b/Obsidian/Assets/biomes.json @@ -12,22 +12,25 @@ "sound": "minecraft:music.overworld.badlands", "min_delay": 12000 }, - "sky_color": 7254527, - "grass_color": 9470285, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 10387789, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 9470285 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -41,20 +44,25 @@ "sound": "minecraft:music.overworld.bamboo_jungle", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7842047, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.95, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -68,31 +76,36 @@ "sound": "minecraft:music.nether.basalt_deltas", "min_delay": 12000 }, - "sky_color": 7254527, "ambient_sound": "minecraft:ambient.basalt_deltas.loop", "additions_sound": { "sound": "minecraft:ambient.basalt_deltas.additions", "tick_chance": 0.0111 }, + "mood_sound": { + "sound": "minecraft:ambient.basalt_deltas.mood", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "particle": { "probability": 0.118093334, "options": { "type": "minecraft:white_ash" } }, + "foliage_color": 0, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 6840176, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.basalt_deltas.mood", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -100,20 +113,25 @@ "id": 3, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7907327, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -127,20 +145,25 @@ "sound": "minecraft:music.overworld.forest", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8037887, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.6, - "downfall": 0.6 + "scale": 0, + "downfall": 0.6, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -154,22 +177,25 @@ "sound": "minecraft:music.overworld.cherry_grove", "min_delay": 12000 }, - "sky_color": 8103167, - "grass_color": 11983713, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 11983713, + "sky_color": 8103167, "water_fog_color": 6141935, "fog_color": 12638463, "water_color": 6141935, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 11983713 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -177,20 +203,25 @@ "id": 6, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4020182, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -204,31 +235,36 @@ "sound": "minecraft:music.nether.crimson_forest", "min_delay": 12000 }, - "sky_color": 7254527, "ambient_sound": "minecraft:ambient.crimson_forest.loop", "additions_sound": { "sound": "minecraft:ambient.crimson_forest.additions", "tick_chance": 0.0111 }, + "mood_sound": { + "sound": "minecraft:ambient.crimson_forest.mood", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "particle": { "probability": 0.025, "options": { "type": "minecraft:crimson_spore" } }, + "foliage_color": 0, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 3343107, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.crimson_forest.mood", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -236,27 +272,32 @@ "id": 8, "element": { "effects": { - "grass_color_modifier": "dark_forest", "music": { "replace_current_music": false, "max_delay": 24000, "sound": "minecraft:music.overworld.forest", "min_delay": 12000 }, + "grass_color_modifier": "dark_forest", + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7972607, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.7, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -264,20 +305,25 @@ "id": 9, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4020182, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -291,20 +337,25 @@ "sound": "minecraft:music.overworld.deep_dark", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7907327, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -312,21 +363,26 @@ "id": 11, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 3750089, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, + "scale": 0, "downfall": 0.5, - "temperature_modifier": "frozen" + "has_precipitation": true, + "temperature_modifier": "frozen", + "player_spawn_friendly": false } }, { @@ -334,20 +390,25 @@ "id": 12, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 267827, "fog_color": 12638463, "water_color": 4566514, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -355,20 +416,25 @@ "id": 13, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -382,20 +448,25 @@ "sound": "minecraft:music.overworld.desert", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -409,20 +480,25 @@ "sound": "minecraft:music.overworld.dripstone_caves", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7907327, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -430,20 +506,25 @@ "id": 16, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 0, "water_fog_color": 329011, "fog_color": 10518688, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -451,20 +532,25 @@ "id": 17, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 0, "water_fog_color": 329011, "fog_color": 10518688, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -472,20 +558,25 @@ "id": 18, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 0, "water_fog_color": 329011, "fog_color": 10518688, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -499,22 +590,25 @@ "sound": "minecraft:music.overworld.badlands", "min_delay": 12000 }, - "sky_color": 7254527, - "grass_color": 9470285, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 10387789, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 9470285 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -528,20 +622,25 @@ "sound": "minecraft:music.overworld.flower_forest", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7972607, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.7, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -555,20 +654,25 @@ "sound": "minecraft:music.overworld.forest", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7972607, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.7, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -576,21 +680,26 @@ "id": 22, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8364543, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 3750089, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, - "temperature": 0.0, + "depth": 0, + "temperature": 0, + "scale": 0, "downfall": 0.5, - "temperature_modifier": "frozen" + "has_precipitation": true, + "temperature_modifier": "frozen", + "player_spawn_friendly": false } }, { @@ -604,20 +713,25 @@ "sound": "minecraft:music.overworld.frozen_peaks", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8756735, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": -0.7, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -625,20 +739,25 @@ "id": 24, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8364543, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 3750089, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 0, + "scale": 0, + "downfall": 0.5, "has_precipitation": true, - "temperature": 0.0, - "downfall": 0.5 + "player_spawn_friendly": false } }, { @@ -652,20 +771,25 @@ "sound": "minecraft:music.overworld.grove", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8495359, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": -0.2, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -673,20 +797,25 @@ "id": 26, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8364543, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 0, + "scale": 0, + "downfall": 0.5, "has_precipitation": true, - "temperature": 0.0, - "downfall": 0.5 + "player_spawn_friendly": false } }, { @@ -700,20 +829,25 @@ "sound": "minecraft:music.overworld.jagged_peaks", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8756735, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": -0.7, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -727,20 +861,25 @@ "sound": "minecraft:music.overworld.jungle", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7842047, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.95, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -748,20 +887,25 @@ "id": 29, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 267827, "fog_color": 12638463, "water_color": 4566514, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -775,20 +919,25 @@ "sound": "minecraft:music.overworld.lush_caves", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -796,28 +945,32 @@ "id": 31, "element": { "effects": { - "grass_color_modifier": "swamp", "music": { "replace_current_music": false, "max_delay": 24000, "sound": "minecraft:music.overworld.swamp", "min_delay": 12000 }, - "sky_color": 7907327, + "grass_color_modifier": "swamp", + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 9285927, + "sky_color": 7907327, "water_fog_color": 5077600, "fog_color": 12638463, "water_color": 3832426, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -831,20 +984,25 @@ "sound": "minecraft:music.overworld.meadow", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 937679, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -852,20 +1010,25 @@ "id": 33, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7842047, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.9, - "downfall": 1.0 + "scale": 0, + "downfall": 1, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -879,25 +1042,30 @@ "sound": "minecraft:music.nether.nether_wastes", "min_delay": 12000 }, - "sky_color": 7254527, "ambient_sound": "minecraft:ambient.nether_wastes.loop", "additions_sound": { "sound": "minecraft:ambient.nether_wastes.additions", "tick_chance": 0.0111 }, - "water_fog_color": 329011, - "fog_color": 3344392, - "water_color": 4159204, "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, "sound": "minecraft:ambient.nether_wastes.mood", + "offset": 2, + "tick_delay": 6000, "block_search_extent": 8 - } + }, + "foliage_color": 0, + "sky_color": 7254527, + "water_fog_color": 329011, + "fog_color": 3344392, + "water_color": 4159204, + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -905,20 +1073,25 @@ "id": 35, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -932,20 +1105,25 @@ "sound": "minecraft:music.overworld.forest", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8037887, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.6, - "downfall": 0.6 + "scale": 0, + "downfall": 0.6, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -959,20 +1137,25 @@ "sound": "minecraft:music.overworld.old_growth_taiga", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8168447, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.3, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -986,20 +1169,25 @@ "sound": "minecraft:music.overworld.old_growth_taiga", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233983, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.25, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1007,20 +1195,25 @@ "id": 39, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7907327, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1028,20 +1221,25 @@ "id": 40, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1049,20 +1247,25 @@ "id": 41, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -1070,20 +1273,25 @@ "id": 42, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -1091,20 +1299,25 @@ "id": 43, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 0, "water_fog_color": 329011, "fog_color": 10518688, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -1112,20 +1325,25 @@ "id": 44, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8364543, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4020182, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.05, - "downfall": 0.3 + "scale": 0, + "downfall": 0.3, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1133,20 +1351,25 @@ "id": 45, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8364543, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 0, + "scale": 0, + "downfall": 0.5, "has_precipitation": true, - "temperature": 0.0, - "downfall": 0.5 + "player_spawn_friendly": false } }, { @@ -1160,20 +1383,25 @@ "sound": "minecraft:music.overworld.snowy_slopes", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8560639, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": -0.3, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1181,20 +1409,25 @@ "id": 47, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8625919, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4020182, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": -0.5, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1208,31 +1441,36 @@ "sound": "minecraft:music.nether.soul_sand_valley", "min_delay": 12000 }, - "sky_color": 7254527, "ambient_sound": "minecraft:ambient.soul_sand_valley.loop", "additions_sound": { "sound": "minecraft:ambient.soul_sand_valley.additions", "tick_chance": 0.0111 }, + "mood_sound": { + "sound": "minecraft:ambient.soul_sand_valley.mood", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "particle": { "probability": 0.00625, "options": { "type": "minecraft:ash" } }, + "foliage_color": 0, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 1787717, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.soul_sand_valley.mood", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -1246,20 +1484,25 @@ "sound": "minecraft:music.overworld.sparse_jungle", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7842047, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.95, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1273,20 +1516,25 @@ "sound": "minecraft:music.overworld.stony_peaks", "min_delay": 12000 }, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7776511, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 1, + "scale": 0, + "downfall": 0.3, "has_precipitation": true, - "temperature": 1.0, - "downfall": 0.3 + "player_spawn_friendly": false } }, { @@ -1294,20 +1542,25 @@ "id": 51, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233727, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.2, - "downfall": 0.3 + "scale": 0, + "downfall": 0.3, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1315,20 +1568,25 @@ "id": 52, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7907327, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.4 + "scale": 0, + "downfall": 0.4, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1336,28 +1594,32 @@ "id": 53, "element": { "effects": { - "grass_color_modifier": "swamp", "music": { "replace_current_music": false, "max_delay": 24000, "sound": "minecraft:music.overworld.swamp", "min_delay": 12000 }, - "sky_color": 7907327, + "grass_color_modifier": "swamp", + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 6975545, + "sky_color": 7907327, "water_fog_color": 2302743, "fog_color": 12638463, "water_color": 6388580, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.8, - "downfall": 0.9 + "scale": 0, + "downfall": 0.9, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1365,20 +1627,25 @@ "id": 54, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233983, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.25, - "downfall": 0.8 + "scale": 0, + "downfall": 0.8, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1386,20 +1653,25 @@ "id": 55, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 0, "water_fog_color": 329011, "fog_color": 10518688, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -1407,20 +1679,25 @@ "id": 56, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": false, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": false, + "player_spawn_friendly": false } }, { @@ -1428,20 +1705,25 @@ "id": 57, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8103167, "water_fog_color": 270131, "fog_color": 12638463, "water_color": 4445678, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.5, - "downfall": 0.5 + "scale": 0, + "downfall": 0.5, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1455,31 +1737,36 @@ "sound": "minecraft:music.nether.warped_forest", "min_delay": 12000 }, - "sky_color": 7254527, "ambient_sound": "minecraft:ambient.warped_forest.loop", "additions_sound": { "sound": "minecraft:ambient.warped_forest.additions", "tick_chance": 0.0111 }, + "mood_sound": { + "sound": "minecraft:ambient.warped_forest.mood", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "particle": { "probability": 0.01428, "options": { "type": "minecraft:warped_spore" } }, + "foliage_color": 0, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 1705242, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.warped_forest.mood", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -1487,20 +1774,25 @@ "id": 59, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233727, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.2, - "downfall": 0.3 + "scale": 0, + "downfall": 0.3, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1508,20 +1800,25 @@ "id": 60, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233727, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.2, - "downfall": 0.3 + "scale": 0, + "downfall": 0.3, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1529,20 +1826,25 @@ "id": 61, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 8233727, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, - "has_precipitation": true, + "depth": 0, "temperature": 0.2, - "downfall": 0.3 + "scale": 0, + "downfall": 0.3, + "has_precipitation": true, + "player_spawn_friendly": false } }, { @@ -1550,20 +1852,25 @@ "id": 62, "element": { "effects": { + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, + "foliage_color": 0, "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 0 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } }, { @@ -1577,22 +1884,25 @@ "sound": "minecraft:music.overworld.badlands", "min_delay": 12000 }, - "sky_color": 7254527, - "grass_color": 9470285, + "mood_sound": { + "sound": "minecraft:ambient.cave", + "offset": 2, + "tick_delay": 6000, + "block_search_extent": 8 + }, "foliage_color": 10387789, + "sky_color": 7254527, "water_fog_color": 329011, "fog_color": 12638463, "water_color": 4159204, - "mood_sound": { - "tick_delay": 6000, - "offset": 2.0, - "sound": "minecraft:ambient.cave", - "block_search_extent": 8 - } + "grass_color": 9470285 }, + "depth": 0, + "temperature": 2, + "scale": 0, + "downfall": 0, "has_precipitation": false, - "temperature": 2.0, - "downfall": 0.0 + "player_spawn_friendly": false } } ] diff --git a/Obsidian/Assets/blocks.json b/Obsidian/Assets/blocks.json index ac619df17..6df886b14 100644 --- a/Obsidian/Assets/blocks.json +++ b/Obsidian/Assets/blocks.json @@ -3505,7 +3505,7 @@ }, "states": [ { - "id": 6218, + "id": 6217, "properties": { "facing": "north", "half": "top", @@ -3515,7 +3515,7 @@ } }, { - "id": 6219, + "id": 6218, "properties": { "facing": "north", "half": "top", @@ -3525,7 +3525,7 @@ } }, { - "id": 6220, + "id": 6219, "properties": { "facing": "north", "half": "top", @@ -3535,7 +3535,7 @@ } }, { - "id": 6221, + "id": 6220, "properties": { "facing": "north", "half": "top", @@ -3545,7 +3545,7 @@ } }, { - "id": 6222, + "id": 6221, "properties": { "facing": "north", "half": "top", @@ -3555,7 +3555,7 @@ } }, { - "id": 6223, + "id": 6222, "properties": { "facing": "north", "half": "top", @@ -3565,7 +3565,7 @@ } }, { - "id": 6224, + "id": 6223, "properties": { "facing": "north", "half": "top", @@ -3575,7 +3575,7 @@ } }, { - "id": 6225, + "id": 6224, "properties": { "facing": "north", "half": "top", @@ -3585,7 +3585,7 @@ } }, { - "id": 6226, + "id": 6225, "properties": { "facing": "north", "half": "bottom", @@ -3595,7 +3595,7 @@ } }, { - "id": 6227, + "id": 6226, "properties": { "facing": "north", "half": "bottom", @@ -3605,7 +3605,7 @@ } }, { - "id": 6228, + "id": 6227, "properties": { "facing": "north", "half": "bottom", @@ -3615,7 +3615,7 @@ } }, { - "id": 6229, + "id": 6228, "properties": { "facing": "north", "half": "bottom", @@ -3625,7 +3625,7 @@ } }, { - "id": 6230, + "id": 6229, "properties": { "facing": "north", "half": "bottom", @@ -3635,7 +3635,7 @@ } }, { - "id": 6231, + "id": 6230, "properties": { "facing": "north", "half": "bottom", @@ -3645,7 +3645,7 @@ } }, { - "id": 6232, + "id": 6231, "properties": { "facing": "north", "half": "bottom", @@ -3656,7 +3656,7 @@ }, { "default": true, - "id": 6233, + "id": 6232, "properties": { "facing": "north", "half": "bottom", @@ -3666,7 +3666,7 @@ } }, { - "id": 6234, + "id": 6233, "properties": { "facing": "south", "half": "top", @@ -3676,7 +3676,7 @@ } }, { - "id": 6235, + "id": 6234, "properties": { "facing": "south", "half": "top", @@ -3686,7 +3686,7 @@ } }, { - "id": 6236, + "id": 6235, "properties": { "facing": "south", "half": "top", @@ -3696,7 +3696,7 @@ } }, { - "id": 6237, + "id": 6236, "properties": { "facing": "south", "half": "top", @@ -3706,7 +3706,7 @@ } }, { - "id": 6238, + "id": 6237, "properties": { "facing": "south", "half": "top", @@ -3716,7 +3716,7 @@ } }, { - "id": 6239, + "id": 6238, "properties": { "facing": "south", "half": "top", @@ -3726,7 +3726,7 @@ } }, { - "id": 6240, + "id": 6239, "properties": { "facing": "south", "half": "top", @@ -3736,7 +3736,7 @@ } }, { - "id": 6241, + "id": 6240, "properties": { "facing": "south", "half": "top", @@ -3746,7 +3746,7 @@ } }, { - "id": 6242, + "id": 6241, "properties": { "facing": "south", "half": "bottom", @@ -3756,7 +3756,7 @@ } }, { - "id": 6243, + "id": 6242, "properties": { "facing": "south", "half": "bottom", @@ -3766,7 +3766,7 @@ } }, { - "id": 6244, + "id": 6243, "properties": { "facing": "south", "half": "bottom", @@ -3776,7 +3776,7 @@ } }, { - "id": 6245, + "id": 6244, "properties": { "facing": "south", "half": "bottom", @@ -3786,7 +3786,7 @@ } }, { - "id": 6246, + "id": 6245, "properties": { "facing": "south", "half": "bottom", @@ -3796,7 +3796,7 @@ } }, { - "id": 6247, + "id": 6246, "properties": { "facing": "south", "half": "bottom", @@ -3806,7 +3806,7 @@ } }, { - "id": 6248, + "id": 6247, "properties": { "facing": "south", "half": "bottom", @@ -3816,7 +3816,7 @@ } }, { - "id": 6249, + "id": 6248, "properties": { "facing": "south", "half": "bottom", @@ -3826,7 +3826,7 @@ } }, { - "id": 6250, + "id": 6249, "properties": { "facing": "west", "half": "top", @@ -3836,7 +3836,7 @@ } }, { - "id": 6251, + "id": 6250, "properties": { "facing": "west", "half": "top", @@ -3846,7 +3846,7 @@ } }, { - "id": 6252, + "id": 6251, "properties": { "facing": "west", "half": "top", @@ -3856,7 +3856,7 @@ } }, { - "id": 6253, + "id": 6252, "properties": { "facing": "west", "half": "top", @@ -3866,7 +3866,7 @@ } }, { - "id": 6254, + "id": 6253, "properties": { "facing": "west", "half": "top", @@ -3876,7 +3876,7 @@ } }, { - "id": 6255, + "id": 6254, "properties": { "facing": "west", "half": "top", @@ -3886,7 +3886,7 @@ } }, { - "id": 6256, + "id": 6255, "properties": { "facing": "west", "half": "top", @@ -3896,7 +3896,7 @@ } }, { - "id": 6257, + "id": 6256, "properties": { "facing": "west", "half": "top", @@ -3906,7 +3906,7 @@ } }, { - "id": 6258, + "id": 6257, "properties": { "facing": "west", "half": "bottom", @@ -3916,7 +3916,7 @@ } }, { - "id": 6259, + "id": 6258, "properties": { "facing": "west", "half": "bottom", @@ -3926,7 +3926,7 @@ } }, { - "id": 6260, + "id": 6259, "properties": { "facing": "west", "half": "bottom", @@ -3936,7 +3936,7 @@ } }, { - "id": 6261, + "id": 6260, "properties": { "facing": "west", "half": "bottom", @@ -3946,7 +3946,7 @@ } }, { - "id": 6262, + "id": 6261, "properties": { "facing": "west", "half": "bottom", @@ -3956,7 +3956,7 @@ } }, { - "id": 6263, + "id": 6262, "properties": { "facing": "west", "half": "bottom", @@ -3966,7 +3966,7 @@ } }, { - "id": 6264, + "id": 6263, "properties": { "facing": "west", "half": "bottom", @@ -3976,7 +3976,7 @@ } }, { - "id": 6265, + "id": 6264, "properties": { "facing": "west", "half": "bottom", @@ -3986,7 +3986,7 @@ } }, { - "id": 6266, + "id": 6265, "properties": { "facing": "east", "half": "top", @@ -3996,7 +3996,7 @@ } }, { - "id": 6267, + "id": 6266, "properties": { "facing": "east", "half": "top", @@ -4006,7 +4006,7 @@ } }, { - "id": 6268, + "id": 6267, "properties": { "facing": "east", "half": "top", @@ -4016,7 +4016,7 @@ } }, { - "id": 6269, + "id": 6268, "properties": { "facing": "east", "half": "top", @@ -4026,7 +4026,7 @@ } }, { - "id": 6270, + "id": 6269, "properties": { "facing": "east", "half": "top", @@ -4036,7 +4036,7 @@ } }, { - "id": 6271, + "id": 6270, "properties": { "facing": "east", "half": "top", @@ -4046,7 +4046,7 @@ } }, { - "id": 6272, + "id": 6271, "properties": { "facing": "east", "half": "top", @@ -4056,7 +4056,7 @@ } }, { - "id": 6273, + "id": 6272, "properties": { "facing": "east", "half": "top", @@ -4066,7 +4066,7 @@ } }, { - "id": 6274, + "id": 6273, "properties": { "facing": "east", "half": "bottom", @@ -4076,7 +4076,7 @@ } }, { - "id": 6275, + "id": 6274, "properties": { "facing": "east", "half": "bottom", @@ -4086,7 +4086,7 @@ } }, { - "id": 6276, + "id": 6275, "properties": { "facing": "east", "half": "bottom", @@ -4096,7 +4096,7 @@ } }, { - "id": 6277, + "id": 6276, "properties": { "facing": "east", "half": "bottom", @@ -4106,7 +4106,7 @@ } }, { - "id": 6278, + "id": 6277, "properties": { "facing": "east", "half": "bottom", @@ -4116,7 +4116,7 @@ } }, { - "id": 6279, + "id": 6278, "properties": { "facing": "east", "half": "bottom", @@ -4126,7 +4126,7 @@ } }, { - "id": 6280, + "id": 6279, "properties": { "facing": "east", "half": "bottom", @@ -4136,7 +4136,7 @@ } }, { - "id": 6281, + "id": 6280, "properties": { "facing": "east", "half": "bottom", @@ -9201,7 +9201,7 @@ "states": [ { "default": true, - "id": 22510 + "id": 24824 } ] }, @@ -13634,7 +13634,7 @@ }, "states": [ { - "id": 6474, + "id": 6473, "properties": { "facing": "north", "half": "top", @@ -13644,7 +13644,7 @@ } }, { - "id": 6475, + "id": 6474, "properties": { "facing": "north", "half": "top", @@ -13654,7 +13654,7 @@ } }, { - "id": 6476, + "id": 6475, "properties": { "facing": "north", "half": "top", @@ -13664,7 +13664,7 @@ } }, { - "id": 6477, + "id": 6476, "properties": { "facing": "north", "half": "top", @@ -13674,7 +13674,7 @@ } }, { - "id": 6478, + "id": 6477, "properties": { "facing": "north", "half": "top", @@ -13684,7 +13684,7 @@ } }, { - "id": 6479, + "id": 6478, "properties": { "facing": "north", "half": "top", @@ -13694,7 +13694,7 @@ } }, { - "id": 6480, + "id": 6479, "properties": { "facing": "north", "half": "top", @@ -13704,7 +13704,7 @@ } }, { - "id": 6481, + "id": 6480, "properties": { "facing": "north", "half": "top", @@ -13714,7 +13714,7 @@ } }, { - "id": 6482, + "id": 6481, "properties": { "facing": "north", "half": "bottom", @@ -13724,7 +13724,7 @@ } }, { - "id": 6483, + "id": 6482, "properties": { "facing": "north", "half": "bottom", @@ -13734,7 +13734,7 @@ } }, { - "id": 6484, + "id": 6483, "properties": { "facing": "north", "half": "bottom", @@ -13744,7 +13744,7 @@ } }, { - "id": 6485, + "id": 6484, "properties": { "facing": "north", "half": "bottom", @@ -13754,7 +13754,7 @@ } }, { - "id": 6486, + "id": 6485, "properties": { "facing": "north", "half": "bottom", @@ -13764,7 +13764,7 @@ } }, { - "id": 6487, + "id": 6486, "properties": { "facing": "north", "half": "bottom", @@ -13774,7 +13774,7 @@ } }, { - "id": 6488, + "id": 6487, "properties": { "facing": "north", "half": "bottom", @@ -13785,7 +13785,7 @@ }, { "default": true, - "id": 6489, + "id": 6488, "properties": { "facing": "north", "half": "bottom", @@ -13795,7 +13795,7 @@ } }, { - "id": 6490, + "id": 6489, "properties": { "facing": "south", "half": "top", @@ -13805,7 +13805,7 @@ } }, { - "id": 6491, + "id": 6490, "properties": { "facing": "south", "half": "top", @@ -13815,7 +13815,7 @@ } }, { - "id": 6492, + "id": 6491, "properties": { "facing": "south", "half": "top", @@ -13825,7 +13825,7 @@ } }, { - "id": 6493, + "id": 6492, "properties": { "facing": "south", "half": "top", @@ -13835,7 +13835,7 @@ } }, { - "id": 6494, + "id": 6493, "properties": { "facing": "south", "half": "top", @@ -13845,7 +13845,7 @@ } }, { - "id": 6495, + "id": 6494, "properties": { "facing": "south", "half": "top", @@ -13855,7 +13855,7 @@ } }, { - "id": 6496, + "id": 6495, "properties": { "facing": "south", "half": "top", @@ -13865,7 +13865,7 @@ } }, { - "id": 6497, + "id": 6496, "properties": { "facing": "south", "half": "top", @@ -13875,7 +13875,7 @@ } }, { - "id": 6498, + "id": 6497, "properties": { "facing": "south", "half": "bottom", @@ -13885,7 +13885,7 @@ } }, { - "id": 6499, + "id": 6498, "properties": { "facing": "south", "half": "bottom", @@ -13895,7 +13895,7 @@ } }, { - "id": 6500, + "id": 6499, "properties": { "facing": "south", "half": "bottom", @@ -13905,7 +13905,7 @@ } }, { - "id": 6501, + "id": 6500, "properties": { "facing": "south", "half": "bottom", @@ -13915,7 +13915,7 @@ } }, { - "id": 6502, + "id": 6501, "properties": { "facing": "south", "half": "bottom", @@ -13925,7 +13925,7 @@ } }, { - "id": 6503, + "id": 6502, "properties": { "facing": "south", "half": "bottom", @@ -13935,7 +13935,7 @@ } }, { - "id": 6504, + "id": 6503, "properties": { "facing": "south", "half": "bottom", @@ -13945,7 +13945,7 @@ } }, { - "id": 6505, + "id": 6504, "properties": { "facing": "south", "half": "bottom", @@ -13955,7 +13955,7 @@ } }, { - "id": 6506, + "id": 6505, "properties": { "facing": "west", "half": "top", @@ -13965,7 +13965,7 @@ } }, { - "id": 6507, + "id": 6506, "properties": { "facing": "west", "half": "top", @@ -13975,7 +13975,7 @@ } }, { - "id": 6508, + "id": 6507, "properties": { "facing": "west", "half": "top", @@ -13985,7 +13985,7 @@ } }, { - "id": 6509, + "id": 6508, "properties": { "facing": "west", "half": "top", @@ -13995,7 +13995,7 @@ } }, { - "id": 6510, + "id": 6509, "properties": { "facing": "west", "half": "top", @@ -14005,7 +14005,7 @@ } }, { - "id": 6511, + "id": 6510, "properties": { "facing": "west", "half": "top", @@ -14015,7 +14015,7 @@ } }, { - "id": 6512, + "id": 6511, "properties": { "facing": "west", "half": "top", @@ -14025,7 +14025,7 @@ } }, { - "id": 6513, + "id": 6512, "properties": { "facing": "west", "half": "top", @@ -14035,7 +14035,7 @@ } }, { - "id": 6514, + "id": 6513, "properties": { "facing": "west", "half": "bottom", @@ -14045,7 +14045,7 @@ } }, { - "id": 6515, + "id": 6514, "properties": { "facing": "west", "half": "bottom", @@ -14055,7 +14055,7 @@ } }, { - "id": 6516, + "id": 6515, "properties": { "facing": "west", "half": "bottom", @@ -14065,7 +14065,7 @@ } }, { - "id": 6517, + "id": 6516, "properties": { "facing": "west", "half": "bottom", @@ -14075,7 +14075,7 @@ } }, { - "id": 6518, + "id": 6517, "properties": { "facing": "west", "half": "bottom", @@ -14085,7 +14085,7 @@ } }, { - "id": 6519, + "id": 6518, "properties": { "facing": "west", "half": "bottom", @@ -14095,7 +14095,7 @@ } }, { - "id": 6520, + "id": 6519, "properties": { "facing": "west", "half": "bottom", @@ -14105,7 +14105,7 @@ } }, { - "id": 6521, + "id": 6520, "properties": { "facing": "west", "half": "bottom", @@ -14115,7 +14115,7 @@ } }, { - "id": 6522, + "id": 6521, "properties": { "facing": "east", "half": "top", @@ -14125,7 +14125,7 @@ } }, { - "id": 6523, + "id": 6522, "properties": { "facing": "east", "half": "top", @@ -14135,7 +14135,7 @@ } }, { - "id": 6524, + "id": 6523, "properties": { "facing": "east", "half": "top", @@ -14145,7 +14145,7 @@ } }, { - "id": 6525, + "id": 6524, "properties": { "facing": "east", "half": "top", @@ -14155,7 +14155,7 @@ } }, { - "id": 6526, + "id": 6525, "properties": { "facing": "east", "half": "top", @@ -14165,7 +14165,7 @@ } }, { - "id": 6527, + "id": 6526, "properties": { "facing": "east", "half": "top", @@ -14175,7 +14175,7 @@ } }, { - "id": 6528, + "id": 6527, "properties": { "facing": "east", "half": "top", @@ -14185,7 +14185,7 @@ } }, { - "id": 6529, + "id": 6528, "properties": { "facing": "east", "half": "top", @@ -14195,7 +14195,7 @@ } }, { - "id": 6530, + "id": 6529, "properties": { "facing": "east", "half": "bottom", @@ -14205,7 +14205,7 @@ } }, { - "id": 6531, + "id": 6530, "properties": { "facing": "east", "half": "bottom", @@ -14215,7 +14215,7 @@ } }, { - "id": 6532, + "id": 6531, "properties": { "facing": "east", "half": "bottom", @@ -14225,7 +14225,7 @@ } }, { - "id": 6533, + "id": 6532, "properties": { "facing": "east", "half": "bottom", @@ -14235,7 +14235,7 @@ } }, { - "id": 6534, + "id": 6533, "properties": { "facing": "east", "half": "bottom", @@ -14245,7 +14245,7 @@ } }, { - "id": 6535, + "id": 6534, "properties": { "facing": "east", "half": "bottom", @@ -14255,7 +14255,7 @@ } }, { - "id": 6536, + "id": 6535, "properties": { "facing": "east", "half": "bottom", @@ -14265,7 +14265,7 @@ } }, { - "id": 6537, + "id": 6536, "properties": { "facing": "east", "half": "bottom", @@ -14558,20 +14558,20 @@ }, "states": [ { - "id": 5853, + "id": 5852, "properties": { "axis": "x" } }, { "default": true, - "id": 5854, + "id": 5853, "properties": { "axis": "y" } }, { - "id": 5855, + "id": 5854, "properties": { "axis": "z" } @@ -15309,7 +15309,7 @@ }, "states": [ { - "id": 22530, + "id": 24844, "properties": { "facing": "north", "tilt": "none", @@ -15318,7 +15318,7 @@ }, { "default": true, - "id": 22531, + "id": 24845, "properties": { "facing": "north", "tilt": "none", @@ -15326,7 +15326,7 @@ } }, { - "id": 22532, + "id": 24846, "properties": { "facing": "north", "tilt": "unstable", @@ -15334,7 +15334,7 @@ } }, { - "id": 22533, + "id": 24847, "properties": { "facing": "north", "tilt": "unstable", @@ -15342,7 +15342,7 @@ } }, { - "id": 22534, + "id": 24848, "properties": { "facing": "north", "tilt": "partial", @@ -15350,7 +15350,7 @@ } }, { - "id": 22535, + "id": 24849, "properties": { "facing": "north", "tilt": "partial", @@ -15358,7 +15358,7 @@ } }, { - "id": 22536, + "id": 24850, "properties": { "facing": "north", "tilt": "full", @@ -15366,7 +15366,7 @@ } }, { - "id": 22537, + "id": 24851, "properties": { "facing": "north", "tilt": "full", @@ -15374,7 +15374,7 @@ } }, { - "id": 22538, + "id": 24852, "properties": { "facing": "south", "tilt": "none", @@ -15382,7 +15382,7 @@ } }, { - "id": 22539, + "id": 24853, "properties": { "facing": "south", "tilt": "none", @@ -15390,7 +15390,7 @@ } }, { - "id": 22540, + "id": 24854, "properties": { "facing": "south", "tilt": "unstable", @@ -15398,7 +15398,7 @@ } }, { - "id": 22541, + "id": 24855, "properties": { "facing": "south", "tilt": "unstable", @@ -15406,7 +15406,7 @@ } }, { - "id": 22542, + "id": 24856, "properties": { "facing": "south", "tilt": "partial", @@ -15414,7 +15414,7 @@ } }, { - "id": 22543, + "id": 24857, "properties": { "facing": "south", "tilt": "partial", @@ -15422,7 +15422,7 @@ } }, { - "id": 22544, + "id": 24858, "properties": { "facing": "south", "tilt": "full", @@ -15430,7 +15430,7 @@ } }, { - "id": 22545, + "id": 24859, "properties": { "facing": "south", "tilt": "full", @@ -15438,7 +15438,7 @@ } }, { - "id": 22546, + "id": 24860, "properties": { "facing": "west", "tilt": "none", @@ -15446,7 +15446,7 @@ } }, { - "id": 22547, + "id": 24861, "properties": { "facing": "west", "tilt": "none", @@ -15454,7 +15454,7 @@ } }, { - "id": 22548, + "id": 24862, "properties": { "facing": "west", "tilt": "unstable", @@ -15462,7 +15462,7 @@ } }, { - "id": 22549, + "id": 24863, "properties": { "facing": "west", "tilt": "unstable", @@ -15470,7 +15470,7 @@ } }, { - "id": 22550, + "id": 24864, "properties": { "facing": "west", "tilt": "partial", @@ -15478,7 +15478,7 @@ } }, { - "id": 22551, + "id": 24865, "properties": { "facing": "west", "tilt": "partial", @@ -15486,7 +15486,7 @@ } }, { - "id": 22552, + "id": 24866, "properties": { "facing": "west", "tilt": "full", @@ -15494,7 +15494,7 @@ } }, { - "id": 22553, + "id": 24867, "properties": { "facing": "west", "tilt": "full", @@ -15502,7 +15502,7 @@ } }, { - "id": 22554, + "id": 24868, "properties": { "facing": "east", "tilt": "none", @@ -15510,7 +15510,7 @@ } }, { - "id": 22555, + "id": 24869, "properties": { "facing": "east", "tilt": "none", @@ -15518,7 +15518,7 @@ } }, { - "id": 22556, + "id": 24870, "properties": { "facing": "east", "tilt": "unstable", @@ -15526,7 +15526,7 @@ } }, { - "id": 22557, + "id": 24871, "properties": { "facing": "east", "tilt": "unstable", @@ -15534,7 +15534,7 @@ } }, { - "id": 22558, + "id": 24872, "properties": { "facing": "east", "tilt": "partial", @@ -15542,7 +15542,7 @@ } }, { - "id": 22559, + "id": 24873, "properties": { "facing": "east", "tilt": "partial", @@ -15550,7 +15550,7 @@ } }, { - "id": 22560, + "id": 24874, "properties": { "facing": "east", "tilt": "full", @@ -15558,7 +15558,7 @@ } }, { - "id": 22561, + "id": 24875, "properties": { "facing": "east", "tilt": "full", @@ -15582,7 +15582,7 @@ }, "states": [ { - "id": 22562, + "id": 24876, "properties": { "facing": "north", "waterlogged": "true" @@ -15590,49 +15590,49 @@ }, { "default": true, - "id": 22563, + "id": 24877, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 22564, + "id": 24878, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 22565, + "id": 24879, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 22566, + "id": 24880, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 22567, + "id": 24881, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 22568, + "id": 24882, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 22569, + "id": 24883, "properties": { "facing": "east", "waterlogged": "false" @@ -19146,7 +19146,7 @@ }, "states": [ { - "id": 6090, + "id": 6089, "properties": { "facing": "north", "half": "top", @@ -19156,7 +19156,7 @@ } }, { - "id": 6091, + "id": 6090, "properties": { "facing": "north", "half": "top", @@ -19166,7 +19166,7 @@ } }, { - "id": 6092, + "id": 6091, "properties": { "facing": "north", "half": "top", @@ -19176,7 +19176,7 @@ } }, { - "id": 6093, + "id": 6092, "properties": { "facing": "north", "half": "top", @@ -19186,7 +19186,7 @@ } }, { - "id": 6094, + "id": 6093, "properties": { "facing": "north", "half": "top", @@ -19196,7 +19196,7 @@ } }, { - "id": 6095, + "id": 6094, "properties": { "facing": "north", "half": "top", @@ -19206,7 +19206,7 @@ } }, { - "id": 6096, + "id": 6095, "properties": { "facing": "north", "half": "top", @@ -19216,7 +19216,7 @@ } }, { - "id": 6097, + "id": 6096, "properties": { "facing": "north", "half": "top", @@ -19226,7 +19226,7 @@ } }, { - "id": 6098, + "id": 6097, "properties": { "facing": "north", "half": "bottom", @@ -19236,7 +19236,7 @@ } }, { - "id": 6099, + "id": 6098, "properties": { "facing": "north", "half": "bottom", @@ -19246,7 +19246,7 @@ } }, { - "id": 6100, + "id": 6099, "properties": { "facing": "north", "half": "bottom", @@ -19256,7 +19256,7 @@ } }, { - "id": 6101, + "id": 6100, "properties": { "facing": "north", "half": "bottom", @@ -19266,7 +19266,7 @@ } }, { - "id": 6102, + "id": 6101, "properties": { "facing": "north", "half": "bottom", @@ -19276,7 +19276,7 @@ } }, { - "id": 6103, + "id": 6102, "properties": { "facing": "north", "half": "bottom", @@ -19286,7 +19286,7 @@ } }, { - "id": 6104, + "id": 6103, "properties": { "facing": "north", "half": "bottom", @@ -19297,7 +19297,7 @@ }, { "default": true, - "id": 6105, + "id": 6104, "properties": { "facing": "north", "half": "bottom", @@ -19307,7 +19307,7 @@ } }, { - "id": 6106, + "id": 6105, "properties": { "facing": "south", "half": "top", @@ -19317,7 +19317,7 @@ } }, { - "id": 6107, + "id": 6106, "properties": { "facing": "south", "half": "top", @@ -19327,7 +19327,7 @@ } }, { - "id": 6108, + "id": 6107, "properties": { "facing": "south", "half": "top", @@ -19337,7 +19337,7 @@ } }, { - "id": 6109, + "id": 6108, "properties": { "facing": "south", "half": "top", @@ -19347,7 +19347,7 @@ } }, { - "id": 6110, + "id": 6109, "properties": { "facing": "south", "half": "top", @@ -19357,7 +19357,7 @@ } }, { - "id": 6111, + "id": 6110, "properties": { "facing": "south", "half": "top", @@ -19367,7 +19367,7 @@ } }, { - "id": 6112, + "id": 6111, "properties": { "facing": "south", "half": "top", @@ -19377,7 +19377,7 @@ } }, { - "id": 6113, + "id": 6112, "properties": { "facing": "south", "half": "top", @@ -19387,7 +19387,7 @@ } }, { - "id": 6114, + "id": 6113, "properties": { "facing": "south", "half": "bottom", @@ -19397,7 +19397,7 @@ } }, { - "id": 6115, + "id": 6114, "properties": { "facing": "south", "half": "bottom", @@ -19407,7 +19407,7 @@ } }, { - "id": 6116, + "id": 6115, "properties": { "facing": "south", "half": "bottom", @@ -19417,7 +19417,7 @@ } }, { - "id": 6117, + "id": 6116, "properties": { "facing": "south", "half": "bottom", @@ -19427,7 +19427,7 @@ } }, { - "id": 6118, + "id": 6117, "properties": { "facing": "south", "half": "bottom", @@ -19437,7 +19437,7 @@ } }, { - "id": 6119, + "id": 6118, "properties": { "facing": "south", "half": "bottom", @@ -19447,7 +19447,7 @@ } }, { - "id": 6120, + "id": 6119, "properties": { "facing": "south", "half": "bottom", @@ -19457,7 +19457,7 @@ } }, { - "id": 6121, + "id": 6120, "properties": { "facing": "south", "half": "bottom", @@ -19467,7 +19467,7 @@ } }, { - "id": 6122, + "id": 6121, "properties": { "facing": "west", "half": "top", @@ -19477,7 +19477,7 @@ } }, { - "id": 6123, + "id": 6122, "properties": { "facing": "west", "half": "top", @@ -19487,7 +19487,7 @@ } }, { - "id": 6124, + "id": 6123, "properties": { "facing": "west", "half": "top", @@ -19497,7 +19497,7 @@ } }, { - "id": 6125, + "id": 6124, "properties": { "facing": "west", "half": "top", @@ -19507,7 +19507,7 @@ } }, { - "id": 6126, + "id": 6125, "properties": { "facing": "west", "half": "top", @@ -19517,7 +19517,7 @@ } }, { - "id": 6127, + "id": 6126, "properties": { "facing": "west", "half": "top", @@ -19527,7 +19527,7 @@ } }, { - "id": 6128, + "id": 6127, "properties": { "facing": "west", "half": "top", @@ -19537,7 +19537,7 @@ } }, { - "id": 6129, + "id": 6128, "properties": { "facing": "west", "half": "top", @@ -19547,7 +19547,7 @@ } }, { - "id": 6130, + "id": 6129, "properties": { "facing": "west", "half": "bottom", @@ -19557,7 +19557,7 @@ } }, { - "id": 6131, + "id": 6130, "properties": { "facing": "west", "half": "bottom", @@ -19567,7 +19567,7 @@ } }, { - "id": 6132, + "id": 6131, "properties": { "facing": "west", "half": "bottom", @@ -19577,7 +19577,7 @@ } }, { - "id": 6133, + "id": 6132, "properties": { "facing": "west", "half": "bottom", @@ -19587,7 +19587,7 @@ } }, { - "id": 6134, + "id": 6133, "properties": { "facing": "west", "half": "bottom", @@ -19597,7 +19597,7 @@ } }, { - "id": 6135, + "id": 6134, "properties": { "facing": "west", "half": "bottom", @@ -19607,7 +19607,7 @@ } }, { - "id": 6136, + "id": 6135, "properties": { "facing": "west", "half": "bottom", @@ -19617,7 +19617,7 @@ } }, { - "id": 6137, + "id": 6136, "properties": { "facing": "west", "half": "bottom", @@ -19627,7 +19627,7 @@ } }, { - "id": 6138, + "id": 6137, "properties": { "facing": "east", "half": "top", @@ -19637,7 +19637,7 @@ } }, { - "id": 6139, + "id": 6138, "properties": { "facing": "east", "half": "top", @@ -19647,7 +19647,7 @@ } }, { - "id": 6140, + "id": 6139, "properties": { "facing": "east", "half": "top", @@ -19657,7 +19657,7 @@ } }, { - "id": 6141, + "id": 6140, "properties": { "facing": "east", "half": "top", @@ -19667,7 +19667,7 @@ } }, { - "id": 6142, + "id": 6141, "properties": { "facing": "east", "half": "top", @@ -19677,7 +19677,7 @@ } }, { - "id": 6143, + "id": 6142, "properties": { "facing": "east", "half": "top", @@ -19687,7 +19687,7 @@ } }, { - "id": 6144, + "id": 6143, "properties": { "facing": "east", "half": "top", @@ -19697,7 +19697,7 @@ } }, { - "id": 6145, + "id": 6144, "properties": { "facing": "east", "half": "top", @@ -19707,7 +19707,7 @@ } }, { - "id": 6146, + "id": 6145, "properties": { "facing": "east", "half": "bottom", @@ -19717,7 +19717,7 @@ } }, { - "id": 6147, + "id": 6146, "properties": { "facing": "east", "half": "bottom", @@ -19727,7 +19727,7 @@ } }, { - "id": 6148, + "id": 6147, "properties": { "facing": "east", "half": "bottom", @@ -19737,7 +19737,7 @@ } }, { - "id": 6149, + "id": 6148, "properties": { "facing": "east", "half": "bottom", @@ -19747,7 +19747,7 @@ } }, { - "id": 6150, + "id": 6149, "properties": { "facing": "east", "half": "bottom", @@ -19757,7 +19757,7 @@ } }, { - "id": 6151, + "id": 6150, "properties": { "facing": "east", "half": "bottom", @@ -19767,7 +19767,7 @@ } }, { - "id": 6152, + "id": 6151, "properties": { "facing": "east", "half": "bottom", @@ -19777,7 +19777,7 @@ } }, { - "id": 6153, + "id": 6152, "properties": { "facing": "east", "half": "bottom", @@ -20522,7 +20522,7 @@ "states": [ { "default": true, - "id": 5961 + "id": 5960 } ] }, @@ -25986,7 +25986,7 @@ "states": [ { "default": true, - "id": 5957 + "id": 5956 } ] }, @@ -31592,7 +31592,7 @@ "states": [ { "default": true, - "id": 6550, + "id": 6549, "properties": { "down": "true", "east": "true", @@ -31603,7 +31603,7 @@ } }, { - "id": 6551, + "id": 6550, "properties": { "down": "true", "east": "true", @@ -31614,7 +31614,7 @@ } }, { - "id": 6552, + "id": 6551, "properties": { "down": "true", "east": "true", @@ -31625,7 +31625,7 @@ } }, { - "id": 6553, + "id": 6552, "properties": { "down": "true", "east": "true", @@ -31636,7 +31636,7 @@ } }, { - "id": 6554, + "id": 6553, "properties": { "down": "true", "east": "true", @@ -31647,7 +31647,7 @@ } }, { - "id": 6555, + "id": 6554, "properties": { "down": "true", "east": "true", @@ -31658,7 +31658,7 @@ } }, { - "id": 6556, + "id": 6555, "properties": { "down": "true", "east": "true", @@ -31669,7 +31669,7 @@ } }, { - "id": 6557, + "id": 6556, "properties": { "down": "true", "east": "true", @@ -31680,7 +31680,7 @@ } }, { - "id": 6558, + "id": 6557, "properties": { "down": "true", "east": "true", @@ -31691,7 +31691,7 @@ } }, { - "id": 6559, + "id": 6558, "properties": { "down": "true", "east": "true", @@ -31702,7 +31702,7 @@ } }, { - "id": 6560, + "id": 6559, "properties": { "down": "true", "east": "true", @@ -31713,7 +31713,7 @@ } }, { - "id": 6561, + "id": 6560, "properties": { "down": "true", "east": "true", @@ -31724,7 +31724,7 @@ } }, { - "id": 6562, + "id": 6561, "properties": { "down": "true", "east": "true", @@ -31735,7 +31735,7 @@ } }, { - "id": 6563, + "id": 6562, "properties": { "down": "true", "east": "true", @@ -31746,7 +31746,7 @@ } }, { - "id": 6564, + "id": 6563, "properties": { "down": "true", "east": "true", @@ -31757,7 +31757,7 @@ } }, { - "id": 6565, + "id": 6564, "properties": { "down": "true", "east": "true", @@ -31768,7 +31768,7 @@ } }, { - "id": 6566, + "id": 6565, "properties": { "down": "true", "east": "false", @@ -31779,7 +31779,7 @@ } }, { - "id": 6567, + "id": 6566, "properties": { "down": "true", "east": "false", @@ -31790,7 +31790,7 @@ } }, { - "id": 6568, + "id": 6567, "properties": { "down": "true", "east": "false", @@ -31801,7 +31801,7 @@ } }, { - "id": 6569, + "id": 6568, "properties": { "down": "true", "east": "false", @@ -31812,7 +31812,7 @@ } }, { - "id": 6570, + "id": 6569, "properties": { "down": "true", "east": "false", @@ -31823,7 +31823,7 @@ } }, { - "id": 6571, + "id": 6570, "properties": { "down": "true", "east": "false", @@ -31834,7 +31834,7 @@ } }, { - "id": 6572, + "id": 6571, "properties": { "down": "true", "east": "false", @@ -31845,7 +31845,7 @@ } }, { - "id": 6573, + "id": 6572, "properties": { "down": "true", "east": "false", @@ -31856,7 +31856,7 @@ } }, { - "id": 6574, + "id": 6573, "properties": { "down": "true", "east": "false", @@ -31867,7 +31867,7 @@ } }, { - "id": 6575, + "id": 6574, "properties": { "down": "true", "east": "false", @@ -31878,7 +31878,7 @@ } }, { - "id": 6576, + "id": 6575, "properties": { "down": "true", "east": "false", @@ -31889,7 +31889,7 @@ } }, { - "id": 6577, + "id": 6576, "properties": { "down": "true", "east": "false", @@ -31900,7 +31900,7 @@ } }, { - "id": 6578, + "id": 6577, "properties": { "down": "true", "east": "false", @@ -31911,7 +31911,7 @@ } }, { - "id": 6579, + "id": 6578, "properties": { "down": "true", "east": "false", @@ -31922,7 +31922,7 @@ } }, { - "id": 6580, + "id": 6579, "properties": { "down": "true", "east": "false", @@ -31933,7 +31933,7 @@ } }, { - "id": 6581, + "id": 6580, "properties": { "down": "true", "east": "false", @@ -31944,7 +31944,7 @@ } }, { - "id": 6582, + "id": 6581, "properties": { "down": "false", "east": "true", @@ -31955,7 +31955,7 @@ } }, { - "id": 6583, + "id": 6582, "properties": { "down": "false", "east": "true", @@ -31966,7 +31966,7 @@ } }, { - "id": 6584, + "id": 6583, "properties": { "down": "false", "east": "true", @@ -31977,7 +31977,7 @@ } }, { - "id": 6585, + "id": 6584, "properties": { "down": "false", "east": "true", @@ -31988,7 +31988,7 @@ } }, { - "id": 6586, + "id": 6585, "properties": { "down": "false", "east": "true", @@ -31999,7 +31999,7 @@ } }, { - "id": 6587, + "id": 6586, "properties": { "down": "false", "east": "true", @@ -32010,7 +32010,7 @@ } }, { - "id": 6588, + "id": 6587, "properties": { "down": "false", "east": "true", @@ -32021,7 +32021,7 @@ } }, { - "id": 6589, + "id": 6588, "properties": { "down": "false", "east": "true", @@ -32032,7 +32032,7 @@ } }, { - "id": 6590, + "id": 6589, "properties": { "down": "false", "east": "true", @@ -32043,7 +32043,7 @@ } }, { - "id": 6591, + "id": 6590, "properties": { "down": "false", "east": "true", @@ -32054,7 +32054,7 @@ } }, { - "id": 6592, + "id": 6591, "properties": { "down": "false", "east": "true", @@ -32065,7 +32065,7 @@ } }, { - "id": 6593, + "id": 6592, "properties": { "down": "false", "east": "true", @@ -32076,7 +32076,7 @@ } }, { - "id": 6594, + "id": 6593, "properties": { "down": "false", "east": "true", @@ -32087,7 +32087,7 @@ } }, { - "id": 6595, + "id": 6594, "properties": { "down": "false", "east": "true", @@ -32098,7 +32098,7 @@ } }, { - "id": 6596, + "id": 6595, "properties": { "down": "false", "east": "true", @@ -32109,7 +32109,7 @@ } }, { - "id": 6597, + "id": 6596, "properties": { "down": "false", "east": "true", @@ -32120,7 +32120,7 @@ } }, { - "id": 6598, + "id": 6597, "properties": { "down": "false", "east": "false", @@ -32131,7 +32131,7 @@ } }, { - "id": 6599, + "id": 6598, "properties": { "down": "false", "east": "false", @@ -32142,7 +32142,7 @@ } }, { - "id": 6600, + "id": 6599, "properties": { "down": "false", "east": "false", @@ -32153,7 +32153,7 @@ } }, { - "id": 6601, + "id": 6600, "properties": { "down": "false", "east": "false", @@ -32164,7 +32164,7 @@ } }, { - "id": 6602, + "id": 6601, "properties": { "down": "false", "east": "false", @@ -32175,7 +32175,7 @@ } }, { - "id": 6603, + "id": 6602, "properties": { "down": "false", "east": "false", @@ -32186,7 +32186,7 @@ } }, { - "id": 6604, + "id": 6603, "properties": { "down": "false", "east": "false", @@ -32197,7 +32197,7 @@ } }, { - "id": 6605, + "id": 6604, "properties": { "down": "false", "east": "false", @@ -32208,7 +32208,7 @@ } }, { - "id": 6606, + "id": 6605, "properties": { "down": "false", "east": "false", @@ -32219,7 +32219,7 @@ } }, { - "id": 6607, + "id": 6606, "properties": { "down": "false", "east": "false", @@ -32230,7 +32230,7 @@ } }, { - "id": 6608, + "id": 6607, "properties": { "down": "false", "east": "false", @@ -32241,7 +32241,7 @@ } }, { - "id": 6609, + "id": 6608, "properties": { "down": "false", "east": "false", @@ -32252,7 +32252,7 @@ } }, { - "id": 6610, + "id": 6609, "properties": { "down": "false", "east": "false", @@ -32263,7 +32263,7 @@ } }, { - "id": 6611, + "id": 6610, "properties": { "down": "false", "east": "false", @@ -32274,7 +32274,7 @@ } }, { - "id": 6612, + "id": 6611, "properties": { "down": "false", "east": "false", @@ -32285,7 +32285,7 @@ } }, { - "id": 6613, + "id": 6612, "properties": { "down": "false", "east": "false", @@ -32352,7 +32352,7 @@ "states": [ { "default": true, - "id": 5958 + "id": 5957 } ] }, @@ -33050,43 +33050,43 @@ "states": [ { "default": true, - "id": 5875, + "id": 5874, "properties": { "bites": "0" } }, { - "id": 5876, + "id": 5875, "properties": { "bites": "1" } }, { - "id": 5877, + "id": 5876, "properties": { "bites": "2" } }, { - "id": 5878, + "id": 5877, "properties": { "bites": "3" } }, { - "id": 5879, + "id": 5878, "properties": { "bites": "4" } }, { - "id": 5880, + "id": 5879, "properties": { "bites": "5" } }, { - "id": 5881, + "id": 5880, "properties": { "bites": "6" } @@ -33097,7 +33097,7 @@ "states": [ { "default": true, - "id": 21082 + "id": 22316 } ] }, @@ -33139,7 +33139,7 @@ }, "states": [ { - "id": 21181, + "id": 22415, "properties": { "facing": "north", "power": "0", @@ -33149,7 +33149,7 @@ }, { "default": true, - "id": 21182, + "id": 22416, "properties": { "facing": "north", "power": "0", @@ -33158,7 +33158,7 @@ } }, { - "id": 21183, + "id": 22417, "properties": { "facing": "north", "power": "0", @@ -33167,7 +33167,7 @@ } }, { - "id": 21184, + "id": 22418, "properties": { "facing": "north", "power": "0", @@ -33176,7 +33176,7 @@ } }, { - "id": 21185, + "id": 22419, "properties": { "facing": "north", "power": "0", @@ -33185,7 +33185,7 @@ } }, { - "id": 21186, + "id": 22420, "properties": { "facing": "north", "power": "0", @@ -33194,7 +33194,7 @@ } }, { - "id": 21187, + "id": 22421, "properties": { "facing": "north", "power": "1", @@ -33203,7 +33203,7 @@ } }, { - "id": 21188, + "id": 22422, "properties": { "facing": "north", "power": "1", @@ -33212,7 +33212,7 @@ } }, { - "id": 21189, + "id": 22423, "properties": { "facing": "north", "power": "1", @@ -33221,7 +33221,7 @@ } }, { - "id": 21190, + "id": 22424, "properties": { "facing": "north", "power": "1", @@ -33230,7 +33230,7 @@ } }, { - "id": 21191, + "id": 22425, "properties": { "facing": "north", "power": "1", @@ -33239,7 +33239,7 @@ } }, { - "id": 21192, + "id": 22426, "properties": { "facing": "north", "power": "1", @@ -33248,7 +33248,7 @@ } }, { - "id": 21193, + "id": 22427, "properties": { "facing": "north", "power": "2", @@ -33257,7 +33257,7 @@ } }, { - "id": 21194, + "id": 22428, "properties": { "facing": "north", "power": "2", @@ -33266,7 +33266,7 @@ } }, { - "id": 21195, + "id": 22429, "properties": { "facing": "north", "power": "2", @@ -33275,7 +33275,7 @@ } }, { - "id": 21196, + "id": 22430, "properties": { "facing": "north", "power": "2", @@ -33284,7 +33284,7 @@ } }, { - "id": 21197, + "id": 22431, "properties": { "facing": "north", "power": "2", @@ -33293,7 +33293,7 @@ } }, { - "id": 21198, + "id": 22432, "properties": { "facing": "north", "power": "2", @@ -33302,7 +33302,7 @@ } }, { - "id": 21199, + "id": 22433, "properties": { "facing": "north", "power": "3", @@ -33311,7 +33311,7 @@ } }, { - "id": 21200, + "id": 22434, "properties": { "facing": "north", "power": "3", @@ -33320,7 +33320,7 @@ } }, { - "id": 21201, + "id": 22435, "properties": { "facing": "north", "power": "3", @@ -33329,7 +33329,7 @@ } }, { - "id": 21202, + "id": 22436, "properties": { "facing": "north", "power": "3", @@ -33338,7 +33338,7 @@ } }, { - "id": 21203, + "id": 22437, "properties": { "facing": "north", "power": "3", @@ -33347,7 +33347,7 @@ } }, { - "id": 21204, + "id": 22438, "properties": { "facing": "north", "power": "3", @@ -33356,7 +33356,7 @@ } }, { - "id": 21205, + "id": 22439, "properties": { "facing": "north", "power": "4", @@ -33365,7 +33365,7 @@ } }, { - "id": 21206, + "id": 22440, "properties": { "facing": "north", "power": "4", @@ -33374,7 +33374,7 @@ } }, { - "id": 21207, + "id": 22441, "properties": { "facing": "north", "power": "4", @@ -33383,7 +33383,7 @@ } }, { - "id": 21208, + "id": 22442, "properties": { "facing": "north", "power": "4", @@ -33392,7 +33392,7 @@ } }, { - "id": 21209, + "id": 22443, "properties": { "facing": "north", "power": "4", @@ -33401,7 +33401,7 @@ } }, { - "id": 21210, + "id": 22444, "properties": { "facing": "north", "power": "4", @@ -33410,7 +33410,7 @@ } }, { - "id": 21211, + "id": 22445, "properties": { "facing": "north", "power": "5", @@ -33419,7 +33419,7 @@ } }, { - "id": 21212, + "id": 22446, "properties": { "facing": "north", "power": "5", @@ -33428,7 +33428,7 @@ } }, { - "id": 21213, + "id": 22447, "properties": { "facing": "north", "power": "5", @@ -33437,7 +33437,7 @@ } }, { - "id": 21214, + "id": 22448, "properties": { "facing": "north", "power": "5", @@ -33446,7 +33446,7 @@ } }, { - "id": 21215, + "id": 22449, "properties": { "facing": "north", "power": "5", @@ -33455,7 +33455,7 @@ } }, { - "id": 21216, + "id": 22450, "properties": { "facing": "north", "power": "5", @@ -33464,7 +33464,7 @@ } }, { - "id": 21217, + "id": 22451, "properties": { "facing": "north", "power": "6", @@ -33473,7 +33473,7 @@ } }, { - "id": 21218, + "id": 22452, "properties": { "facing": "north", "power": "6", @@ -33482,7 +33482,7 @@ } }, { - "id": 21219, + "id": 22453, "properties": { "facing": "north", "power": "6", @@ -33491,7 +33491,7 @@ } }, { - "id": 21220, + "id": 22454, "properties": { "facing": "north", "power": "6", @@ -33500,7 +33500,7 @@ } }, { - "id": 21221, + "id": 22455, "properties": { "facing": "north", "power": "6", @@ -33509,7 +33509,7 @@ } }, { - "id": 21222, + "id": 22456, "properties": { "facing": "north", "power": "6", @@ -33518,7 +33518,7 @@ } }, { - "id": 21223, + "id": 22457, "properties": { "facing": "north", "power": "7", @@ -33527,7 +33527,7 @@ } }, { - "id": 21224, + "id": 22458, "properties": { "facing": "north", "power": "7", @@ -33536,7 +33536,7 @@ } }, { - "id": 21225, + "id": 22459, "properties": { "facing": "north", "power": "7", @@ -33545,7 +33545,7 @@ } }, { - "id": 21226, + "id": 22460, "properties": { "facing": "north", "power": "7", @@ -33554,7 +33554,7 @@ } }, { - "id": 21227, + "id": 22461, "properties": { "facing": "north", "power": "7", @@ -33563,7 +33563,7 @@ } }, { - "id": 21228, + "id": 22462, "properties": { "facing": "north", "power": "7", @@ -33572,7 +33572,7 @@ } }, { - "id": 21229, + "id": 22463, "properties": { "facing": "north", "power": "8", @@ -33581,7 +33581,7 @@ } }, { - "id": 21230, + "id": 22464, "properties": { "facing": "north", "power": "8", @@ -33590,7 +33590,7 @@ } }, { - "id": 21231, + "id": 22465, "properties": { "facing": "north", "power": "8", @@ -33599,7 +33599,7 @@ } }, { - "id": 21232, + "id": 22466, "properties": { "facing": "north", "power": "8", @@ -33608,7 +33608,7 @@ } }, { - "id": 21233, + "id": 22467, "properties": { "facing": "north", "power": "8", @@ -33617,7 +33617,7 @@ } }, { - "id": 21234, + "id": 22468, "properties": { "facing": "north", "power": "8", @@ -33626,7 +33626,7 @@ } }, { - "id": 21235, + "id": 22469, "properties": { "facing": "north", "power": "9", @@ -33635,7 +33635,7 @@ } }, { - "id": 21236, + "id": 22470, "properties": { "facing": "north", "power": "9", @@ -33644,7 +33644,7 @@ } }, { - "id": 21237, + "id": 22471, "properties": { "facing": "north", "power": "9", @@ -33653,7 +33653,7 @@ } }, { - "id": 21238, + "id": 22472, "properties": { "facing": "north", "power": "9", @@ -33662,7 +33662,7 @@ } }, { - "id": 21239, + "id": 22473, "properties": { "facing": "north", "power": "9", @@ -33671,7 +33671,7 @@ } }, { - "id": 21240, + "id": 22474, "properties": { "facing": "north", "power": "9", @@ -33680,7 +33680,7 @@ } }, { - "id": 21241, + "id": 22475, "properties": { "facing": "north", "power": "10", @@ -33689,7 +33689,7 @@ } }, { - "id": 21242, + "id": 22476, "properties": { "facing": "north", "power": "10", @@ -33698,7 +33698,7 @@ } }, { - "id": 21243, + "id": 22477, "properties": { "facing": "north", "power": "10", @@ -33707,7 +33707,7 @@ } }, { - "id": 21244, + "id": 22478, "properties": { "facing": "north", "power": "10", @@ -33716,7 +33716,7 @@ } }, { - "id": 21245, + "id": 22479, "properties": { "facing": "north", "power": "10", @@ -33725,7 +33725,7 @@ } }, { - "id": 21246, + "id": 22480, "properties": { "facing": "north", "power": "10", @@ -33734,7 +33734,7 @@ } }, { - "id": 21247, + "id": 22481, "properties": { "facing": "north", "power": "11", @@ -33743,7 +33743,7 @@ } }, { - "id": 21248, + "id": 22482, "properties": { "facing": "north", "power": "11", @@ -33752,7 +33752,7 @@ } }, { - "id": 21249, + "id": 22483, "properties": { "facing": "north", "power": "11", @@ -33761,7 +33761,7 @@ } }, { - "id": 21250, + "id": 22484, "properties": { "facing": "north", "power": "11", @@ -33770,7 +33770,7 @@ } }, { - "id": 21251, + "id": 22485, "properties": { "facing": "north", "power": "11", @@ -33779,7 +33779,7 @@ } }, { - "id": 21252, + "id": 22486, "properties": { "facing": "north", "power": "11", @@ -33788,7 +33788,7 @@ } }, { - "id": 21253, + "id": 22487, "properties": { "facing": "north", "power": "12", @@ -33797,7 +33797,7 @@ } }, { - "id": 21254, + "id": 22488, "properties": { "facing": "north", "power": "12", @@ -33806,7 +33806,7 @@ } }, { - "id": 21255, + "id": 22489, "properties": { "facing": "north", "power": "12", @@ -33815,7 +33815,7 @@ } }, { - "id": 21256, + "id": 22490, "properties": { "facing": "north", "power": "12", @@ -33824,7 +33824,7 @@ } }, { - "id": 21257, + "id": 22491, "properties": { "facing": "north", "power": "12", @@ -33833,7 +33833,7 @@ } }, { - "id": 21258, + "id": 22492, "properties": { "facing": "north", "power": "12", @@ -33842,7 +33842,7 @@ } }, { - "id": 21259, + "id": 22493, "properties": { "facing": "north", "power": "13", @@ -33851,7 +33851,7 @@ } }, { - "id": 21260, + "id": 22494, "properties": { "facing": "north", "power": "13", @@ -33860,7 +33860,7 @@ } }, { - "id": 21261, + "id": 22495, "properties": { "facing": "north", "power": "13", @@ -33869,7 +33869,7 @@ } }, { - "id": 21262, + "id": 22496, "properties": { "facing": "north", "power": "13", @@ -33878,7 +33878,7 @@ } }, { - "id": 21263, + "id": 22497, "properties": { "facing": "north", "power": "13", @@ -33887,7 +33887,7 @@ } }, { - "id": 21264, + "id": 22498, "properties": { "facing": "north", "power": "13", @@ -33896,7 +33896,7 @@ } }, { - "id": 21265, + "id": 22499, "properties": { "facing": "north", "power": "14", @@ -33905,7 +33905,7 @@ } }, { - "id": 21266, + "id": 22500, "properties": { "facing": "north", "power": "14", @@ -33914,7 +33914,7 @@ } }, { - "id": 21267, + "id": 22501, "properties": { "facing": "north", "power": "14", @@ -33923,7 +33923,7 @@ } }, { - "id": 21268, + "id": 22502, "properties": { "facing": "north", "power": "14", @@ -33932,7 +33932,7 @@ } }, { - "id": 21269, + "id": 22503, "properties": { "facing": "north", "power": "14", @@ -33941,7 +33941,7 @@ } }, { - "id": 21270, + "id": 22504, "properties": { "facing": "north", "power": "14", @@ -33950,7 +33950,7 @@ } }, { - "id": 21271, + "id": 22505, "properties": { "facing": "north", "power": "15", @@ -33959,7 +33959,7 @@ } }, { - "id": 21272, + "id": 22506, "properties": { "facing": "north", "power": "15", @@ -33968,7 +33968,7 @@ } }, { - "id": 21273, + "id": 22507, "properties": { "facing": "north", "power": "15", @@ -33977,7 +33977,7 @@ } }, { - "id": 21274, + "id": 22508, "properties": { "facing": "north", "power": "15", @@ -33986,7 +33986,7 @@ } }, { - "id": 21275, + "id": 22509, "properties": { "facing": "north", "power": "15", @@ -33995,7 +33995,7 @@ } }, { - "id": 21276, + "id": 22510, "properties": { "facing": "north", "power": "15", @@ -34004,7 +34004,7 @@ } }, { - "id": 21277, + "id": 22511, "properties": { "facing": "south", "power": "0", @@ -34013,7 +34013,7 @@ } }, { - "id": 21278, + "id": 22512, "properties": { "facing": "south", "power": "0", @@ -34022,7 +34022,7 @@ } }, { - "id": 21279, + "id": 22513, "properties": { "facing": "south", "power": "0", @@ -34031,7 +34031,7 @@ } }, { - "id": 21280, + "id": 22514, "properties": { "facing": "south", "power": "0", @@ -34040,7 +34040,7 @@ } }, { - "id": 21281, + "id": 22515, "properties": { "facing": "south", "power": "0", @@ -34049,7 +34049,7 @@ } }, { - "id": 21282, + "id": 22516, "properties": { "facing": "south", "power": "0", @@ -34058,7 +34058,7 @@ } }, { - "id": 21283, + "id": 22517, "properties": { "facing": "south", "power": "1", @@ -34067,7 +34067,7 @@ } }, { - "id": 21284, + "id": 22518, "properties": { "facing": "south", "power": "1", @@ -34076,7 +34076,7 @@ } }, { - "id": 21285, + "id": 22519, "properties": { "facing": "south", "power": "1", @@ -34085,7 +34085,7 @@ } }, { - "id": 21286, + "id": 22520, "properties": { "facing": "south", "power": "1", @@ -34094,7 +34094,7 @@ } }, { - "id": 21287, + "id": 22521, "properties": { "facing": "south", "power": "1", @@ -34103,7 +34103,7 @@ } }, { - "id": 21288, + "id": 22522, "properties": { "facing": "south", "power": "1", @@ -34112,7 +34112,7 @@ } }, { - "id": 21289, + "id": 22523, "properties": { "facing": "south", "power": "2", @@ -34121,7 +34121,7 @@ } }, { - "id": 21290, + "id": 22524, "properties": { "facing": "south", "power": "2", @@ -34130,7 +34130,7 @@ } }, { - "id": 21291, + "id": 22525, "properties": { "facing": "south", "power": "2", @@ -34139,7 +34139,7 @@ } }, { - "id": 21292, + "id": 22526, "properties": { "facing": "south", "power": "2", @@ -34148,7 +34148,7 @@ } }, { - "id": 21293, + "id": 22527, "properties": { "facing": "south", "power": "2", @@ -34157,7 +34157,7 @@ } }, { - "id": 21294, + "id": 22528, "properties": { "facing": "south", "power": "2", @@ -34166,7 +34166,7 @@ } }, { - "id": 21295, + "id": 22529, "properties": { "facing": "south", "power": "3", @@ -34175,7 +34175,7 @@ } }, { - "id": 21296, + "id": 22530, "properties": { "facing": "south", "power": "3", @@ -34184,7 +34184,7 @@ } }, { - "id": 21297, + "id": 22531, "properties": { "facing": "south", "power": "3", @@ -34193,7 +34193,7 @@ } }, { - "id": 21298, + "id": 22532, "properties": { "facing": "south", "power": "3", @@ -34202,7 +34202,7 @@ } }, { - "id": 21299, + "id": 22533, "properties": { "facing": "south", "power": "3", @@ -34211,7 +34211,7 @@ } }, { - "id": 21300, + "id": 22534, "properties": { "facing": "south", "power": "3", @@ -34220,7 +34220,7 @@ } }, { - "id": 21301, + "id": 22535, "properties": { "facing": "south", "power": "4", @@ -34229,7 +34229,7 @@ } }, { - "id": 21302, + "id": 22536, "properties": { "facing": "south", "power": "4", @@ -34238,7 +34238,7 @@ } }, { - "id": 21303, + "id": 22537, "properties": { "facing": "south", "power": "4", @@ -34247,7 +34247,7 @@ } }, { - "id": 21304, + "id": 22538, "properties": { "facing": "south", "power": "4", @@ -34256,7 +34256,7 @@ } }, { - "id": 21305, + "id": 22539, "properties": { "facing": "south", "power": "4", @@ -34265,7 +34265,7 @@ } }, { - "id": 21306, + "id": 22540, "properties": { "facing": "south", "power": "4", @@ -34274,7 +34274,7 @@ } }, { - "id": 21307, + "id": 22541, "properties": { "facing": "south", "power": "5", @@ -34283,7 +34283,7 @@ } }, { - "id": 21308, + "id": 22542, "properties": { "facing": "south", "power": "5", @@ -34292,7 +34292,7 @@ } }, { - "id": 21309, + "id": 22543, "properties": { "facing": "south", "power": "5", @@ -34301,7 +34301,7 @@ } }, { - "id": 21310, + "id": 22544, "properties": { "facing": "south", "power": "5", @@ -34310,7 +34310,7 @@ } }, { - "id": 21311, + "id": 22545, "properties": { "facing": "south", "power": "5", @@ -34319,7 +34319,7 @@ } }, { - "id": 21312, + "id": 22546, "properties": { "facing": "south", "power": "5", @@ -34328,7 +34328,7 @@ } }, { - "id": 21313, + "id": 22547, "properties": { "facing": "south", "power": "6", @@ -34337,7 +34337,7 @@ } }, { - "id": 21314, + "id": 22548, "properties": { "facing": "south", "power": "6", @@ -34346,7 +34346,7 @@ } }, { - "id": 21315, + "id": 22549, "properties": { "facing": "south", "power": "6", @@ -34355,7 +34355,7 @@ } }, { - "id": 21316, + "id": 22550, "properties": { "facing": "south", "power": "6", @@ -34364,7 +34364,7 @@ } }, { - "id": 21317, + "id": 22551, "properties": { "facing": "south", "power": "6", @@ -34373,7 +34373,7 @@ } }, { - "id": 21318, + "id": 22552, "properties": { "facing": "south", "power": "6", @@ -34382,7 +34382,7 @@ } }, { - "id": 21319, + "id": 22553, "properties": { "facing": "south", "power": "7", @@ -34391,7 +34391,7 @@ } }, { - "id": 21320, + "id": 22554, "properties": { "facing": "south", "power": "7", @@ -34400,7 +34400,7 @@ } }, { - "id": 21321, + "id": 22555, "properties": { "facing": "south", "power": "7", @@ -34409,7 +34409,7 @@ } }, { - "id": 21322, + "id": 22556, "properties": { "facing": "south", "power": "7", @@ -34418,7 +34418,7 @@ } }, { - "id": 21323, + "id": 22557, "properties": { "facing": "south", "power": "7", @@ -34427,7 +34427,7 @@ } }, { - "id": 21324, + "id": 22558, "properties": { "facing": "south", "power": "7", @@ -34436,7 +34436,7 @@ } }, { - "id": 21325, + "id": 22559, "properties": { "facing": "south", "power": "8", @@ -34445,7 +34445,7 @@ } }, { - "id": 21326, + "id": 22560, "properties": { "facing": "south", "power": "8", @@ -34454,7 +34454,7 @@ } }, { - "id": 21327, + "id": 22561, "properties": { "facing": "south", "power": "8", @@ -34463,7 +34463,7 @@ } }, { - "id": 21328, + "id": 22562, "properties": { "facing": "south", "power": "8", @@ -34472,7 +34472,7 @@ } }, { - "id": 21329, + "id": 22563, "properties": { "facing": "south", "power": "8", @@ -34481,7 +34481,7 @@ } }, { - "id": 21330, + "id": 22564, "properties": { "facing": "south", "power": "8", @@ -34490,7 +34490,7 @@ } }, { - "id": 21331, + "id": 22565, "properties": { "facing": "south", "power": "9", @@ -34499,7 +34499,7 @@ } }, { - "id": 21332, + "id": 22566, "properties": { "facing": "south", "power": "9", @@ -34508,7 +34508,7 @@ } }, { - "id": 21333, + "id": 22567, "properties": { "facing": "south", "power": "9", @@ -34517,7 +34517,7 @@ } }, { - "id": 21334, + "id": 22568, "properties": { "facing": "south", "power": "9", @@ -34526,7 +34526,7 @@ } }, { - "id": 21335, + "id": 22569, "properties": { "facing": "south", "power": "9", @@ -34535,7 +34535,7 @@ } }, { - "id": 21336, + "id": 22570, "properties": { "facing": "south", "power": "9", @@ -34544,7 +34544,7 @@ } }, { - "id": 21337, + "id": 22571, "properties": { "facing": "south", "power": "10", @@ -34553,7 +34553,7 @@ } }, { - "id": 21338, + "id": 22572, "properties": { "facing": "south", "power": "10", @@ -34562,7 +34562,7 @@ } }, { - "id": 21339, + "id": 22573, "properties": { "facing": "south", "power": "10", @@ -34571,7 +34571,7 @@ } }, { - "id": 21340, + "id": 22574, "properties": { "facing": "south", "power": "10", @@ -34580,7 +34580,7 @@ } }, { - "id": 21341, + "id": 22575, "properties": { "facing": "south", "power": "10", @@ -34589,7 +34589,7 @@ } }, { - "id": 21342, + "id": 22576, "properties": { "facing": "south", "power": "10", @@ -34598,7 +34598,7 @@ } }, { - "id": 21343, + "id": 22577, "properties": { "facing": "south", "power": "11", @@ -34607,7 +34607,7 @@ } }, { - "id": 21344, + "id": 22578, "properties": { "facing": "south", "power": "11", @@ -34616,7 +34616,7 @@ } }, { - "id": 21345, + "id": 22579, "properties": { "facing": "south", "power": "11", @@ -34625,7 +34625,7 @@ } }, { - "id": 21346, + "id": 22580, "properties": { "facing": "south", "power": "11", @@ -34634,7 +34634,7 @@ } }, { - "id": 21347, + "id": 22581, "properties": { "facing": "south", "power": "11", @@ -34643,7 +34643,7 @@ } }, { - "id": 21348, + "id": 22582, "properties": { "facing": "south", "power": "11", @@ -34652,7 +34652,7 @@ } }, { - "id": 21349, + "id": 22583, "properties": { "facing": "south", "power": "12", @@ -34661,7 +34661,7 @@ } }, { - "id": 21350, + "id": 22584, "properties": { "facing": "south", "power": "12", @@ -34670,7 +34670,7 @@ } }, { - "id": 21351, + "id": 22585, "properties": { "facing": "south", "power": "12", @@ -34679,7 +34679,7 @@ } }, { - "id": 21352, + "id": 22586, "properties": { "facing": "south", "power": "12", @@ -34688,7 +34688,7 @@ } }, { - "id": 21353, + "id": 22587, "properties": { "facing": "south", "power": "12", @@ -34697,7 +34697,7 @@ } }, { - "id": 21354, + "id": 22588, "properties": { "facing": "south", "power": "12", @@ -34706,7 +34706,7 @@ } }, { - "id": 21355, + "id": 22589, "properties": { "facing": "south", "power": "13", @@ -34715,7 +34715,7 @@ } }, { - "id": 21356, + "id": 22590, "properties": { "facing": "south", "power": "13", @@ -34724,7 +34724,7 @@ } }, { - "id": 21357, + "id": 22591, "properties": { "facing": "south", "power": "13", @@ -34733,7 +34733,7 @@ } }, { - "id": 21358, + "id": 22592, "properties": { "facing": "south", "power": "13", @@ -34742,7 +34742,7 @@ } }, { - "id": 21359, + "id": 22593, "properties": { "facing": "south", "power": "13", @@ -34751,7 +34751,7 @@ } }, { - "id": 21360, + "id": 22594, "properties": { "facing": "south", "power": "13", @@ -34760,7 +34760,7 @@ } }, { - "id": 21361, + "id": 22595, "properties": { "facing": "south", "power": "14", @@ -34769,7 +34769,7 @@ } }, { - "id": 21362, + "id": 22596, "properties": { "facing": "south", "power": "14", @@ -34778,7 +34778,7 @@ } }, { - "id": 21363, + "id": 22597, "properties": { "facing": "south", "power": "14", @@ -34787,7 +34787,7 @@ } }, { - "id": 21364, + "id": 22598, "properties": { "facing": "south", "power": "14", @@ -34796,7 +34796,7 @@ } }, { - "id": 21365, + "id": 22599, "properties": { "facing": "south", "power": "14", @@ -34805,7 +34805,7 @@ } }, { - "id": 21366, + "id": 22600, "properties": { "facing": "south", "power": "14", @@ -34814,7 +34814,7 @@ } }, { - "id": 21367, + "id": 22601, "properties": { "facing": "south", "power": "15", @@ -34823,7 +34823,7 @@ } }, { - "id": 21368, + "id": 22602, "properties": { "facing": "south", "power": "15", @@ -34832,7 +34832,7 @@ } }, { - "id": 21369, + "id": 22603, "properties": { "facing": "south", "power": "15", @@ -34841,7 +34841,7 @@ } }, { - "id": 21370, + "id": 22604, "properties": { "facing": "south", "power": "15", @@ -34850,7 +34850,7 @@ } }, { - "id": 21371, + "id": 22605, "properties": { "facing": "south", "power": "15", @@ -34859,7 +34859,7 @@ } }, { - "id": 21372, + "id": 22606, "properties": { "facing": "south", "power": "15", @@ -34868,7 +34868,7 @@ } }, { - "id": 21373, + "id": 22607, "properties": { "facing": "west", "power": "0", @@ -34877,7 +34877,7 @@ } }, { - "id": 21374, + "id": 22608, "properties": { "facing": "west", "power": "0", @@ -34886,7 +34886,7 @@ } }, { - "id": 21375, + "id": 22609, "properties": { "facing": "west", "power": "0", @@ -34895,7 +34895,7 @@ } }, { - "id": 21376, + "id": 22610, "properties": { "facing": "west", "power": "0", @@ -34904,7 +34904,7 @@ } }, { - "id": 21377, + "id": 22611, "properties": { "facing": "west", "power": "0", @@ -34913,7 +34913,7 @@ } }, { - "id": 21378, + "id": 22612, "properties": { "facing": "west", "power": "0", @@ -34922,7 +34922,7 @@ } }, { - "id": 21379, + "id": 22613, "properties": { "facing": "west", "power": "1", @@ -34931,7 +34931,7 @@ } }, { - "id": 21380, + "id": 22614, "properties": { "facing": "west", "power": "1", @@ -34940,7 +34940,7 @@ } }, { - "id": 21381, + "id": 22615, "properties": { "facing": "west", "power": "1", @@ -34949,7 +34949,7 @@ } }, { - "id": 21382, + "id": 22616, "properties": { "facing": "west", "power": "1", @@ -34958,7 +34958,7 @@ } }, { - "id": 21383, + "id": 22617, "properties": { "facing": "west", "power": "1", @@ -34967,7 +34967,7 @@ } }, { - "id": 21384, + "id": 22618, "properties": { "facing": "west", "power": "1", @@ -34976,7 +34976,7 @@ } }, { - "id": 21385, + "id": 22619, "properties": { "facing": "west", "power": "2", @@ -34985,7 +34985,7 @@ } }, { - "id": 21386, + "id": 22620, "properties": { "facing": "west", "power": "2", @@ -34994,7 +34994,7 @@ } }, { - "id": 21387, + "id": 22621, "properties": { "facing": "west", "power": "2", @@ -35003,7 +35003,7 @@ } }, { - "id": 21388, + "id": 22622, "properties": { "facing": "west", "power": "2", @@ -35012,7 +35012,7 @@ } }, { - "id": 21389, + "id": 22623, "properties": { "facing": "west", "power": "2", @@ -35021,7 +35021,7 @@ } }, { - "id": 21390, + "id": 22624, "properties": { "facing": "west", "power": "2", @@ -35030,7 +35030,7 @@ } }, { - "id": 21391, + "id": 22625, "properties": { "facing": "west", "power": "3", @@ -35039,7 +35039,7 @@ } }, { - "id": 21392, + "id": 22626, "properties": { "facing": "west", "power": "3", @@ -35048,7 +35048,7 @@ } }, { - "id": 21393, + "id": 22627, "properties": { "facing": "west", "power": "3", @@ -35057,7 +35057,7 @@ } }, { - "id": 21394, + "id": 22628, "properties": { "facing": "west", "power": "3", @@ -35066,7 +35066,7 @@ } }, { - "id": 21395, + "id": 22629, "properties": { "facing": "west", "power": "3", @@ -35075,7 +35075,7 @@ } }, { - "id": 21396, + "id": 22630, "properties": { "facing": "west", "power": "3", @@ -35084,7 +35084,7 @@ } }, { - "id": 21397, + "id": 22631, "properties": { "facing": "west", "power": "4", @@ -35093,7 +35093,7 @@ } }, { - "id": 21398, + "id": 22632, "properties": { "facing": "west", "power": "4", @@ -35102,7 +35102,7 @@ } }, { - "id": 21399, + "id": 22633, "properties": { "facing": "west", "power": "4", @@ -35111,7 +35111,7 @@ } }, { - "id": 21400, + "id": 22634, "properties": { "facing": "west", "power": "4", @@ -35120,7 +35120,7 @@ } }, { - "id": 21401, + "id": 22635, "properties": { "facing": "west", "power": "4", @@ -35129,7 +35129,7 @@ } }, { - "id": 21402, + "id": 22636, "properties": { "facing": "west", "power": "4", @@ -35138,7 +35138,7 @@ } }, { - "id": 21403, + "id": 22637, "properties": { "facing": "west", "power": "5", @@ -35147,7 +35147,7 @@ } }, { - "id": 21404, + "id": 22638, "properties": { "facing": "west", "power": "5", @@ -35156,7 +35156,7 @@ } }, { - "id": 21405, + "id": 22639, "properties": { "facing": "west", "power": "5", @@ -35165,7 +35165,7 @@ } }, { - "id": 21406, + "id": 22640, "properties": { "facing": "west", "power": "5", @@ -35174,7 +35174,7 @@ } }, { - "id": 21407, + "id": 22641, "properties": { "facing": "west", "power": "5", @@ -35183,7 +35183,7 @@ } }, { - "id": 21408, + "id": 22642, "properties": { "facing": "west", "power": "5", @@ -35192,7 +35192,7 @@ } }, { - "id": 21409, + "id": 22643, "properties": { "facing": "west", "power": "6", @@ -35201,7 +35201,7 @@ } }, { - "id": 21410, + "id": 22644, "properties": { "facing": "west", "power": "6", @@ -35210,7 +35210,7 @@ } }, { - "id": 21411, + "id": 22645, "properties": { "facing": "west", "power": "6", @@ -35219,7 +35219,7 @@ } }, { - "id": 21412, + "id": 22646, "properties": { "facing": "west", "power": "6", @@ -35228,7 +35228,7 @@ } }, { - "id": 21413, + "id": 22647, "properties": { "facing": "west", "power": "6", @@ -35237,7 +35237,7 @@ } }, { - "id": 21414, + "id": 22648, "properties": { "facing": "west", "power": "6", @@ -35246,7 +35246,7 @@ } }, { - "id": 21415, + "id": 22649, "properties": { "facing": "west", "power": "7", @@ -35255,7 +35255,7 @@ } }, { - "id": 21416, + "id": 22650, "properties": { "facing": "west", "power": "7", @@ -35264,7 +35264,7 @@ } }, { - "id": 21417, + "id": 22651, "properties": { "facing": "west", "power": "7", @@ -35273,7 +35273,7 @@ } }, { - "id": 21418, + "id": 22652, "properties": { "facing": "west", "power": "7", @@ -35282,7 +35282,7 @@ } }, { - "id": 21419, + "id": 22653, "properties": { "facing": "west", "power": "7", @@ -35291,7 +35291,7 @@ } }, { - "id": 21420, + "id": 22654, "properties": { "facing": "west", "power": "7", @@ -35300,7 +35300,7 @@ } }, { - "id": 21421, + "id": 22655, "properties": { "facing": "west", "power": "8", @@ -35309,7 +35309,7 @@ } }, { - "id": 21422, + "id": 22656, "properties": { "facing": "west", "power": "8", @@ -35318,7 +35318,7 @@ } }, { - "id": 21423, + "id": 22657, "properties": { "facing": "west", "power": "8", @@ -35327,7 +35327,7 @@ } }, { - "id": 21424, + "id": 22658, "properties": { "facing": "west", "power": "8", @@ -35336,7 +35336,7 @@ } }, { - "id": 21425, + "id": 22659, "properties": { "facing": "west", "power": "8", @@ -35345,7 +35345,7 @@ } }, { - "id": 21426, + "id": 22660, "properties": { "facing": "west", "power": "8", @@ -35354,7 +35354,7 @@ } }, { - "id": 21427, + "id": 22661, "properties": { "facing": "west", "power": "9", @@ -35363,7 +35363,7 @@ } }, { - "id": 21428, + "id": 22662, "properties": { "facing": "west", "power": "9", @@ -35372,7 +35372,7 @@ } }, { - "id": 21429, + "id": 22663, "properties": { "facing": "west", "power": "9", @@ -35381,7 +35381,7 @@ } }, { - "id": 21430, + "id": 22664, "properties": { "facing": "west", "power": "9", @@ -35390,7 +35390,7 @@ } }, { - "id": 21431, + "id": 22665, "properties": { "facing": "west", "power": "9", @@ -35399,7 +35399,7 @@ } }, { - "id": 21432, + "id": 22666, "properties": { "facing": "west", "power": "9", @@ -35408,7 +35408,7 @@ } }, { - "id": 21433, + "id": 22667, "properties": { "facing": "west", "power": "10", @@ -35417,7 +35417,7 @@ } }, { - "id": 21434, + "id": 22668, "properties": { "facing": "west", "power": "10", @@ -35426,7 +35426,7 @@ } }, { - "id": 21435, + "id": 22669, "properties": { "facing": "west", "power": "10", @@ -35435,7 +35435,7 @@ } }, { - "id": 21436, + "id": 22670, "properties": { "facing": "west", "power": "10", @@ -35444,7 +35444,7 @@ } }, { - "id": 21437, + "id": 22671, "properties": { "facing": "west", "power": "10", @@ -35453,7 +35453,7 @@ } }, { - "id": 21438, + "id": 22672, "properties": { "facing": "west", "power": "10", @@ -35462,7 +35462,7 @@ } }, { - "id": 21439, + "id": 22673, "properties": { "facing": "west", "power": "11", @@ -35471,7 +35471,7 @@ } }, { - "id": 21440, + "id": 22674, "properties": { "facing": "west", "power": "11", @@ -35480,7 +35480,7 @@ } }, { - "id": 21441, + "id": 22675, "properties": { "facing": "west", "power": "11", @@ -35489,7 +35489,7 @@ } }, { - "id": 21442, + "id": 22676, "properties": { "facing": "west", "power": "11", @@ -35498,7 +35498,7 @@ } }, { - "id": 21443, + "id": 22677, "properties": { "facing": "west", "power": "11", @@ -35507,7 +35507,7 @@ } }, { - "id": 21444, + "id": 22678, "properties": { "facing": "west", "power": "11", @@ -35516,7 +35516,7 @@ } }, { - "id": 21445, + "id": 22679, "properties": { "facing": "west", "power": "12", @@ -35525,7 +35525,7 @@ } }, { - "id": 21446, + "id": 22680, "properties": { "facing": "west", "power": "12", @@ -35534,7 +35534,7 @@ } }, { - "id": 21447, + "id": 22681, "properties": { "facing": "west", "power": "12", @@ -35543,7 +35543,7 @@ } }, { - "id": 21448, + "id": 22682, "properties": { "facing": "west", "power": "12", @@ -35552,7 +35552,7 @@ } }, { - "id": 21449, + "id": 22683, "properties": { "facing": "west", "power": "12", @@ -35561,7 +35561,7 @@ } }, { - "id": 21450, + "id": 22684, "properties": { "facing": "west", "power": "12", @@ -35570,7 +35570,7 @@ } }, { - "id": 21451, + "id": 22685, "properties": { "facing": "west", "power": "13", @@ -35579,7 +35579,7 @@ } }, { - "id": 21452, + "id": 22686, "properties": { "facing": "west", "power": "13", @@ -35588,7 +35588,7 @@ } }, { - "id": 21453, + "id": 22687, "properties": { "facing": "west", "power": "13", @@ -35597,7 +35597,7 @@ } }, { - "id": 21454, + "id": 22688, "properties": { "facing": "west", "power": "13", @@ -35606,7 +35606,7 @@ } }, { - "id": 21455, + "id": 22689, "properties": { "facing": "west", "power": "13", @@ -35615,7 +35615,7 @@ } }, { - "id": 21456, + "id": 22690, "properties": { "facing": "west", "power": "13", @@ -35624,7 +35624,7 @@ } }, { - "id": 21457, + "id": 22691, "properties": { "facing": "west", "power": "14", @@ -35633,7 +35633,7 @@ } }, { - "id": 21458, + "id": 22692, "properties": { "facing": "west", "power": "14", @@ -35642,7 +35642,7 @@ } }, { - "id": 21459, + "id": 22693, "properties": { "facing": "west", "power": "14", @@ -35651,7 +35651,7 @@ } }, { - "id": 21460, + "id": 22694, "properties": { "facing": "west", "power": "14", @@ -35660,7 +35660,7 @@ } }, { - "id": 21461, + "id": 22695, "properties": { "facing": "west", "power": "14", @@ -35669,7 +35669,7 @@ } }, { - "id": 21462, + "id": 22696, "properties": { "facing": "west", "power": "14", @@ -35678,7 +35678,7 @@ } }, { - "id": 21463, + "id": 22697, "properties": { "facing": "west", "power": "15", @@ -35687,7 +35687,7 @@ } }, { - "id": 21464, + "id": 22698, "properties": { "facing": "west", "power": "15", @@ -35696,7 +35696,7 @@ } }, { - "id": 21465, + "id": 22699, "properties": { "facing": "west", "power": "15", @@ -35705,7 +35705,7 @@ } }, { - "id": 21466, + "id": 22700, "properties": { "facing": "west", "power": "15", @@ -35714,7 +35714,7 @@ } }, { - "id": 21467, + "id": 22701, "properties": { "facing": "west", "power": "15", @@ -35723,7 +35723,7 @@ } }, { - "id": 21468, + "id": 22702, "properties": { "facing": "west", "power": "15", @@ -35732,7 +35732,7 @@ } }, { - "id": 21469, + "id": 22703, "properties": { "facing": "east", "power": "0", @@ -35741,7 +35741,7 @@ } }, { - "id": 21470, + "id": 22704, "properties": { "facing": "east", "power": "0", @@ -35750,7 +35750,7 @@ } }, { - "id": 21471, + "id": 22705, "properties": { "facing": "east", "power": "0", @@ -35759,7 +35759,7 @@ } }, { - "id": 21472, + "id": 22706, "properties": { "facing": "east", "power": "0", @@ -35768,7 +35768,7 @@ } }, { - "id": 21473, + "id": 22707, "properties": { "facing": "east", "power": "0", @@ -35777,7 +35777,7 @@ } }, { - "id": 21474, + "id": 22708, "properties": { "facing": "east", "power": "0", @@ -35786,7 +35786,7 @@ } }, { - "id": 21475, + "id": 22709, "properties": { "facing": "east", "power": "1", @@ -35795,7 +35795,7 @@ } }, { - "id": 21476, + "id": 22710, "properties": { "facing": "east", "power": "1", @@ -35804,7 +35804,7 @@ } }, { - "id": 21477, + "id": 22711, "properties": { "facing": "east", "power": "1", @@ -35813,7 +35813,7 @@ } }, { - "id": 21478, + "id": 22712, "properties": { "facing": "east", "power": "1", @@ -35822,7 +35822,7 @@ } }, { - "id": 21479, + "id": 22713, "properties": { "facing": "east", "power": "1", @@ -35831,7 +35831,7 @@ } }, { - "id": 21480, + "id": 22714, "properties": { "facing": "east", "power": "1", @@ -35840,7 +35840,7 @@ } }, { - "id": 21481, + "id": 22715, "properties": { "facing": "east", "power": "2", @@ -35849,7 +35849,7 @@ } }, { - "id": 21482, + "id": 22716, "properties": { "facing": "east", "power": "2", @@ -35858,7 +35858,7 @@ } }, { - "id": 21483, + "id": 22717, "properties": { "facing": "east", "power": "2", @@ -35867,7 +35867,7 @@ } }, { - "id": 21484, + "id": 22718, "properties": { "facing": "east", "power": "2", @@ -35876,7 +35876,7 @@ } }, { - "id": 21485, + "id": 22719, "properties": { "facing": "east", "power": "2", @@ -35885,7 +35885,7 @@ } }, { - "id": 21486, + "id": 22720, "properties": { "facing": "east", "power": "2", @@ -35894,7 +35894,7 @@ } }, { - "id": 21487, + "id": 22721, "properties": { "facing": "east", "power": "3", @@ -35903,7 +35903,7 @@ } }, { - "id": 21488, + "id": 22722, "properties": { "facing": "east", "power": "3", @@ -35912,7 +35912,7 @@ } }, { - "id": 21489, + "id": 22723, "properties": { "facing": "east", "power": "3", @@ -35921,7 +35921,7 @@ } }, { - "id": 21490, + "id": 22724, "properties": { "facing": "east", "power": "3", @@ -35930,7 +35930,7 @@ } }, { - "id": 21491, + "id": 22725, "properties": { "facing": "east", "power": "3", @@ -35939,7 +35939,7 @@ } }, { - "id": 21492, + "id": 22726, "properties": { "facing": "east", "power": "3", @@ -35948,7 +35948,7 @@ } }, { - "id": 21493, + "id": 22727, "properties": { "facing": "east", "power": "4", @@ -35957,7 +35957,7 @@ } }, { - "id": 21494, + "id": 22728, "properties": { "facing": "east", "power": "4", @@ -35966,7 +35966,7 @@ } }, { - "id": 21495, + "id": 22729, "properties": { "facing": "east", "power": "4", @@ -35975,7 +35975,7 @@ } }, { - "id": 21496, + "id": 22730, "properties": { "facing": "east", "power": "4", @@ -35984,7 +35984,7 @@ } }, { - "id": 21497, + "id": 22731, "properties": { "facing": "east", "power": "4", @@ -35993,7 +35993,7 @@ } }, { - "id": 21498, + "id": 22732, "properties": { "facing": "east", "power": "4", @@ -36002,7 +36002,7 @@ } }, { - "id": 21499, + "id": 22733, "properties": { "facing": "east", "power": "5", @@ -36011,7 +36011,7 @@ } }, { - "id": 21500, + "id": 22734, "properties": { "facing": "east", "power": "5", @@ -36020,7 +36020,7 @@ } }, { - "id": 21501, + "id": 22735, "properties": { "facing": "east", "power": "5", @@ -36029,7 +36029,7 @@ } }, { - "id": 21502, + "id": 22736, "properties": { "facing": "east", "power": "5", @@ -36038,7 +36038,7 @@ } }, { - "id": 21503, + "id": 22737, "properties": { "facing": "east", "power": "5", @@ -36047,7 +36047,7 @@ } }, { - "id": 21504, + "id": 22738, "properties": { "facing": "east", "power": "5", @@ -36056,7 +36056,7 @@ } }, { - "id": 21505, + "id": 22739, "properties": { "facing": "east", "power": "6", @@ -36065,7 +36065,7 @@ } }, { - "id": 21506, + "id": 22740, "properties": { "facing": "east", "power": "6", @@ -36074,7 +36074,7 @@ } }, { - "id": 21507, + "id": 22741, "properties": { "facing": "east", "power": "6", @@ -36083,7 +36083,7 @@ } }, { - "id": 21508, + "id": 22742, "properties": { "facing": "east", "power": "6", @@ -36092,7 +36092,7 @@ } }, { - "id": 21509, + "id": 22743, "properties": { "facing": "east", "power": "6", @@ -36101,7 +36101,7 @@ } }, { - "id": 21510, + "id": 22744, "properties": { "facing": "east", "power": "6", @@ -36110,7 +36110,7 @@ } }, { - "id": 21511, + "id": 22745, "properties": { "facing": "east", "power": "7", @@ -36119,7 +36119,7 @@ } }, { - "id": 21512, + "id": 22746, "properties": { "facing": "east", "power": "7", @@ -36128,7 +36128,7 @@ } }, { - "id": 21513, + "id": 22747, "properties": { "facing": "east", "power": "7", @@ -36137,7 +36137,7 @@ } }, { - "id": 21514, + "id": 22748, "properties": { "facing": "east", "power": "7", @@ -36146,7 +36146,7 @@ } }, { - "id": 21515, + "id": 22749, "properties": { "facing": "east", "power": "7", @@ -36155,7 +36155,7 @@ } }, { - "id": 21516, + "id": 22750, "properties": { "facing": "east", "power": "7", @@ -36164,7 +36164,7 @@ } }, { - "id": 21517, + "id": 22751, "properties": { "facing": "east", "power": "8", @@ -36173,7 +36173,7 @@ } }, { - "id": 21518, + "id": 22752, "properties": { "facing": "east", "power": "8", @@ -36182,7 +36182,7 @@ } }, { - "id": 21519, + "id": 22753, "properties": { "facing": "east", "power": "8", @@ -36191,7 +36191,7 @@ } }, { - "id": 21520, + "id": 22754, "properties": { "facing": "east", "power": "8", @@ -36200,7 +36200,7 @@ } }, { - "id": 21521, + "id": 22755, "properties": { "facing": "east", "power": "8", @@ -36209,7 +36209,7 @@ } }, { - "id": 21522, + "id": 22756, "properties": { "facing": "east", "power": "8", @@ -36218,7 +36218,7 @@ } }, { - "id": 21523, + "id": 22757, "properties": { "facing": "east", "power": "9", @@ -36227,7 +36227,7 @@ } }, { - "id": 21524, + "id": 22758, "properties": { "facing": "east", "power": "9", @@ -36236,7 +36236,7 @@ } }, { - "id": 21525, + "id": 22759, "properties": { "facing": "east", "power": "9", @@ -36245,7 +36245,7 @@ } }, { - "id": 21526, + "id": 22760, "properties": { "facing": "east", "power": "9", @@ -36254,7 +36254,7 @@ } }, { - "id": 21527, + "id": 22761, "properties": { "facing": "east", "power": "9", @@ -36263,7 +36263,7 @@ } }, { - "id": 21528, + "id": 22762, "properties": { "facing": "east", "power": "9", @@ -36272,7 +36272,7 @@ } }, { - "id": 21529, + "id": 22763, "properties": { "facing": "east", "power": "10", @@ -36281,7 +36281,7 @@ } }, { - "id": 21530, + "id": 22764, "properties": { "facing": "east", "power": "10", @@ -36290,7 +36290,7 @@ } }, { - "id": 21531, + "id": 22765, "properties": { "facing": "east", "power": "10", @@ -36299,7 +36299,7 @@ } }, { - "id": 21532, + "id": 22766, "properties": { "facing": "east", "power": "10", @@ -36308,7 +36308,7 @@ } }, { - "id": 21533, + "id": 22767, "properties": { "facing": "east", "power": "10", @@ -36317,7 +36317,7 @@ } }, { - "id": 21534, + "id": 22768, "properties": { "facing": "east", "power": "10", @@ -36326,7 +36326,7 @@ } }, { - "id": 21535, + "id": 22769, "properties": { "facing": "east", "power": "11", @@ -36335,7 +36335,7 @@ } }, { - "id": 21536, + "id": 22770, "properties": { "facing": "east", "power": "11", @@ -36344,7 +36344,7 @@ } }, { - "id": 21537, + "id": 22771, "properties": { "facing": "east", "power": "11", @@ -36353,7 +36353,7 @@ } }, { - "id": 21538, + "id": 22772, "properties": { "facing": "east", "power": "11", @@ -36362,7 +36362,7 @@ } }, { - "id": 21539, + "id": 22773, "properties": { "facing": "east", "power": "11", @@ -36371,7 +36371,7 @@ } }, { - "id": 21540, + "id": 22774, "properties": { "facing": "east", "power": "11", @@ -36380,7 +36380,7 @@ } }, { - "id": 21541, + "id": 22775, "properties": { "facing": "east", "power": "12", @@ -36389,7 +36389,7 @@ } }, { - "id": 21542, + "id": 22776, "properties": { "facing": "east", "power": "12", @@ -36398,7 +36398,7 @@ } }, { - "id": 21543, + "id": 22777, "properties": { "facing": "east", "power": "12", @@ -36407,7 +36407,7 @@ } }, { - "id": 21544, + "id": 22778, "properties": { "facing": "east", "power": "12", @@ -36416,7 +36416,7 @@ } }, { - "id": 21545, + "id": 22779, "properties": { "facing": "east", "power": "12", @@ -36425,7 +36425,7 @@ } }, { - "id": 21546, + "id": 22780, "properties": { "facing": "east", "power": "12", @@ -36434,7 +36434,7 @@ } }, { - "id": 21547, + "id": 22781, "properties": { "facing": "east", "power": "13", @@ -36443,7 +36443,7 @@ } }, { - "id": 21548, + "id": 22782, "properties": { "facing": "east", "power": "13", @@ -36452,7 +36452,7 @@ } }, { - "id": 21549, + "id": 22783, "properties": { "facing": "east", "power": "13", @@ -36461,7 +36461,7 @@ } }, { - "id": 21550, + "id": 22784, "properties": { "facing": "east", "power": "13", @@ -36470,7 +36470,7 @@ } }, { - "id": 21551, + "id": 22785, "properties": { "facing": "east", "power": "13", @@ -36479,7 +36479,7 @@ } }, { - "id": 21552, + "id": 22786, "properties": { "facing": "east", "power": "13", @@ -36488,7 +36488,7 @@ } }, { - "id": 21553, + "id": 22787, "properties": { "facing": "east", "power": "14", @@ -36497,7 +36497,7 @@ } }, { - "id": 21554, + "id": 22788, "properties": { "facing": "east", "power": "14", @@ -36506,7 +36506,7 @@ } }, { - "id": 21555, + "id": 22789, "properties": { "facing": "east", "power": "14", @@ -36515,7 +36515,7 @@ } }, { - "id": 21556, + "id": 22790, "properties": { "facing": "east", "power": "14", @@ -36524,7 +36524,7 @@ } }, { - "id": 21557, + "id": 22791, "properties": { "facing": "east", "power": "14", @@ -36533,7 +36533,7 @@ } }, { - "id": 21558, + "id": 22792, "properties": { "facing": "east", "power": "14", @@ -36542,7 +36542,7 @@ } }, { - "id": 21559, + "id": 22793, "properties": { "facing": "east", "power": "15", @@ -36551,7 +36551,7 @@ } }, { - "id": 21560, + "id": 22794, "properties": { "facing": "east", "power": "15", @@ -36560,7 +36560,7 @@ } }, { - "id": 21561, + "id": 22795, "properties": { "facing": "east", "power": "15", @@ -36569,7 +36569,7 @@ } }, { - "id": 21562, + "id": 22796, "properties": { "facing": "east", "power": "15", @@ -36578,7 +36578,7 @@ } }, { - "id": 21563, + "id": 22797, "properties": { "facing": "east", "power": "15", @@ -36587,7 +36587,7 @@ } }, { - "id": 21564, + "id": 22798, "properties": { "facing": "east", "power": "15", @@ -37167,25 +37167,25 @@ "states": [ { "default": true, - "id": 5867, + "id": 5866, "properties": { "facing": "north" } }, { - "id": 5868, + "id": 5867, "properties": { "facing": "south" } }, { - "id": 5869, + "id": 5868, "properties": { "facing": "west" } }, { - "id": 5870, + "id": 5869, "properties": { "facing": "east" } @@ -37245,7 +37245,7 @@ }, "states": [ { - "id": 22455, + "id": 24769, "properties": { "age": "0", "berries": "true" @@ -37253,357 +37253,357 @@ }, { "default": true, - "id": 22456, + "id": 24770, "properties": { "age": "0", "berries": "false" } }, { - "id": 22457, + "id": 24771, "properties": { "age": "1", "berries": "true" } }, { - "id": 22458, + "id": 24772, "properties": { "age": "1", "berries": "false" } }, { - "id": 22459, + "id": 24773, "properties": { "age": "2", "berries": "true" } }, { - "id": 22460, + "id": 24774, "properties": { "age": "2", "berries": "false" } }, { - "id": 22461, + "id": 24775, "properties": { "age": "3", "berries": "true" } }, { - "id": 22462, + "id": 24776, "properties": { "age": "3", "berries": "false" } }, { - "id": 22463, + "id": 24777, "properties": { "age": "4", "berries": "true" } }, { - "id": 22464, + "id": 24778, "properties": { "age": "4", "berries": "false" } }, { - "id": 22465, + "id": 24779, "properties": { "age": "5", "berries": "true" } }, { - "id": 22466, + "id": 24780, "properties": { "age": "5", "berries": "false" } }, { - "id": 22467, + "id": 24781, "properties": { "age": "6", "berries": "true" } }, { - "id": 22468, + "id": 24782, "properties": { "age": "6", "berries": "false" } }, { - "id": 22469, + "id": 24783, "properties": { "age": "7", "berries": "true" } }, { - "id": 22470, + "id": 24784, "properties": { "age": "7", "berries": "false" } }, { - "id": 22471, + "id": 24785, "properties": { "age": "8", "berries": "true" } }, { - "id": 22472, + "id": 24786, "properties": { "age": "8", "berries": "false" } }, { - "id": 22473, + "id": 24787, "properties": { "age": "9", "berries": "true" } }, { - "id": 22474, + "id": 24788, "properties": { "age": "9", "berries": "false" } }, { - "id": 22475, + "id": 24789, "properties": { "age": "10", "berries": "true" } }, { - "id": 22476, + "id": 24790, "properties": { "age": "10", "berries": "false" } }, { - "id": 22477, + "id": 24791, "properties": { "age": "11", "berries": "true" } }, { - "id": 22478, + "id": 24792, "properties": { "age": "11", "berries": "false" } }, { - "id": 22479, + "id": 24793, "properties": { "age": "12", "berries": "true" } }, { - "id": 22480, + "id": 24794, "properties": { "age": "12", "berries": "false" } }, { - "id": 22481, + "id": 24795, "properties": { "age": "13", "berries": "true" } }, { - "id": 22482, + "id": 24796, "properties": { "age": "13", "berries": "false" } }, { - "id": 22483, + "id": 24797, "properties": { "age": "14", "berries": "true" } }, { - "id": 22484, + "id": 24798, "properties": { "age": "14", "berries": "false" } }, { - "id": 22485, + "id": 24799, "properties": { "age": "15", "berries": "true" } }, { - "id": 22486, + "id": 24800, "properties": { "age": "15", "berries": "false" } }, { - "id": 22487, + "id": 24801, "properties": { "age": "16", "berries": "true" } }, { - "id": 22488, + "id": 24802, "properties": { "age": "16", "berries": "false" } }, { - "id": 22489, + "id": 24803, "properties": { "age": "17", "berries": "true" } }, { - "id": 22490, + "id": 24804, "properties": { "age": "17", "berries": "false" } }, { - "id": 22491, + "id": 24805, "properties": { "age": "18", "berries": "true" } }, { - "id": 22492, + "id": 24806, "properties": { "age": "18", "berries": "false" } }, { - "id": 22493, + "id": 24807, "properties": { "age": "19", "berries": "true" } }, { - "id": 22494, + "id": 24808, "properties": { "age": "19", "berries": "false" } }, { - "id": 22495, + "id": 24809, "properties": { "age": "20", "berries": "true" } }, { - "id": 22496, + "id": 24810, "properties": { "age": "20", "berries": "false" } }, { - "id": 22497, + "id": 24811, "properties": { "age": "21", "berries": "true" } }, { - "id": 22498, + "id": 24812, "properties": { "age": "21", "berries": "false" } }, { - "id": 22499, + "id": 24813, "properties": { "age": "22", "berries": "true" } }, { - "id": 22500, + "id": 24814, "properties": { "age": "22", "berries": "false" } }, { - "id": 22501, + "id": 24815, "properties": { "age": "23", "berries": "true" } }, { - "id": 22502, + "id": 24816, "properties": { "age": "23", "berries": "false" } }, { - "id": 22503, + "id": 24817, "properties": { "age": "24", "berries": "true" } }, { - "id": 22504, + "id": 24818, "properties": { "age": "24", "berries": "false" } }, { - "id": 22505, + "id": 24819, "properties": { "age": "25", "berries": "true" } }, { - "id": 22506, + "id": 24820, "properties": { "age": "25", "berries": "false" @@ -37620,14 +37620,14 @@ }, "states": [ { - "id": 22507, + "id": 24821, "properties": { "berries": "true" } }, { "default": true, - "id": 22508, + "id": 24822, "properties": { "berries": "false" } @@ -37648,21 +37648,21 @@ }, "states": [ { - "id": 6774, + "id": 6773, "properties": { "axis": "x", "waterlogged": "true" } }, { - "id": 6775, + "id": 6774, "properties": { "axis": "x", "waterlogged": "false" } }, { - "id": 6776, + "id": 6775, "properties": { "axis": "y", "waterlogged": "true" @@ -37670,21 +37670,21 @@ }, { "default": true, - "id": 6777, + "id": 6776, "properties": { "axis": "y", "waterlogged": "false" } }, { - "id": 6778, + "id": 6777, "properties": { "axis": "z", "waterlogged": "true" } }, { - "id": 6779, + "id": 6778, "properties": { "axis": "z", "waterlogged": "false" @@ -41301,7 +41301,7 @@ }, "states": [ { - "id": 6282, + "id": 6281, "properties": { "facing": "north", "half": "top", @@ -41311,7 +41311,7 @@ } }, { - "id": 6283, + "id": 6282, "properties": { "facing": "north", "half": "top", @@ -41321,7 +41321,7 @@ } }, { - "id": 6284, + "id": 6283, "properties": { "facing": "north", "half": "top", @@ -41331,7 +41331,7 @@ } }, { - "id": 6285, + "id": 6284, "properties": { "facing": "north", "half": "top", @@ -41341,7 +41341,7 @@ } }, { - "id": 6286, + "id": 6285, "properties": { "facing": "north", "half": "top", @@ -41351,7 +41351,7 @@ } }, { - "id": 6287, + "id": 6286, "properties": { "facing": "north", "half": "top", @@ -41361,7 +41361,7 @@ } }, { - "id": 6288, + "id": 6287, "properties": { "facing": "north", "half": "top", @@ -41371,7 +41371,7 @@ } }, { - "id": 6289, + "id": 6288, "properties": { "facing": "north", "half": "top", @@ -41381,7 +41381,7 @@ } }, { - "id": 6290, + "id": 6289, "properties": { "facing": "north", "half": "bottom", @@ -41391,7 +41391,7 @@ } }, { - "id": 6291, + "id": 6290, "properties": { "facing": "north", "half": "bottom", @@ -41401,7 +41401,7 @@ } }, { - "id": 6292, + "id": 6291, "properties": { "facing": "north", "half": "bottom", @@ -41411,7 +41411,7 @@ } }, { - "id": 6293, + "id": 6292, "properties": { "facing": "north", "half": "bottom", @@ -41421,7 +41421,7 @@ } }, { - "id": 6294, + "id": 6293, "properties": { "facing": "north", "half": "bottom", @@ -41431,7 +41431,7 @@ } }, { - "id": 6295, + "id": 6294, "properties": { "facing": "north", "half": "bottom", @@ -41441,7 +41441,7 @@ } }, { - "id": 6296, + "id": 6295, "properties": { "facing": "north", "half": "bottom", @@ -41452,7 +41452,7 @@ }, { "default": true, - "id": 6297, + "id": 6296, "properties": { "facing": "north", "half": "bottom", @@ -41462,7 +41462,7 @@ } }, { - "id": 6298, + "id": 6297, "properties": { "facing": "south", "half": "top", @@ -41472,7 +41472,7 @@ } }, { - "id": 6299, + "id": 6298, "properties": { "facing": "south", "half": "top", @@ -41482,7 +41482,7 @@ } }, { - "id": 6300, + "id": 6299, "properties": { "facing": "south", "half": "top", @@ -41492,7 +41492,7 @@ } }, { - "id": 6301, + "id": 6300, "properties": { "facing": "south", "half": "top", @@ -41502,7 +41502,7 @@ } }, { - "id": 6302, + "id": 6301, "properties": { "facing": "south", "half": "top", @@ -41512,7 +41512,7 @@ } }, { - "id": 6303, + "id": 6302, "properties": { "facing": "south", "half": "top", @@ -41522,7 +41522,7 @@ } }, { - "id": 6304, + "id": 6303, "properties": { "facing": "south", "half": "top", @@ -41532,7 +41532,7 @@ } }, { - "id": 6305, + "id": 6304, "properties": { "facing": "south", "half": "top", @@ -41542,7 +41542,7 @@ } }, { - "id": 6306, + "id": 6305, "properties": { "facing": "south", "half": "bottom", @@ -41552,7 +41552,7 @@ } }, { - "id": 6307, + "id": 6306, "properties": { "facing": "south", "half": "bottom", @@ -41562,7 +41562,7 @@ } }, { - "id": 6308, + "id": 6307, "properties": { "facing": "south", "half": "bottom", @@ -41572,7 +41572,7 @@ } }, { - "id": 6309, + "id": 6308, "properties": { "facing": "south", "half": "bottom", @@ -41582,7 +41582,7 @@ } }, { - "id": 6310, + "id": 6309, "properties": { "facing": "south", "half": "bottom", @@ -41592,7 +41592,7 @@ } }, { - "id": 6311, + "id": 6310, "properties": { "facing": "south", "half": "bottom", @@ -41602,7 +41602,7 @@ } }, { - "id": 6312, + "id": 6311, "properties": { "facing": "south", "half": "bottom", @@ -41612,7 +41612,7 @@ } }, { - "id": 6313, + "id": 6312, "properties": { "facing": "south", "half": "bottom", @@ -41622,7 +41622,7 @@ } }, { - "id": 6314, + "id": 6313, "properties": { "facing": "west", "half": "top", @@ -41632,7 +41632,7 @@ } }, { - "id": 6315, + "id": 6314, "properties": { "facing": "west", "half": "top", @@ -41642,7 +41642,7 @@ } }, { - "id": 6316, + "id": 6315, "properties": { "facing": "west", "half": "top", @@ -41652,7 +41652,7 @@ } }, { - "id": 6317, + "id": 6316, "properties": { "facing": "west", "half": "top", @@ -41662,7 +41662,7 @@ } }, { - "id": 6318, + "id": 6317, "properties": { "facing": "west", "half": "top", @@ -41672,7 +41672,7 @@ } }, { - "id": 6319, + "id": 6318, "properties": { "facing": "west", "half": "top", @@ -41682,7 +41682,7 @@ } }, { - "id": 6320, + "id": 6319, "properties": { "facing": "west", "half": "top", @@ -41692,7 +41692,7 @@ } }, { - "id": 6321, + "id": 6320, "properties": { "facing": "west", "half": "top", @@ -41702,7 +41702,7 @@ } }, { - "id": 6322, + "id": 6321, "properties": { "facing": "west", "half": "bottom", @@ -41712,7 +41712,7 @@ } }, { - "id": 6323, + "id": 6322, "properties": { "facing": "west", "half": "bottom", @@ -41722,7 +41722,7 @@ } }, { - "id": 6324, + "id": 6323, "properties": { "facing": "west", "half": "bottom", @@ -41732,7 +41732,7 @@ } }, { - "id": 6325, + "id": 6324, "properties": { "facing": "west", "half": "bottom", @@ -41742,7 +41742,7 @@ } }, { - "id": 6326, + "id": 6325, "properties": { "facing": "west", "half": "bottom", @@ -41752,7 +41752,7 @@ } }, { - "id": 6327, + "id": 6326, "properties": { "facing": "west", "half": "bottom", @@ -41762,7 +41762,7 @@ } }, { - "id": 6328, + "id": 6327, "properties": { "facing": "west", "half": "bottom", @@ -41772,7 +41772,7 @@ } }, { - "id": 6329, + "id": 6328, "properties": { "facing": "west", "half": "bottom", @@ -41782,7 +41782,7 @@ } }, { - "id": 6330, + "id": 6329, "properties": { "facing": "east", "half": "top", @@ -41792,7 +41792,7 @@ } }, { - "id": 6331, + "id": 6330, "properties": { "facing": "east", "half": "top", @@ -41802,7 +41802,7 @@ } }, { - "id": 6332, + "id": 6331, "properties": { "facing": "east", "half": "top", @@ -41812,7 +41812,7 @@ } }, { - "id": 6333, + "id": 6332, "properties": { "facing": "east", "half": "top", @@ -41822,7 +41822,7 @@ } }, { - "id": 6334, + "id": 6333, "properties": { "facing": "east", "half": "top", @@ -41832,7 +41832,7 @@ } }, { - "id": 6335, + "id": 6334, "properties": { "facing": "east", "half": "top", @@ -41842,7 +41842,7 @@ } }, { - "id": 6336, + "id": 6335, "properties": { "facing": "east", "half": "top", @@ -41852,7 +41852,7 @@ } }, { - "id": 6337, + "id": 6336, "properties": { "facing": "east", "half": "top", @@ -41862,7 +41862,7 @@ } }, { - "id": 6338, + "id": 6337, "properties": { "facing": "east", "half": "bottom", @@ -41872,7 +41872,7 @@ } }, { - "id": 6339, + "id": 6338, "properties": { "facing": "east", "half": "bottom", @@ -41882,7 +41882,7 @@ } }, { - "id": 6340, + "id": 6339, "properties": { "facing": "east", "half": "bottom", @@ -41892,7 +41892,7 @@ } }, { - "id": 6341, + "id": 6340, "properties": { "facing": "east", "half": "bottom", @@ -41902,7 +41902,7 @@ } }, { - "id": 6342, + "id": 6341, "properties": { "facing": "east", "half": "bottom", @@ -41912,7 +41912,7 @@ } }, { - "id": 6343, + "id": 6342, "properties": { "facing": "east", "half": "bottom", @@ -41922,7 +41922,7 @@ } }, { - "id": 6344, + "id": 6343, "properties": { "facing": "east", "half": "bottom", @@ -41932,7 +41932,7 @@ } }, { - "id": 6345, + "id": 6344, "properties": { "facing": "east", "half": "bottom", @@ -45479,11 +45479,19 @@ } ] }, + "minecraft:chiseled_copper": { + "states": [ + { + "default": true, + "id": 22951 + } + ] + }, "minecraft:chiseled_deepslate": { "states": [ { "default": true, - "id": 24237 + "id": 26551 } ] }, @@ -45531,7 +45539,23 @@ "states": [ { "default": true, - "id": 6541 + "id": 6540 + } + ] + }, + "minecraft:chiseled_tuff": { + "states": [ + { + "default": true, + "id": 21903 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "states": [ + { + "default": true, + "id": 22315 } ] }, @@ -46357,7 +46381,7 @@ "states": [ { "default": true, - "id": 22593 + "id": 24907 } ] }, @@ -46375,21 +46399,21 @@ }, "states": [ { - "id": 22674, + "id": 24988, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22675, + "id": 24989, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22676, + "id": 24990, "properties": { "type": "bottom", "waterlogged": "true" @@ -46397,21 +46421,21 @@ }, { "default": true, - "id": 22677, + "id": 24991, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22678, + "id": 24992, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22679, + "id": 24993, "properties": { "type": "double", "waterlogged": "false" @@ -46445,7 +46469,7 @@ }, "states": [ { - "id": 22594, + "id": 24908, "properties": { "facing": "north", "half": "top", @@ -46454,7 +46478,7 @@ } }, { - "id": 22595, + "id": 24909, "properties": { "facing": "north", "half": "top", @@ -46463,7 +46487,7 @@ } }, { - "id": 22596, + "id": 24910, "properties": { "facing": "north", "half": "top", @@ -46472,7 +46496,7 @@ } }, { - "id": 22597, + "id": 24911, "properties": { "facing": "north", "half": "top", @@ -46481,7 +46505,7 @@ } }, { - "id": 22598, + "id": 24912, "properties": { "facing": "north", "half": "top", @@ -46490,7 +46514,7 @@ } }, { - "id": 22599, + "id": 24913, "properties": { "facing": "north", "half": "top", @@ -46499,7 +46523,7 @@ } }, { - "id": 22600, + "id": 24914, "properties": { "facing": "north", "half": "top", @@ -46508,7 +46532,7 @@ } }, { - "id": 22601, + "id": 24915, "properties": { "facing": "north", "half": "top", @@ -46517,7 +46541,7 @@ } }, { - "id": 22602, + "id": 24916, "properties": { "facing": "north", "half": "top", @@ -46526,7 +46550,7 @@ } }, { - "id": 22603, + "id": 24917, "properties": { "facing": "north", "half": "top", @@ -46535,7 +46559,7 @@ } }, { - "id": 22604, + "id": 24918, "properties": { "facing": "north", "half": "bottom", @@ -46545,7 +46569,7 @@ }, { "default": true, - "id": 22605, + "id": 24919, "properties": { "facing": "north", "half": "bottom", @@ -46554,7 +46578,7 @@ } }, { - "id": 22606, + "id": 24920, "properties": { "facing": "north", "half": "bottom", @@ -46563,7 +46587,7 @@ } }, { - "id": 22607, + "id": 24921, "properties": { "facing": "north", "half": "bottom", @@ -46572,7 +46596,7 @@ } }, { - "id": 22608, + "id": 24922, "properties": { "facing": "north", "half": "bottom", @@ -46581,7 +46605,7 @@ } }, { - "id": 22609, + "id": 24923, "properties": { "facing": "north", "half": "bottom", @@ -46590,7 +46614,7 @@ } }, { - "id": 22610, + "id": 24924, "properties": { "facing": "north", "half": "bottom", @@ -46599,7 +46623,7 @@ } }, { - "id": 22611, + "id": 24925, "properties": { "facing": "north", "half": "bottom", @@ -46608,7 +46632,7 @@ } }, { - "id": 22612, + "id": 24926, "properties": { "facing": "north", "half": "bottom", @@ -46617,7 +46641,7 @@ } }, { - "id": 22613, + "id": 24927, "properties": { "facing": "north", "half": "bottom", @@ -46626,7 +46650,7 @@ } }, { - "id": 22614, + "id": 24928, "properties": { "facing": "south", "half": "top", @@ -46635,7 +46659,7 @@ } }, { - "id": 22615, + "id": 24929, "properties": { "facing": "south", "half": "top", @@ -46644,7 +46668,7 @@ } }, { - "id": 22616, + "id": 24930, "properties": { "facing": "south", "half": "top", @@ -46653,7 +46677,7 @@ } }, { - "id": 22617, + "id": 24931, "properties": { "facing": "south", "half": "top", @@ -46662,7 +46686,7 @@ } }, { - "id": 22618, + "id": 24932, "properties": { "facing": "south", "half": "top", @@ -46671,7 +46695,7 @@ } }, { - "id": 22619, + "id": 24933, "properties": { "facing": "south", "half": "top", @@ -46680,7 +46704,7 @@ } }, { - "id": 22620, + "id": 24934, "properties": { "facing": "south", "half": "top", @@ -46689,7 +46713,7 @@ } }, { - "id": 22621, + "id": 24935, "properties": { "facing": "south", "half": "top", @@ -46698,7 +46722,7 @@ } }, { - "id": 22622, + "id": 24936, "properties": { "facing": "south", "half": "top", @@ -46707,7 +46731,7 @@ } }, { - "id": 22623, + "id": 24937, "properties": { "facing": "south", "half": "top", @@ -46716,7 +46740,7 @@ } }, { - "id": 22624, + "id": 24938, "properties": { "facing": "south", "half": "bottom", @@ -46725,7 +46749,7 @@ } }, { - "id": 22625, + "id": 24939, "properties": { "facing": "south", "half": "bottom", @@ -46734,7 +46758,7 @@ } }, { - "id": 22626, + "id": 24940, "properties": { "facing": "south", "half": "bottom", @@ -46743,7 +46767,7 @@ } }, { - "id": 22627, + "id": 24941, "properties": { "facing": "south", "half": "bottom", @@ -46752,7 +46776,7 @@ } }, { - "id": 22628, + "id": 24942, "properties": { "facing": "south", "half": "bottom", @@ -46761,7 +46785,7 @@ } }, { - "id": 22629, + "id": 24943, "properties": { "facing": "south", "half": "bottom", @@ -46770,7 +46794,7 @@ } }, { - "id": 22630, + "id": 24944, "properties": { "facing": "south", "half": "bottom", @@ -46779,7 +46803,7 @@ } }, { - "id": 22631, + "id": 24945, "properties": { "facing": "south", "half": "bottom", @@ -46788,7 +46812,7 @@ } }, { - "id": 22632, + "id": 24946, "properties": { "facing": "south", "half": "bottom", @@ -46797,7 +46821,7 @@ } }, { - "id": 22633, + "id": 24947, "properties": { "facing": "south", "half": "bottom", @@ -46806,7 +46830,7 @@ } }, { - "id": 22634, + "id": 24948, "properties": { "facing": "west", "half": "top", @@ -46815,7 +46839,7 @@ } }, { - "id": 22635, + "id": 24949, "properties": { "facing": "west", "half": "top", @@ -46824,7 +46848,7 @@ } }, { - "id": 22636, + "id": 24950, "properties": { "facing": "west", "half": "top", @@ -46833,7 +46857,7 @@ } }, { - "id": 22637, + "id": 24951, "properties": { "facing": "west", "half": "top", @@ -46842,7 +46866,7 @@ } }, { - "id": 22638, + "id": 24952, "properties": { "facing": "west", "half": "top", @@ -46851,7 +46875,7 @@ } }, { - "id": 22639, + "id": 24953, "properties": { "facing": "west", "half": "top", @@ -46860,7 +46884,7 @@ } }, { - "id": 22640, + "id": 24954, "properties": { "facing": "west", "half": "top", @@ -46869,7 +46893,7 @@ } }, { - "id": 22641, + "id": 24955, "properties": { "facing": "west", "half": "top", @@ -46878,7 +46902,7 @@ } }, { - "id": 22642, + "id": 24956, "properties": { "facing": "west", "half": "top", @@ -46887,7 +46911,7 @@ } }, { - "id": 22643, + "id": 24957, "properties": { "facing": "west", "half": "top", @@ -46896,7 +46920,7 @@ } }, { - "id": 22644, + "id": 24958, "properties": { "facing": "west", "half": "bottom", @@ -46905,7 +46929,7 @@ } }, { - "id": 22645, + "id": 24959, "properties": { "facing": "west", "half": "bottom", @@ -46914,7 +46938,7 @@ } }, { - "id": 22646, + "id": 24960, "properties": { "facing": "west", "half": "bottom", @@ -46923,7 +46947,7 @@ } }, { - "id": 22647, + "id": 24961, "properties": { "facing": "west", "half": "bottom", @@ -46932,7 +46956,7 @@ } }, { - "id": 22648, + "id": 24962, "properties": { "facing": "west", "half": "bottom", @@ -46941,7 +46965,7 @@ } }, { - "id": 22649, + "id": 24963, "properties": { "facing": "west", "half": "bottom", @@ -46950,7 +46974,7 @@ } }, { - "id": 22650, + "id": 24964, "properties": { "facing": "west", "half": "bottom", @@ -46959,7 +46983,7 @@ } }, { - "id": 22651, + "id": 24965, "properties": { "facing": "west", "half": "bottom", @@ -46968,7 +46992,7 @@ } }, { - "id": 22652, + "id": 24966, "properties": { "facing": "west", "half": "bottom", @@ -46977,7 +47001,7 @@ } }, { - "id": 22653, + "id": 24967, "properties": { "facing": "west", "half": "bottom", @@ -46986,7 +47010,7 @@ } }, { - "id": 22654, + "id": 24968, "properties": { "facing": "east", "half": "top", @@ -46995,7 +47019,7 @@ } }, { - "id": 22655, + "id": 24969, "properties": { "facing": "east", "half": "top", @@ -47004,7 +47028,7 @@ } }, { - "id": 22656, + "id": 24970, "properties": { "facing": "east", "half": "top", @@ -47013,7 +47037,7 @@ } }, { - "id": 22657, + "id": 24971, "properties": { "facing": "east", "half": "top", @@ -47022,7 +47046,7 @@ } }, { - "id": 22658, + "id": 24972, "properties": { "facing": "east", "half": "top", @@ -47031,7 +47055,7 @@ } }, { - "id": 22659, + "id": 24973, "properties": { "facing": "east", "half": "top", @@ -47040,7 +47064,7 @@ } }, { - "id": 22660, + "id": 24974, "properties": { "facing": "east", "half": "top", @@ -47049,7 +47073,7 @@ } }, { - "id": 22661, + "id": 24975, "properties": { "facing": "east", "half": "top", @@ -47058,7 +47082,7 @@ } }, { - "id": 22662, + "id": 24976, "properties": { "facing": "east", "half": "top", @@ -47067,7 +47091,7 @@ } }, { - "id": 22663, + "id": 24977, "properties": { "facing": "east", "half": "top", @@ -47076,7 +47100,7 @@ } }, { - "id": 22664, + "id": 24978, "properties": { "facing": "east", "half": "bottom", @@ -47085,7 +47109,7 @@ } }, { - "id": 22665, + "id": 24979, "properties": { "facing": "east", "half": "bottom", @@ -47094,7 +47118,7 @@ } }, { - "id": 22666, + "id": 24980, "properties": { "facing": "east", "half": "bottom", @@ -47103,7 +47127,7 @@ } }, { - "id": 22667, + "id": 24981, "properties": { "facing": "east", "half": "bottom", @@ -47112,7 +47136,7 @@ } }, { - "id": 22668, + "id": 24982, "properties": { "facing": "east", "half": "bottom", @@ -47121,7 +47145,7 @@ } }, { - "id": 22669, + "id": 24983, "properties": { "facing": "east", "half": "bottom", @@ -47130,7 +47154,7 @@ } }, { - "id": 22670, + "id": 24984, "properties": { "facing": "east", "half": "bottom", @@ -47139,7 +47163,7 @@ } }, { - "id": 22671, + "id": 24985, "properties": { "facing": "east", "half": "bottom", @@ -47148,7 +47172,7 @@ } }, { - "id": 22672, + "id": 24986, "properties": { "facing": "east", "half": "bottom", @@ -47157,7 +47181,7 @@ } }, { - "id": 22673, + "id": 24987, "properties": { "facing": "east", "half": "bottom", @@ -47200,7 +47224,7 @@ }, "states": [ { - "id": 22680, + "id": 24994, "properties": { "east": "none", "north": "none", @@ -47211,7 +47235,7 @@ } }, { - "id": 22681, + "id": 24995, "properties": { "east": "none", "north": "none", @@ -47222,7 +47246,7 @@ } }, { - "id": 22682, + "id": 24996, "properties": { "east": "none", "north": "none", @@ -47234,7 +47258,7 @@ }, { "default": true, - "id": 22683, + "id": 24997, "properties": { "east": "none", "north": "none", @@ -47245,7 +47269,7 @@ } }, { - "id": 22684, + "id": 24998, "properties": { "east": "none", "north": "none", @@ -47256,7 +47280,7 @@ } }, { - "id": 22685, + "id": 24999, "properties": { "east": "none", "north": "none", @@ -47267,7 +47291,7 @@ } }, { - "id": 22686, + "id": 25000, "properties": { "east": "none", "north": "none", @@ -47278,7 +47302,7 @@ } }, { - "id": 22687, + "id": 25001, "properties": { "east": "none", "north": "none", @@ -47289,7 +47313,7 @@ } }, { - "id": 22688, + "id": 25002, "properties": { "east": "none", "north": "none", @@ -47300,7 +47324,7 @@ } }, { - "id": 22689, + "id": 25003, "properties": { "east": "none", "north": "none", @@ -47311,7 +47335,7 @@ } }, { - "id": 22690, + "id": 25004, "properties": { "east": "none", "north": "none", @@ -47322,7 +47346,7 @@ } }, { - "id": 22691, + "id": 25005, "properties": { "east": "none", "north": "none", @@ -47333,7 +47357,7 @@ } }, { - "id": 22692, + "id": 25006, "properties": { "east": "none", "north": "none", @@ -47344,7 +47368,7 @@ } }, { - "id": 22693, + "id": 25007, "properties": { "east": "none", "north": "none", @@ -47355,7 +47379,7 @@ } }, { - "id": 22694, + "id": 25008, "properties": { "east": "none", "north": "none", @@ -47366,7 +47390,7 @@ } }, { - "id": 22695, + "id": 25009, "properties": { "east": "none", "north": "none", @@ -47377,7 +47401,7 @@ } }, { - "id": 22696, + "id": 25010, "properties": { "east": "none", "north": "none", @@ -47388,7 +47412,7 @@ } }, { - "id": 22697, + "id": 25011, "properties": { "east": "none", "north": "none", @@ -47399,7 +47423,7 @@ } }, { - "id": 22698, + "id": 25012, "properties": { "east": "none", "north": "none", @@ -47410,7 +47434,7 @@ } }, { - "id": 22699, + "id": 25013, "properties": { "east": "none", "north": "none", @@ -47421,7 +47445,7 @@ } }, { - "id": 22700, + "id": 25014, "properties": { "east": "none", "north": "none", @@ -47432,7 +47456,7 @@ } }, { - "id": 22701, + "id": 25015, "properties": { "east": "none", "north": "none", @@ -47443,7 +47467,7 @@ } }, { - "id": 22702, + "id": 25016, "properties": { "east": "none", "north": "none", @@ -47454,7 +47478,7 @@ } }, { - "id": 22703, + "id": 25017, "properties": { "east": "none", "north": "none", @@ -47465,7 +47489,7 @@ } }, { - "id": 22704, + "id": 25018, "properties": { "east": "none", "north": "none", @@ -47476,7 +47500,7 @@ } }, { - "id": 22705, + "id": 25019, "properties": { "east": "none", "north": "none", @@ -47487,7 +47511,7 @@ } }, { - "id": 22706, + "id": 25020, "properties": { "east": "none", "north": "none", @@ -47498,7 +47522,7 @@ } }, { - "id": 22707, + "id": 25021, "properties": { "east": "none", "north": "none", @@ -47509,7 +47533,7 @@ } }, { - "id": 22708, + "id": 25022, "properties": { "east": "none", "north": "none", @@ -47520,7 +47544,7 @@ } }, { - "id": 22709, + "id": 25023, "properties": { "east": "none", "north": "none", @@ -47531,7 +47555,7 @@ } }, { - "id": 22710, + "id": 25024, "properties": { "east": "none", "north": "none", @@ -47542,7 +47566,7 @@ } }, { - "id": 22711, + "id": 25025, "properties": { "east": "none", "north": "none", @@ -47553,7 +47577,7 @@ } }, { - "id": 22712, + "id": 25026, "properties": { "east": "none", "north": "none", @@ -47564,7 +47588,7 @@ } }, { - "id": 22713, + "id": 25027, "properties": { "east": "none", "north": "none", @@ -47575,7 +47599,7 @@ } }, { - "id": 22714, + "id": 25028, "properties": { "east": "none", "north": "none", @@ -47586,7 +47610,7 @@ } }, { - "id": 22715, + "id": 25029, "properties": { "east": "none", "north": "none", @@ -47597,7 +47621,7 @@ } }, { - "id": 22716, + "id": 25030, "properties": { "east": "none", "north": "low", @@ -47608,7 +47632,7 @@ } }, { - "id": 22717, + "id": 25031, "properties": { "east": "none", "north": "low", @@ -47619,7 +47643,7 @@ } }, { - "id": 22718, + "id": 25032, "properties": { "east": "none", "north": "low", @@ -47630,7 +47654,7 @@ } }, { - "id": 22719, + "id": 25033, "properties": { "east": "none", "north": "low", @@ -47641,7 +47665,7 @@ } }, { - "id": 22720, + "id": 25034, "properties": { "east": "none", "north": "low", @@ -47652,7 +47676,7 @@ } }, { - "id": 22721, + "id": 25035, "properties": { "east": "none", "north": "low", @@ -47663,7 +47687,7 @@ } }, { - "id": 22722, + "id": 25036, "properties": { "east": "none", "north": "low", @@ -47674,7 +47698,7 @@ } }, { - "id": 22723, + "id": 25037, "properties": { "east": "none", "north": "low", @@ -47685,7 +47709,7 @@ } }, { - "id": 22724, + "id": 25038, "properties": { "east": "none", "north": "low", @@ -47696,7 +47720,7 @@ } }, { - "id": 22725, + "id": 25039, "properties": { "east": "none", "north": "low", @@ -47707,7 +47731,7 @@ } }, { - "id": 22726, + "id": 25040, "properties": { "east": "none", "north": "low", @@ -47718,7 +47742,7 @@ } }, { - "id": 22727, + "id": 25041, "properties": { "east": "none", "north": "low", @@ -47729,7 +47753,7 @@ } }, { - "id": 22728, + "id": 25042, "properties": { "east": "none", "north": "low", @@ -47740,7 +47764,7 @@ } }, { - "id": 22729, + "id": 25043, "properties": { "east": "none", "north": "low", @@ -47751,7 +47775,7 @@ } }, { - "id": 22730, + "id": 25044, "properties": { "east": "none", "north": "low", @@ -47762,7 +47786,7 @@ } }, { - "id": 22731, + "id": 25045, "properties": { "east": "none", "north": "low", @@ -47773,7 +47797,7 @@ } }, { - "id": 22732, + "id": 25046, "properties": { "east": "none", "north": "low", @@ -47784,7 +47808,7 @@ } }, { - "id": 22733, + "id": 25047, "properties": { "east": "none", "north": "low", @@ -47795,7 +47819,7 @@ } }, { - "id": 22734, + "id": 25048, "properties": { "east": "none", "north": "low", @@ -47806,7 +47830,7 @@ } }, { - "id": 22735, + "id": 25049, "properties": { "east": "none", "north": "low", @@ -47817,7 +47841,7 @@ } }, { - "id": 22736, + "id": 25050, "properties": { "east": "none", "north": "low", @@ -47828,7 +47852,7 @@ } }, { - "id": 22737, + "id": 25051, "properties": { "east": "none", "north": "low", @@ -47839,7 +47863,7 @@ } }, { - "id": 22738, + "id": 25052, "properties": { "east": "none", "north": "low", @@ -47850,7 +47874,7 @@ } }, { - "id": 22739, + "id": 25053, "properties": { "east": "none", "north": "low", @@ -47861,7 +47885,7 @@ } }, { - "id": 22740, + "id": 25054, "properties": { "east": "none", "north": "low", @@ -47872,7 +47896,7 @@ } }, { - "id": 22741, + "id": 25055, "properties": { "east": "none", "north": "low", @@ -47883,7 +47907,7 @@ } }, { - "id": 22742, + "id": 25056, "properties": { "east": "none", "north": "low", @@ -47894,7 +47918,7 @@ } }, { - "id": 22743, + "id": 25057, "properties": { "east": "none", "north": "low", @@ -47905,7 +47929,7 @@ } }, { - "id": 22744, + "id": 25058, "properties": { "east": "none", "north": "low", @@ -47916,7 +47940,7 @@ } }, { - "id": 22745, + "id": 25059, "properties": { "east": "none", "north": "low", @@ -47927,7 +47951,7 @@ } }, { - "id": 22746, + "id": 25060, "properties": { "east": "none", "north": "low", @@ -47938,7 +47962,7 @@ } }, { - "id": 22747, + "id": 25061, "properties": { "east": "none", "north": "low", @@ -47949,7 +47973,7 @@ } }, { - "id": 22748, + "id": 25062, "properties": { "east": "none", "north": "low", @@ -47960,7 +47984,7 @@ } }, { - "id": 22749, + "id": 25063, "properties": { "east": "none", "north": "low", @@ -47971,7 +47995,7 @@ } }, { - "id": 22750, + "id": 25064, "properties": { "east": "none", "north": "low", @@ -47982,7 +48006,7 @@ } }, { - "id": 22751, + "id": 25065, "properties": { "east": "none", "north": "low", @@ -47993,7 +48017,7 @@ } }, { - "id": 22752, + "id": 25066, "properties": { "east": "none", "north": "tall", @@ -48004,7 +48028,7 @@ } }, { - "id": 22753, + "id": 25067, "properties": { "east": "none", "north": "tall", @@ -48015,7 +48039,7 @@ } }, { - "id": 22754, + "id": 25068, "properties": { "east": "none", "north": "tall", @@ -48026,7 +48050,7 @@ } }, { - "id": 22755, + "id": 25069, "properties": { "east": "none", "north": "tall", @@ -48037,7 +48061,7 @@ } }, { - "id": 22756, + "id": 25070, "properties": { "east": "none", "north": "tall", @@ -48048,7 +48072,7 @@ } }, { - "id": 22757, + "id": 25071, "properties": { "east": "none", "north": "tall", @@ -48059,7 +48083,7 @@ } }, { - "id": 22758, + "id": 25072, "properties": { "east": "none", "north": "tall", @@ -48070,7 +48094,7 @@ } }, { - "id": 22759, + "id": 25073, "properties": { "east": "none", "north": "tall", @@ -48081,7 +48105,7 @@ } }, { - "id": 22760, + "id": 25074, "properties": { "east": "none", "north": "tall", @@ -48092,7 +48116,7 @@ } }, { - "id": 22761, + "id": 25075, "properties": { "east": "none", "north": "tall", @@ -48103,7 +48127,7 @@ } }, { - "id": 22762, + "id": 25076, "properties": { "east": "none", "north": "tall", @@ -48114,7 +48138,7 @@ } }, { - "id": 22763, + "id": 25077, "properties": { "east": "none", "north": "tall", @@ -48125,7 +48149,7 @@ } }, { - "id": 22764, + "id": 25078, "properties": { "east": "none", "north": "tall", @@ -48136,7 +48160,7 @@ } }, { - "id": 22765, + "id": 25079, "properties": { "east": "none", "north": "tall", @@ -48147,7 +48171,7 @@ } }, { - "id": 22766, + "id": 25080, "properties": { "east": "none", "north": "tall", @@ -48158,7 +48182,7 @@ } }, { - "id": 22767, + "id": 25081, "properties": { "east": "none", "north": "tall", @@ -48169,7 +48193,7 @@ } }, { - "id": 22768, + "id": 25082, "properties": { "east": "none", "north": "tall", @@ -48180,7 +48204,7 @@ } }, { - "id": 22769, + "id": 25083, "properties": { "east": "none", "north": "tall", @@ -48191,7 +48215,7 @@ } }, { - "id": 22770, + "id": 25084, "properties": { "east": "none", "north": "tall", @@ -48202,7 +48226,7 @@ } }, { - "id": 22771, + "id": 25085, "properties": { "east": "none", "north": "tall", @@ -48213,7 +48237,7 @@ } }, { - "id": 22772, + "id": 25086, "properties": { "east": "none", "north": "tall", @@ -48224,7 +48248,7 @@ } }, { - "id": 22773, + "id": 25087, "properties": { "east": "none", "north": "tall", @@ -48235,7 +48259,7 @@ } }, { - "id": 22774, + "id": 25088, "properties": { "east": "none", "north": "tall", @@ -48246,7 +48270,7 @@ } }, { - "id": 22775, + "id": 25089, "properties": { "east": "none", "north": "tall", @@ -48257,7 +48281,7 @@ } }, { - "id": 22776, + "id": 25090, "properties": { "east": "none", "north": "tall", @@ -48268,7 +48292,7 @@ } }, { - "id": 22777, + "id": 25091, "properties": { "east": "none", "north": "tall", @@ -48279,7 +48303,7 @@ } }, { - "id": 22778, + "id": 25092, "properties": { "east": "none", "north": "tall", @@ -48290,7 +48314,7 @@ } }, { - "id": 22779, + "id": 25093, "properties": { "east": "none", "north": "tall", @@ -48301,7 +48325,7 @@ } }, { - "id": 22780, + "id": 25094, "properties": { "east": "none", "north": "tall", @@ -48312,7 +48336,7 @@ } }, { - "id": 22781, + "id": 25095, "properties": { "east": "none", "north": "tall", @@ -48323,7 +48347,7 @@ } }, { - "id": 22782, + "id": 25096, "properties": { "east": "none", "north": "tall", @@ -48334,7 +48358,7 @@ } }, { - "id": 22783, + "id": 25097, "properties": { "east": "none", "north": "tall", @@ -48345,7 +48369,7 @@ } }, { - "id": 22784, + "id": 25098, "properties": { "east": "none", "north": "tall", @@ -48356,7 +48380,7 @@ } }, { - "id": 22785, + "id": 25099, "properties": { "east": "none", "north": "tall", @@ -48367,7 +48391,7 @@ } }, { - "id": 22786, + "id": 25100, "properties": { "east": "none", "north": "tall", @@ -48378,7 +48402,7 @@ } }, { - "id": 22787, + "id": 25101, "properties": { "east": "none", "north": "tall", @@ -48389,7 +48413,7 @@ } }, { - "id": 22788, + "id": 25102, "properties": { "east": "low", "north": "none", @@ -48400,7 +48424,7 @@ } }, { - "id": 22789, + "id": 25103, "properties": { "east": "low", "north": "none", @@ -48411,7 +48435,7 @@ } }, { - "id": 22790, + "id": 25104, "properties": { "east": "low", "north": "none", @@ -48422,7 +48446,7 @@ } }, { - "id": 22791, + "id": 25105, "properties": { "east": "low", "north": "none", @@ -48433,7 +48457,7 @@ } }, { - "id": 22792, + "id": 25106, "properties": { "east": "low", "north": "none", @@ -48444,7 +48468,7 @@ } }, { - "id": 22793, + "id": 25107, "properties": { "east": "low", "north": "none", @@ -48455,7 +48479,7 @@ } }, { - "id": 22794, + "id": 25108, "properties": { "east": "low", "north": "none", @@ -48466,7 +48490,7 @@ } }, { - "id": 22795, + "id": 25109, "properties": { "east": "low", "north": "none", @@ -48477,7 +48501,7 @@ } }, { - "id": 22796, + "id": 25110, "properties": { "east": "low", "north": "none", @@ -48488,7 +48512,7 @@ } }, { - "id": 22797, + "id": 25111, "properties": { "east": "low", "north": "none", @@ -48499,7 +48523,7 @@ } }, { - "id": 22798, + "id": 25112, "properties": { "east": "low", "north": "none", @@ -48510,7 +48534,7 @@ } }, { - "id": 22799, + "id": 25113, "properties": { "east": "low", "north": "none", @@ -48521,7 +48545,7 @@ } }, { - "id": 22800, + "id": 25114, "properties": { "east": "low", "north": "none", @@ -48532,7 +48556,7 @@ } }, { - "id": 22801, + "id": 25115, "properties": { "east": "low", "north": "none", @@ -48543,7 +48567,7 @@ } }, { - "id": 22802, + "id": 25116, "properties": { "east": "low", "north": "none", @@ -48554,7 +48578,7 @@ } }, { - "id": 22803, + "id": 25117, "properties": { "east": "low", "north": "none", @@ -48565,7 +48589,7 @@ } }, { - "id": 22804, + "id": 25118, "properties": { "east": "low", "north": "none", @@ -48576,7 +48600,7 @@ } }, { - "id": 22805, + "id": 25119, "properties": { "east": "low", "north": "none", @@ -48587,7 +48611,7 @@ } }, { - "id": 22806, + "id": 25120, "properties": { "east": "low", "north": "none", @@ -48598,7 +48622,7 @@ } }, { - "id": 22807, + "id": 25121, "properties": { "east": "low", "north": "none", @@ -48609,7 +48633,7 @@ } }, { - "id": 22808, + "id": 25122, "properties": { "east": "low", "north": "none", @@ -48620,7 +48644,7 @@ } }, { - "id": 22809, + "id": 25123, "properties": { "east": "low", "north": "none", @@ -48631,7 +48655,7 @@ } }, { - "id": 22810, + "id": 25124, "properties": { "east": "low", "north": "none", @@ -48642,7 +48666,7 @@ } }, { - "id": 22811, + "id": 25125, "properties": { "east": "low", "north": "none", @@ -48653,7 +48677,7 @@ } }, { - "id": 22812, + "id": 25126, "properties": { "east": "low", "north": "none", @@ -48664,7 +48688,7 @@ } }, { - "id": 22813, + "id": 25127, "properties": { "east": "low", "north": "none", @@ -48675,7 +48699,7 @@ } }, { - "id": 22814, + "id": 25128, "properties": { "east": "low", "north": "none", @@ -48686,7 +48710,7 @@ } }, { - "id": 22815, + "id": 25129, "properties": { "east": "low", "north": "none", @@ -48697,7 +48721,7 @@ } }, { - "id": 22816, + "id": 25130, "properties": { "east": "low", "north": "none", @@ -48708,7 +48732,7 @@ } }, { - "id": 22817, + "id": 25131, "properties": { "east": "low", "north": "none", @@ -48719,7 +48743,7 @@ } }, { - "id": 22818, + "id": 25132, "properties": { "east": "low", "north": "none", @@ -48730,7 +48754,7 @@ } }, { - "id": 22819, + "id": 25133, "properties": { "east": "low", "north": "none", @@ -48741,7 +48765,7 @@ } }, { - "id": 22820, + "id": 25134, "properties": { "east": "low", "north": "none", @@ -48752,7 +48776,7 @@ } }, { - "id": 22821, + "id": 25135, "properties": { "east": "low", "north": "none", @@ -48763,7 +48787,7 @@ } }, { - "id": 22822, + "id": 25136, "properties": { "east": "low", "north": "none", @@ -48774,7 +48798,7 @@ } }, { - "id": 22823, + "id": 25137, "properties": { "east": "low", "north": "none", @@ -48785,7 +48809,7 @@ } }, { - "id": 22824, + "id": 25138, "properties": { "east": "low", "north": "low", @@ -48796,7 +48820,7 @@ } }, { - "id": 22825, + "id": 25139, "properties": { "east": "low", "north": "low", @@ -48807,7 +48831,7 @@ } }, { - "id": 22826, + "id": 25140, "properties": { "east": "low", "north": "low", @@ -48818,7 +48842,7 @@ } }, { - "id": 22827, + "id": 25141, "properties": { "east": "low", "north": "low", @@ -48829,7 +48853,7 @@ } }, { - "id": 22828, + "id": 25142, "properties": { "east": "low", "north": "low", @@ -48840,7 +48864,7 @@ } }, { - "id": 22829, + "id": 25143, "properties": { "east": "low", "north": "low", @@ -48851,7 +48875,7 @@ } }, { - "id": 22830, + "id": 25144, "properties": { "east": "low", "north": "low", @@ -48862,7 +48886,7 @@ } }, { - "id": 22831, + "id": 25145, "properties": { "east": "low", "north": "low", @@ -48873,7 +48897,7 @@ } }, { - "id": 22832, + "id": 25146, "properties": { "east": "low", "north": "low", @@ -48884,7 +48908,7 @@ } }, { - "id": 22833, + "id": 25147, "properties": { "east": "low", "north": "low", @@ -48895,7 +48919,7 @@ } }, { - "id": 22834, + "id": 25148, "properties": { "east": "low", "north": "low", @@ -48906,7 +48930,7 @@ } }, { - "id": 22835, + "id": 25149, "properties": { "east": "low", "north": "low", @@ -48917,7 +48941,7 @@ } }, { - "id": 22836, + "id": 25150, "properties": { "east": "low", "north": "low", @@ -48928,7 +48952,7 @@ } }, { - "id": 22837, + "id": 25151, "properties": { "east": "low", "north": "low", @@ -48939,7 +48963,7 @@ } }, { - "id": 22838, + "id": 25152, "properties": { "east": "low", "north": "low", @@ -48950,7 +48974,7 @@ } }, { - "id": 22839, + "id": 25153, "properties": { "east": "low", "north": "low", @@ -48961,7 +48985,7 @@ } }, { - "id": 22840, + "id": 25154, "properties": { "east": "low", "north": "low", @@ -48972,7 +48996,7 @@ } }, { - "id": 22841, + "id": 25155, "properties": { "east": "low", "north": "low", @@ -48983,7 +49007,7 @@ } }, { - "id": 22842, + "id": 25156, "properties": { "east": "low", "north": "low", @@ -48994,7 +49018,7 @@ } }, { - "id": 22843, + "id": 25157, "properties": { "east": "low", "north": "low", @@ -49005,7 +49029,7 @@ } }, { - "id": 22844, + "id": 25158, "properties": { "east": "low", "north": "low", @@ -49016,7 +49040,7 @@ } }, { - "id": 22845, + "id": 25159, "properties": { "east": "low", "north": "low", @@ -49027,7 +49051,7 @@ } }, { - "id": 22846, + "id": 25160, "properties": { "east": "low", "north": "low", @@ -49038,7 +49062,7 @@ } }, { - "id": 22847, + "id": 25161, "properties": { "east": "low", "north": "low", @@ -49049,7 +49073,7 @@ } }, { - "id": 22848, + "id": 25162, "properties": { "east": "low", "north": "low", @@ -49060,7 +49084,7 @@ } }, { - "id": 22849, + "id": 25163, "properties": { "east": "low", "north": "low", @@ -49071,7 +49095,7 @@ } }, { - "id": 22850, + "id": 25164, "properties": { "east": "low", "north": "low", @@ -49082,7 +49106,7 @@ } }, { - "id": 22851, + "id": 25165, "properties": { "east": "low", "north": "low", @@ -49093,7 +49117,7 @@ } }, { - "id": 22852, + "id": 25166, "properties": { "east": "low", "north": "low", @@ -49104,7 +49128,7 @@ } }, { - "id": 22853, + "id": 25167, "properties": { "east": "low", "north": "low", @@ -49115,7 +49139,7 @@ } }, { - "id": 22854, + "id": 25168, "properties": { "east": "low", "north": "low", @@ -49126,7 +49150,7 @@ } }, { - "id": 22855, + "id": 25169, "properties": { "east": "low", "north": "low", @@ -49137,7 +49161,7 @@ } }, { - "id": 22856, + "id": 25170, "properties": { "east": "low", "north": "low", @@ -49148,7 +49172,7 @@ } }, { - "id": 22857, + "id": 25171, "properties": { "east": "low", "north": "low", @@ -49159,7 +49183,7 @@ } }, { - "id": 22858, + "id": 25172, "properties": { "east": "low", "north": "low", @@ -49170,7 +49194,7 @@ } }, { - "id": 22859, + "id": 25173, "properties": { "east": "low", "north": "low", @@ -49181,7 +49205,7 @@ } }, { - "id": 22860, + "id": 25174, "properties": { "east": "low", "north": "tall", @@ -49192,7 +49216,7 @@ } }, { - "id": 22861, + "id": 25175, "properties": { "east": "low", "north": "tall", @@ -49203,7 +49227,7 @@ } }, { - "id": 22862, + "id": 25176, "properties": { "east": "low", "north": "tall", @@ -49214,7 +49238,7 @@ } }, { - "id": 22863, + "id": 25177, "properties": { "east": "low", "north": "tall", @@ -49225,7 +49249,7 @@ } }, { - "id": 22864, + "id": 25178, "properties": { "east": "low", "north": "tall", @@ -49236,7 +49260,7 @@ } }, { - "id": 22865, + "id": 25179, "properties": { "east": "low", "north": "tall", @@ -49247,7 +49271,7 @@ } }, { - "id": 22866, + "id": 25180, "properties": { "east": "low", "north": "tall", @@ -49258,7 +49282,7 @@ } }, { - "id": 22867, + "id": 25181, "properties": { "east": "low", "north": "tall", @@ -49269,7 +49293,7 @@ } }, { - "id": 22868, + "id": 25182, "properties": { "east": "low", "north": "tall", @@ -49280,7 +49304,7 @@ } }, { - "id": 22869, + "id": 25183, "properties": { "east": "low", "north": "tall", @@ -49291,7 +49315,7 @@ } }, { - "id": 22870, + "id": 25184, "properties": { "east": "low", "north": "tall", @@ -49302,7 +49326,7 @@ } }, { - "id": 22871, + "id": 25185, "properties": { "east": "low", "north": "tall", @@ -49313,7 +49337,7 @@ } }, { - "id": 22872, + "id": 25186, "properties": { "east": "low", "north": "tall", @@ -49324,7 +49348,7 @@ } }, { - "id": 22873, + "id": 25187, "properties": { "east": "low", "north": "tall", @@ -49335,7 +49359,7 @@ } }, { - "id": 22874, + "id": 25188, "properties": { "east": "low", "north": "tall", @@ -49346,7 +49370,7 @@ } }, { - "id": 22875, + "id": 25189, "properties": { "east": "low", "north": "tall", @@ -49357,7 +49381,7 @@ } }, { - "id": 22876, + "id": 25190, "properties": { "east": "low", "north": "tall", @@ -49368,7 +49392,7 @@ } }, { - "id": 22877, + "id": 25191, "properties": { "east": "low", "north": "tall", @@ -49379,7 +49403,7 @@ } }, { - "id": 22878, + "id": 25192, "properties": { "east": "low", "north": "tall", @@ -49390,7 +49414,7 @@ } }, { - "id": 22879, + "id": 25193, "properties": { "east": "low", "north": "tall", @@ -49401,7 +49425,7 @@ } }, { - "id": 22880, + "id": 25194, "properties": { "east": "low", "north": "tall", @@ -49412,7 +49436,7 @@ } }, { - "id": 22881, + "id": 25195, "properties": { "east": "low", "north": "tall", @@ -49423,7 +49447,7 @@ } }, { - "id": 22882, + "id": 25196, "properties": { "east": "low", "north": "tall", @@ -49434,7 +49458,7 @@ } }, { - "id": 22883, + "id": 25197, "properties": { "east": "low", "north": "tall", @@ -49445,7 +49469,7 @@ } }, { - "id": 22884, + "id": 25198, "properties": { "east": "low", "north": "tall", @@ -49456,7 +49480,7 @@ } }, { - "id": 22885, + "id": 25199, "properties": { "east": "low", "north": "tall", @@ -49467,7 +49491,7 @@ } }, { - "id": 22886, + "id": 25200, "properties": { "east": "low", "north": "tall", @@ -49478,7 +49502,7 @@ } }, { - "id": 22887, + "id": 25201, "properties": { "east": "low", "north": "tall", @@ -49489,7 +49513,7 @@ } }, { - "id": 22888, + "id": 25202, "properties": { "east": "low", "north": "tall", @@ -49500,7 +49524,7 @@ } }, { - "id": 22889, + "id": 25203, "properties": { "east": "low", "north": "tall", @@ -49511,7 +49535,7 @@ } }, { - "id": 22890, + "id": 25204, "properties": { "east": "low", "north": "tall", @@ -49522,7 +49546,7 @@ } }, { - "id": 22891, + "id": 25205, "properties": { "east": "low", "north": "tall", @@ -49533,7 +49557,7 @@ } }, { - "id": 22892, + "id": 25206, "properties": { "east": "low", "north": "tall", @@ -49544,7 +49568,7 @@ } }, { - "id": 22893, + "id": 25207, "properties": { "east": "low", "north": "tall", @@ -49555,7 +49579,7 @@ } }, { - "id": 22894, + "id": 25208, "properties": { "east": "low", "north": "tall", @@ -49566,7 +49590,7 @@ } }, { - "id": 22895, + "id": 25209, "properties": { "east": "low", "north": "tall", @@ -49577,7 +49601,7 @@ } }, { - "id": 22896, + "id": 25210, "properties": { "east": "tall", "north": "none", @@ -49588,7 +49612,7 @@ } }, { - "id": 22897, + "id": 25211, "properties": { "east": "tall", "north": "none", @@ -49599,7 +49623,7 @@ } }, { - "id": 22898, + "id": 25212, "properties": { "east": "tall", "north": "none", @@ -49610,7 +49634,7 @@ } }, { - "id": 22899, + "id": 25213, "properties": { "east": "tall", "north": "none", @@ -49621,7 +49645,7 @@ } }, { - "id": 22900, + "id": 25214, "properties": { "east": "tall", "north": "none", @@ -49632,7 +49656,7 @@ } }, { - "id": 22901, + "id": 25215, "properties": { "east": "tall", "north": "none", @@ -49643,7 +49667,7 @@ } }, { - "id": 22902, + "id": 25216, "properties": { "east": "tall", "north": "none", @@ -49654,7 +49678,7 @@ } }, { - "id": 22903, + "id": 25217, "properties": { "east": "tall", "north": "none", @@ -49665,7 +49689,7 @@ } }, { - "id": 22904, + "id": 25218, "properties": { "east": "tall", "north": "none", @@ -49676,7 +49700,7 @@ } }, { - "id": 22905, + "id": 25219, "properties": { "east": "tall", "north": "none", @@ -49687,7 +49711,7 @@ } }, { - "id": 22906, + "id": 25220, "properties": { "east": "tall", "north": "none", @@ -49698,7 +49722,7 @@ } }, { - "id": 22907, + "id": 25221, "properties": { "east": "tall", "north": "none", @@ -49709,7 +49733,7 @@ } }, { - "id": 22908, + "id": 25222, "properties": { "east": "tall", "north": "none", @@ -49720,7 +49744,7 @@ } }, { - "id": 22909, + "id": 25223, "properties": { "east": "tall", "north": "none", @@ -49731,7 +49755,7 @@ } }, { - "id": 22910, + "id": 25224, "properties": { "east": "tall", "north": "none", @@ -49742,7 +49766,7 @@ } }, { - "id": 22911, + "id": 25225, "properties": { "east": "tall", "north": "none", @@ -49753,7 +49777,7 @@ } }, { - "id": 22912, + "id": 25226, "properties": { "east": "tall", "north": "none", @@ -49764,7 +49788,7 @@ } }, { - "id": 22913, + "id": 25227, "properties": { "east": "tall", "north": "none", @@ -49775,7 +49799,7 @@ } }, { - "id": 22914, + "id": 25228, "properties": { "east": "tall", "north": "none", @@ -49786,7 +49810,7 @@ } }, { - "id": 22915, + "id": 25229, "properties": { "east": "tall", "north": "none", @@ -49797,7 +49821,7 @@ } }, { - "id": 22916, + "id": 25230, "properties": { "east": "tall", "north": "none", @@ -49808,7 +49832,7 @@ } }, { - "id": 22917, + "id": 25231, "properties": { "east": "tall", "north": "none", @@ -49819,7 +49843,7 @@ } }, { - "id": 22918, + "id": 25232, "properties": { "east": "tall", "north": "none", @@ -49830,7 +49854,7 @@ } }, { - "id": 22919, + "id": 25233, "properties": { "east": "tall", "north": "none", @@ -49841,7 +49865,7 @@ } }, { - "id": 22920, + "id": 25234, "properties": { "east": "tall", "north": "none", @@ -49852,7 +49876,7 @@ } }, { - "id": 22921, + "id": 25235, "properties": { "east": "tall", "north": "none", @@ -49863,7 +49887,7 @@ } }, { - "id": 22922, + "id": 25236, "properties": { "east": "tall", "north": "none", @@ -49874,7 +49898,7 @@ } }, { - "id": 22923, + "id": 25237, "properties": { "east": "tall", "north": "none", @@ -49885,7 +49909,7 @@ } }, { - "id": 22924, + "id": 25238, "properties": { "east": "tall", "north": "none", @@ -49896,7 +49920,7 @@ } }, { - "id": 22925, + "id": 25239, "properties": { "east": "tall", "north": "none", @@ -49907,7 +49931,7 @@ } }, { - "id": 22926, + "id": 25240, "properties": { "east": "tall", "north": "none", @@ -49918,7 +49942,7 @@ } }, { - "id": 22927, + "id": 25241, "properties": { "east": "tall", "north": "none", @@ -49929,7 +49953,7 @@ } }, { - "id": 22928, + "id": 25242, "properties": { "east": "tall", "north": "none", @@ -49940,7 +49964,7 @@ } }, { - "id": 22929, + "id": 25243, "properties": { "east": "tall", "north": "none", @@ -49951,7 +49975,7 @@ } }, { - "id": 22930, + "id": 25244, "properties": { "east": "tall", "north": "none", @@ -49962,7 +49986,7 @@ } }, { - "id": 22931, + "id": 25245, "properties": { "east": "tall", "north": "none", @@ -49973,7 +49997,7 @@ } }, { - "id": 22932, + "id": 25246, "properties": { "east": "tall", "north": "low", @@ -49984,7 +50008,7 @@ } }, { - "id": 22933, + "id": 25247, "properties": { "east": "tall", "north": "low", @@ -49995,7 +50019,7 @@ } }, { - "id": 22934, + "id": 25248, "properties": { "east": "tall", "north": "low", @@ -50006,7 +50030,7 @@ } }, { - "id": 22935, + "id": 25249, "properties": { "east": "tall", "north": "low", @@ -50017,7 +50041,7 @@ } }, { - "id": 22936, + "id": 25250, "properties": { "east": "tall", "north": "low", @@ -50028,7 +50052,7 @@ } }, { - "id": 22937, + "id": 25251, "properties": { "east": "tall", "north": "low", @@ -50039,7 +50063,7 @@ } }, { - "id": 22938, + "id": 25252, "properties": { "east": "tall", "north": "low", @@ -50050,7 +50074,7 @@ } }, { - "id": 22939, + "id": 25253, "properties": { "east": "tall", "north": "low", @@ -50061,7 +50085,7 @@ } }, { - "id": 22940, + "id": 25254, "properties": { "east": "tall", "north": "low", @@ -50072,7 +50096,7 @@ } }, { - "id": 22941, + "id": 25255, "properties": { "east": "tall", "north": "low", @@ -50083,7 +50107,7 @@ } }, { - "id": 22942, + "id": 25256, "properties": { "east": "tall", "north": "low", @@ -50094,7 +50118,7 @@ } }, { - "id": 22943, + "id": 25257, "properties": { "east": "tall", "north": "low", @@ -50105,7 +50129,7 @@ } }, { - "id": 22944, + "id": 25258, "properties": { "east": "tall", "north": "low", @@ -50116,7 +50140,7 @@ } }, { - "id": 22945, + "id": 25259, "properties": { "east": "tall", "north": "low", @@ -50127,7 +50151,7 @@ } }, { - "id": 22946, + "id": 25260, "properties": { "east": "tall", "north": "low", @@ -50138,7 +50162,7 @@ } }, { - "id": 22947, + "id": 25261, "properties": { "east": "tall", "north": "low", @@ -50149,7 +50173,7 @@ } }, { - "id": 22948, + "id": 25262, "properties": { "east": "tall", "north": "low", @@ -50160,7 +50184,7 @@ } }, { - "id": 22949, + "id": 25263, "properties": { "east": "tall", "north": "low", @@ -50171,7 +50195,7 @@ } }, { - "id": 22950, + "id": 25264, "properties": { "east": "tall", "north": "low", @@ -50182,7 +50206,7 @@ } }, { - "id": 22951, + "id": 25265, "properties": { "east": "tall", "north": "low", @@ -50193,7 +50217,7 @@ } }, { - "id": 22952, + "id": 25266, "properties": { "east": "tall", "north": "low", @@ -50204,7 +50228,7 @@ } }, { - "id": 22953, + "id": 25267, "properties": { "east": "tall", "north": "low", @@ -50215,7 +50239,7 @@ } }, { - "id": 22954, + "id": 25268, "properties": { "east": "tall", "north": "low", @@ -50226,7 +50250,7 @@ } }, { - "id": 22955, + "id": 25269, "properties": { "east": "tall", "north": "low", @@ -50237,7 +50261,7 @@ } }, { - "id": 22956, + "id": 25270, "properties": { "east": "tall", "north": "low", @@ -50248,7 +50272,7 @@ } }, { - "id": 22957, + "id": 25271, "properties": { "east": "tall", "north": "low", @@ -50259,7 +50283,7 @@ } }, { - "id": 22958, + "id": 25272, "properties": { "east": "tall", "north": "low", @@ -50270,7 +50294,7 @@ } }, { - "id": 22959, + "id": 25273, "properties": { "east": "tall", "north": "low", @@ -50281,7 +50305,7 @@ } }, { - "id": 22960, + "id": 25274, "properties": { "east": "tall", "north": "low", @@ -50292,7 +50316,7 @@ } }, { - "id": 22961, + "id": 25275, "properties": { "east": "tall", "north": "low", @@ -50303,7 +50327,7 @@ } }, { - "id": 22962, + "id": 25276, "properties": { "east": "tall", "north": "low", @@ -50314,7 +50338,7 @@ } }, { - "id": 22963, + "id": 25277, "properties": { "east": "tall", "north": "low", @@ -50325,7 +50349,7 @@ } }, { - "id": 22964, + "id": 25278, "properties": { "east": "tall", "north": "low", @@ -50336,7 +50360,7 @@ } }, { - "id": 22965, + "id": 25279, "properties": { "east": "tall", "north": "low", @@ -50347,7 +50371,7 @@ } }, { - "id": 22966, + "id": 25280, "properties": { "east": "tall", "north": "low", @@ -50358,7 +50382,7 @@ } }, { - "id": 22967, + "id": 25281, "properties": { "east": "tall", "north": "low", @@ -50369,7 +50393,7 @@ } }, { - "id": 22968, + "id": 25282, "properties": { "east": "tall", "north": "tall", @@ -50380,7 +50404,7 @@ } }, { - "id": 22969, + "id": 25283, "properties": { "east": "tall", "north": "tall", @@ -50391,7 +50415,7 @@ } }, { - "id": 22970, + "id": 25284, "properties": { "east": "tall", "north": "tall", @@ -50402,7 +50426,7 @@ } }, { - "id": 22971, + "id": 25285, "properties": { "east": "tall", "north": "tall", @@ -50413,7 +50437,7 @@ } }, { - "id": 22972, + "id": 25286, "properties": { "east": "tall", "north": "tall", @@ -50424,7 +50448,7 @@ } }, { - "id": 22973, + "id": 25287, "properties": { "east": "tall", "north": "tall", @@ -50435,7 +50459,7 @@ } }, { - "id": 22974, + "id": 25288, "properties": { "east": "tall", "north": "tall", @@ -50446,7 +50470,7 @@ } }, { - "id": 22975, + "id": 25289, "properties": { "east": "tall", "north": "tall", @@ -50457,7 +50481,7 @@ } }, { - "id": 22976, + "id": 25290, "properties": { "east": "tall", "north": "tall", @@ -50468,7 +50492,7 @@ } }, { - "id": 22977, + "id": 25291, "properties": { "east": "tall", "north": "tall", @@ -50479,7 +50503,7 @@ } }, { - "id": 22978, + "id": 25292, "properties": { "east": "tall", "north": "tall", @@ -50490,7 +50514,7 @@ } }, { - "id": 22979, + "id": 25293, "properties": { "east": "tall", "north": "tall", @@ -50501,7 +50525,7 @@ } }, { - "id": 22980, + "id": 25294, "properties": { "east": "tall", "north": "tall", @@ -50512,7 +50536,7 @@ } }, { - "id": 22981, + "id": 25295, "properties": { "east": "tall", "north": "tall", @@ -50523,7 +50547,7 @@ } }, { - "id": 22982, + "id": 25296, "properties": { "east": "tall", "north": "tall", @@ -50534,7 +50558,7 @@ } }, { - "id": 22983, + "id": 25297, "properties": { "east": "tall", "north": "tall", @@ -50545,7 +50569,7 @@ } }, { - "id": 22984, + "id": 25298, "properties": { "east": "tall", "north": "tall", @@ -50556,7 +50580,7 @@ } }, { - "id": 22985, + "id": 25299, "properties": { "east": "tall", "north": "tall", @@ -50567,7 +50591,7 @@ } }, { - "id": 22986, + "id": 25300, "properties": { "east": "tall", "north": "tall", @@ -50578,7 +50602,7 @@ } }, { - "id": 22987, + "id": 25301, "properties": { "east": "tall", "north": "tall", @@ -50589,7 +50613,7 @@ } }, { - "id": 22988, + "id": 25302, "properties": { "east": "tall", "north": "tall", @@ -50600,7 +50624,7 @@ } }, { - "id": 22989, + "id": 25303, "properties": { "east": "tall", "north": "tall", @@ -50611,7 +50635,7 @@ } }, { - "id": 22990, + "id": 25304, "properties": { "east": "tall", "north": "tall", @@ -50622,7 +50646,7 @@ } }, { - "id": 22991, + "id": 25305, "properties": { "east": "tall", "north": "tall", @@ -50633,7 +50657,7 @@ } }, { - "id": 22992, + "id": 25306, "properties": { "east": "tall", "north": "tall", @@ -50644,7 +50668,7 @@ } }, { - "id": 22993, + "id": 25307, "properties": { "east": "tall", "north": "tall", @@ -50655,7 +50679,7 @@ } }, { - "id": 22994, + "id": 25308, "properties": { "east": "tall", "north": "tall", @@ -50666,7 +50690,7 @@ } }, { - "id": 22995, + "id": 25309, "properties": { "east": "tall", "north": "tall", @@ -50677,7 +50701,7 @@ } }, { - "id": 22996, + "id": 25310, "properties": { "east": "tall", "north": "tall", @@ -50688,7 +50712,7 @@ } }, { - "id": 22997, + "id": 25311, "properties": { "east": "tall", "north": "tall", @@ -50699,7 +50723,7 @@ } }, { - "id": 22998, + "id": 25312, "properties": { "east": "tall", "north": "tall", @@ -50710,7 +50734,7 @@ } }, { - "id": 22999, + "id": 25313, "properties": { "east": "tall", "north": "tall", @@ -50721,7 +50745,7 @@ } }, { - "id": 23000, + "id": 25314, "properties": { "east": "tall", "north": "tall", @@ -50732,7 +50756,7 @@ } }, { - "id": 23001, + "id": 25315, "properties": { "east": "tall", "north": "tall", @@ -50743,7 +50767,7 @@ } }, { - "id": 23002, + "id": 25316, "properties": { "east": "tall", "north": "tall", @@ -50754,7 +50778,7 @@ } }, { - "id": 23003, + "id": 25317, "properties": { "east": "tall", "north": "tall", @@ -55640,412 +55664,15 @@ "states": [ { "default": true, - "id": 21707 - } - ] - }, - "minecraft:copper_ore": { - "states": [ - { - "default": true, - "id": 21708 - } - ] - }, - "minecraft:cornflower": { - "states": [ - { - "default": true, - "id": 2086 - } - ] - }, - "minecraft:cracked_deepslate_bricks": { - "states": [ - { - "default": true, - "id": 24238 - } - ] - }, - "minecraft:cracked_deepslate_tiles": { - "states": [ - { - "default": true, - "id": 24239 - } - ] - }, - "minecraft:cracked_nether_bricks": { - "states": [ - { - "default": true, - "id": 20723 - } - ] - }, - "minecraft:cracked_polished_blackstone_bricks": { - "states": [ - { - "default": true, - "id": 19873 - } - ] - }, - "minecraft:cracked_stone_bricks": { - "states": [ - { - "default": true, - "id": 6540 - } - ] - }, - "minecraft:crafting_table": { - "states": [ - { - "default": true, - "id": 4277 - } - ] - }, - "minecraft:creeper_head": { - "properties": { - "powered": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "id": 8987, - "properties": { - "powered": "true", - "rotation": "0" - } - }, - { - "id": 8988, - "properties": { - "powered": "true", - "rotation": "1" - } - }, - { - "id": 8989, - "properties": { - "powered": "true", - "rotation": "2" - } - }, - { - "id": 8990, - "properties": { - "powered": "true", - "rotation": "3" - } - }, - { - "id": 8991, - "properties": { - "powered": "true", - "rotation": "4" - } - }, - { - "id": 8992, - "properties": { - "powered": "true", - "rotation": "5" - } - }, - { - "id": 8993, - "properties": { - "powered": "true", - "rotation": "6" - } - }, - { - "id": 8994, - "properties": { - "powered": "true", - "rotation": "7" - } - }, - { - "id": 8995, - "properties": { - "powered": "true", - "rotation": "8" - } - }, - { - "id": 8996, - "properties": { - "powered": "true", - "rotation": "9" - } - }, - { - "id": 8997, - "properties": { - "powered": "true", - "rotation": "10" - } - }, - { - "id": 8998, - "properties": { - "powered": "true", - "rotation": "11" - } - }, - { - "id": 8999, - "properties": { - "powered": "true", - "rotation": "12" - } - }, - { - "id": 9000, - "properties": { - "powered": "true", - "rotation": "13" - } - }, - { - "id": 9001, - "properties": { - "powered": "true", - "rotation": "14" - } - }, - { - "id": 9002, - "properties": { - "powered": "true", - "rotation": "15" - } - }, - { - "default": true, - "id": 9003, - "properties": { - "powered": "false", - "rotation": "0" - } - }, - { - "id": 9004, - "properties": { - "powered": "false", - "rotation": "1" - } - }, - { - "id": 9005, - "properties": { - "powered": "false", - "rotation": "2" - } - }, - { - "id": 9006, - "properties": { - "powered": "false", - "rotation": "3" - } - }, - { - "id": 9007, - "properties": { - "powered": "false", - "rotation": "4" - } - }, - { - "id": 9008, - "properties": { - "powered": "false", - "rotation": "5" - } - }, - { - "id": 9009, - "properties": { - "powered": "false", - "rotation": "6" - } - }, - { - "id": 9010, - "properties": { - "powered": "false", - "rotation": "7" - } - }, - { - "id": 9011, - "properties": { - "powered": "false", - "rotation": "8" - } - }, - { - "id": 9012, - "properties": { - "powered": "false", - "rotation": "9" - } - }, - { - "id": 9013, - "properties": { - "powered": "false", - "rotation": "10" - } - }, - { - "id": 9014, - "properties": { - "powered": "false", - "rotation": "11" - } - }, - { - "id": 9015, - "properties": { - "powered": "false", - "rotation": "12" - } - }, - { - "id": 9016, - "properties": { - "powered": "false", - "rotation": "13" - } - }, - { - "id": 9017, - "properties": { - "powered": "false", - "rotation": "14" - } - }, - { - "id": 9018, - "properties": { - "powered": "false", - "rotation": "15" - } + "id": 22938 } ] }, - "minecraft:creeper_wall_head": { + "minecraft:copper_bulb": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ + "lit": [ "true", "false" - ] - }, - "states": [ - { - "id": 9019, - "properties": { - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 9020, - "properties": { - "facing": "north", - "powered": "false" - } - }, - { - "id": 9021, - "properties": { - "facing": "south", - "powered": "true" - } - }, - { - "id": 9022, - "properties": { - "facing": "south", - "powered": "false" - } - }, - { - "id": 9023, - "properties": { - "facing": "west", - "powered": "true" - } - }, - { - "id": 9024, - "properties": { - "facing": "west", - "powered": "false" - } - }, - { - "id": 9025, - "properties": { - "facing": "east", - "powered": "true" - } - }, - { - "id": 9026, - "properties": { - "facing": "east", - "powered": "false" - } - } - ] - }, - "minecraft:crimson_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" ], "powered": [ "true", @@ -56054,201 +55681,37 @@ }, "states": [ { - "id": 19100, + "id": 24692, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" - } - }, - { - "id": 19101, - "properties": { - "face": "floor", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19102, - "properties": { - "face": "floor", - "facing": "south", - "powered": "true" - } - }, - { - "id": 19103, - "properties": { - "face": "floor", - "facing": "south", - "powered": "false" - } - }, - { - "id": 19104, - "properties": { - "face": "floor", - "facing": "west", - "powered": "true" - } - }, - { - "id": 19105, - "properties": { - "face": "floor", - "facing": "west", - "powered": "false" - } - }, - { - "id": 19106, - "properties": { - "face": "floor", - "facing": "east", + "lit": "true", "powered": "true" } }, { - "id": 19107, + "id": 24693, "properties": { - "face": "floor", - "facing": "east", + "lit": "true", "powered": "false" } }, { - "id": 19108, + "id": 24694, "properties": { - "face": "wall", - "facing": "north", + "lit": "false", "powered": "true" } }, { "default": true, - "id": 19109, + "id": 24695, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19110, - "properties": { - "face": "wall", - "facing": "south", - "powered": "true" - } - }, - { - "id": 19111, - "properties": { - "face": "wall", - "facing": "south", - "powered": "false" - } - }, - { - "id": 19112, - "properties": { - "face": "wall", - "facing": "west", - "powered": "true" - } - }, - { - "id": 19113, - "properties": { - "face": "wall", - "facing": "west", - "powered": "false" - } - }, - { - "id": 19114, - "properties": { - "face": "wall", - "facing": "east", - "powered": "true" - } - }, - { - "id": 19115, - "properties": { - "face": "wall", - "facing": "east", - "powered": "false" - } - }, - { - "id": 19116, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, - { - "id": 19117, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, - { - "id": 19118, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" - } - }, - { - "id": 19119, - "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" - } - }, - { - "id": 19120, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" - } - }, - { - "id": 19121, - "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" - } - }, - { - "id": 19122, - "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" - } - }, - { - "id": 19123, - "properties": { - "face": "ceiling", - "facing": "east", + "lit": "false", "powered": "false" } } ] }, - "minecraft:crimson_door": { + "minecraft:copper_door": { "properties": { "facing": [ "north", @@ -56275,7 +55738,7 @@ }, "states": [ { - "id": 19148, + "id": 23652, "properties": { "facing": "north", "half": "upper", @@ -56285,7 +55748,7 @@ } }, { - "id": 19149, + "id": 23653, "properties": { "facing": "north", "half": "upper", @@ -56295,7 +55758,7 @@ } }, { - "id": 19150, + "id": 23654, "properties": { "facing": "north", "half": "upper", @@ -56305,7 +55768,7 @@ } }, { - "id": 19151, + "id": 23655, "properties": { "facing": "north", "half": "upper", @@ -56315,7 +55778,7 @@ } }, { - "id": 19152, + "id": 23656, "properties": { "facing": "north", "half": "upper", @@ -56325,7 +55788,7 @@ } }, { - "id": 19153, + "id": 23657, "properties": { "facing": "north", "half": "upper", @@ -56335,7 +55798,7 @@ } }, { - "id": 19154, + "id": 23658, "properties": { "facing": "north", "half": "upper", @@ -56345,7 +55808,7 @@ } }, { - "id": 19155, + "id": 23659, "properties": { "facing": "north", "half": "upper", @@ -56355,7 +55818,7 @@ } }, { - "id": 19156, + "id": 23660, "properties": { "facing": "north", "half": "lower", @@ -56365,7 +55828,7 @@ } }, { - "id": 19157, + "id": 23661, "properties": { "facing": "north", "half": "lower", @@ -56375,7 +55838,7 @@ } }, { - "id": 19158, + "id": 23662, "properties": { "facing": "north", "half": "lower", @@ -56386,7 +55849,7 @@ }, { "default": true, - "id": 19159, + "id": 23663, "properties": { "facing": "north", "half": "lower", @@ -56396,7 +55859,7 @@ } }, { - "id": 19160, + "id": 23664, "properties": { "facing": "north", "half": "lower", @@ -56406,7 +55869,7 @@ } }, { - "id": 19161, + "id": 23665, "properties": { "facing": "north", "half": "lower", @@ -56416,7 +55879,7 @@ } }, { - "id": 19162, + "id": 23666, "properties": { "facing": "north", "half": "lower", @@ -56426,7 +55889,7 @@ } }, { - "id": 19163, + "id": 23667, "properties": { "facing": "north", "half": "lower", @@ -56436,7 +55899,7 @@ } }, { - "id": 19164, + "id": 23668, "properties": { "facing": "south", "half": "upper", @@ -56446,7 +55909,7 @@ } }, { - "id": 19165, + "id": 23669, "properties": { "facing": "south", "half": "upper", @@ -56456,7 +55919,7 @@ } }, { - "id": 19166, + "id": 23670, "properties": { "facing": "south", "half": "upper", @@ -56466,7 +55929,7 @@ } }, { - "id": 19167, + "id": 23671, "properties": { "facing": "south", "half": "upper", @@ -56476,7 +55939,7 @@ } }, { - "id": 19168, + "id": 23672, "properties": { "facing": "south", "half": "upper", @@ -56486,7 +55949,7 @@ } }, { - "id": 19169, + "id": 23673, "properties": { "facing": "south", "half": "upper", @@ -56496,7 +55959,7 @@ } }, { - "id": 19170, + "id": 23674, "properties": { "facing": "south", "half": "upper", @@ -56506,7 +55969,7 @@ } }, { - "id": 19171, + "id": 23675, "properties": { "facing": "south", "half": "upper", @@ -56516,7 +55979,7 @@ } }, { - "id": 19172, + "id": 23676, "properties": { "facing": "south", "half": "lower", @@ -56526,7 +55989,7 @@ } }, { - "id": 19173, + "id": 23677, "properties": { "facing": "south", "half": "lower", @@ -56536,7 +55999,7 @@ } }, { - "id": 19174, + "id": 23678, "properties": { "facing": "south", "half": "lower", @@ -56546,7 +56009,7 @@ } }, { - "id": 19175, + "id": 23679, "properties": { "facing": "south", "half": "lower", @@ -56556,7 +56019,7 @@ } }, { - "id": 19176, + "id": 23680, "properties": { "facing": "south", "half": "lower", @@ -56566,7 +56029,7 @@ } }, { - "id": 19177, + "id": 23681, "properties": { "facing": "south", "half": "lower", @@ -56576,7 +56039,7 @@ } }, { - "id": 19178, + "id": 23682, "properties": { "facing": "south", "half": "lower", @@ -56586,7 +56049,7 @@ } }, { - "id": 19179, + "id": 23683, "properties": { "facing": "south", "half": "lower", @@ -56596,7 +56059,7 @@ } }, { - "id": 19180, + "id": 23684, "properties": { "facing": "west", "half": "upper", @@ -56606,7 +56069,7 @@ } }, { - "id": 19181, + "id": 23685, "properties": { "facing": "west", "half": "upper", @@ -56616,7 +56079,7 @@ } }, { - "id": 19182, + "id": 23686, "properties": { "facing": "west", "half": "upper", @@ -56626,7 +56089,7 @@ } }, { - "id": 19183, + "id": 23687, "properties": { "facing": "west", "half": "upper", @@ -56636,7 +56099,7 @@ } }, { - "id": 19184, + "id": 23688, "properties": { "facing": "west", "half": "upper", @@ -56646,7 +56109,7 @@ } }, { - "id": 19185, + "id": 23689, "properties": { "facing": "west", "half": "upper", @@ -56656,7 +56119,7 @@ } }, { - "id": 19186, + "id": 23690, "properties": { "facing": "west", "half": "upper", @@ -56666,7 +56129,7 @@ } }, { - "id": 19187, + "id": 23691, "properties": { "facing": "west", "half": "upper", @@ -56676,7 +56139,7 @@ } }, { - "id": 19188, + "id": 23692, "properties": { "facing": "west", "half": "lower", @@ -56686,7 +56149,7 @@ } }, { - "id": 19189, + "id": 23693, "properties": { "facing": "west", "half": "lower", @@ -56696,7 +56159,7 @@ } }, { - "id": 19190, + "id": 23694, "properties": { "facing": "west", "half": "lower", @@ -56706,7 +56169,7 @@ } }, { - "id": 19191, + "id": 23695, "properties": { "facing": "west", "half": "lower", @@ -56716,7 +56179,7 @@ } }, { - "id": 19192, + "id": 23696, "properties": { "facing": "west", "half": "lower", @@ -56726,7 +56189,7 @@ } }, { - "id": 19193, + "id": 23697, "properties": { "facing": "west", "half": "lower", @@ -56736,7 +56199,7 @@ } }, { - "id": 19194, + "id": 23698, "properties": { "facing": "west", "half": "lower", @@ -56746,7 +56209,7 @@ } }, { - "id": 19195, + "id": 23699, "properties": { "facing": "west", "half": "lower", @@ -56756,7 +56219,7 @@ } }, { - "id": 19196, + "id": 23700, "properties": { "facing": "east", "half": "upper", @@ -56766,7 +56229,7 @@ } }, { - "id": 19197, + "id": 23701, "properties": { "facing": "east", "half": "upper", @@ -56776,7 +56239,7 @@ } }, { - "id": 19198, + "id": 23702, "properties": { "facing": "east", "half": "upper", @@ -56786,7 +56249,7 @@ } }, { - "id": 19199, + "id": 23703, "properties": { "facing": "east", "half": "upper", @@ -56796,7 +56259,7 @@ } }, { - "id": 19200, + "id": 23704, "properties": { "facing": "east", "half": "upper", @@ -56806,7 +56269,7 @@ } }, { - "id": 19201, + "id": 23705, "properties": { "facing": "east", "half": "upper", @@ -56816,7 +56279,7 @@ } }, { - "id": 19202, + "id": 23706, "properties": { "facing": "east", "half": "upper", @@ -56826,7 +56289,7 @@ } }, { - "id": 19203, + "id": 23707, "properties": { "facing": "east", "half": "upper", @@ -56836,7 +56299,7 @@ } }, { - "id": 19204, + "id": 23708, "properties": { "facing": "east", "half": "lower", @@ -56846,7 +56309,7 @@ } }, { - "id": 19205, + "id": 23709, "properties": { "facing": "east", "half": "lower", @@ -56856,7 +56319,7 @@ } }, { - "id": 19206, + "id": 23710, "properties": { "facing": "east", "half": "lower", @@ -56866,7 +56329,7 @@ } }, { - "id": 19207, + "id": 23711, "properties": { "facing": "east", "half": "lower", @@ -56876,7 +56339,7 @@ } }, { - "id": 19208, + "id": 23712, "properties": { "facing": "east", "half": "lower", @@ -56886,7 +56349,7 @@ } }, { - "id": 19209, + "id": 23713, "properties": { "facing": "east", "half": "lower", @@ -56896,7 +56359,7 @@ } }, { - "id": 19210, + "id": 23714, "properties": { "facing": "east", "half": "lower", @@ -56906,7 +56369,7 @@ } }, { - "id": 19211, + "id": 23715, "properties": { "facing": "east", "half": "lower", @@ -56917,1608 +56380,1716 @@ } ] }, - "minecraft:crimson_fence": { + "minecraft:copper_grate": { "properties": { - "east": [ + "waterlogged": [ "true", "false" + ] + }, + "states": [ + { + "id": 24676, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24677, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "states": [ + { + "default": true, + "id": 22942 + } + ] + }, + "minecraft:copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ + "open": [ "true", "false" ], - "waterlogged": [ + "powered": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 18684, + "id": 24164, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18685, + "id": 24165, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18686, + "id": 24166, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18687, + "id": 24167, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18688, + "id": 24168, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18689, + "id": 24169, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18690, + "id": 24170, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18691, + "id": 24171, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18692, + "id": 24172, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18693, + "id": 24173, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18694, + "id": 24174, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18695, + "id": 24175, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18696, + "id": 24176, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18697, + "id": 24177, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18698, + "id": 24178, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18699, + "default": true, + "id": 24179, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18700, + "id": 24180, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18701, + "id": 24181, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18702, + "id": 24182, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18703, + "id": 24183, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18704, + "id": 24184, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18705, + "id": 24185, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18706, + "id": 24186, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18707, + "id": 24187, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18708, + "id": 24188, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18709, + "id": 24189, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18710, + "id": 24190, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18711, + "id": 24191, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18712, + "id": 24192, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18713, + "id": 24193, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18714, + "id": 24194, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 18715, + "id": 24195, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:crimson_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18876, + "id": 24196, "properties": { - "facing": "north", - "in_wall": "true", + "facing": "west", + "half": "top", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 18877, + "id": 24197, "properties": { - "facing": "north", - "in_wall": "true", + "facing": "west", + "half": "top", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 18878, + "id": 24198, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18879, + "id": 24199, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18880, + "id": 24200, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18881, + "id": 24201, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18882, + "id": 24202, "properties": { - "facing": "north", - "in_wall": "false", + "facing": "west", + "half": "top", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 18883, + "id": 24203, "properties": { - "facing": "north", - "in_wall": "false", + "facing": "west", + "half": "top", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 18884, + "id": 24204, "properties": { - "facing": "south", - "in_wall": "true", + "facing": "west", + "half": "bottom", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 18885, + "id": 24205, "properties": { - "facing": "south", - "in_wall": "true", + "facing": "west", + "half": "bottom", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 18886, + "id": 24206, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18887, + "id": 24207, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18888, + "id": 24208, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18889, + "id": 24209, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18890, + "id": 24210, "properties": { - "facing": "south", - "in_wall": "false", + "facing": "west", + "half": "bottom", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 18891, + "id": 24211, "properties": { - "facing": "south", - "in_wall": "false", + "facing": "west", + "half": "bottom", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 18892, + "id": 24212, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "east", + "half": "top", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 18893, + "id": 24213, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "east", + "half": "top", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 18894, + "id": 24214, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18895, + "id": 24215, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18896, + "id": 24216, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18897, + "id": 24217, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18898, + "id": 24218, "properties": { - "facing": "west", - "in_wall": "false", + "facing": "east", + "half": "top", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 18899, + "id": 24219, "properties": { - "facing": "west", - "in_wall": "false", + "facing": "east", + "half": "top", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 18900, + "id": 24220, "properties": { "facing": "east", - "in_wall": "true", + "half": "bottom", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 18901, + "id": 24221, "properties": { "facing": "east", - "in_wall": "true", + "half": "bottom", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 18902, + "id": 24222, "properties": { "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18903, + "id": 24223, "properties": { "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18904, + "id": 24224, "properties": { "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18905, + "id": 24225, "properties": { "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18906, + "id": 24226, "properties": { "facing": "east", - "in_wall": "false", + "half": "bottom", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 18907, + "id": 24227, "properties": { "facing": "east", - "in_wall": "false", + "half": "bottom", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } } ] }, - "minecraft:crimson_fungus": { + "minecraft:cornflower": { "states": [ { "default": true, - "id": 18609 + "id": 2086 } ] }, - "minecraft:crimson_hanging_sign": { + "minecraft:cracked_deepslate_bricks": { + "states": [ + { + "default": true, + "id": 26552 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "states": [ + { + "default": true, + "id": 26553 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "states": [ + { + "default": true, + "id": 20723 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "states": [ + { + "default": true, + "id": 19873 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 6539 + } + ] + }, + "minecraft:crafter": { "properties": { - "attached": [ + "crafting": [ "true", "false" ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" ], - "waterlogged": [ + "triggered": [ "true", "false" ] }, "states": [ { - "id": 5282, + "id": 26590, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" + "crafting": "true", + "orientation": "down_east", + "triggered": "true" } }, { - "id": 5283, + "id": 26591, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" + "crafting": "true", + "orientation": "down_east", + "triggered": "false" } }, { - "id": 5284, + "id": 26592, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" + "crafting": "true", + "orientation": "down_north", + "triggered": "true" } }, { - "id": 5285, + "id": 26593, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" + "crafting": "true", + "orientation": "down_north", + "triggered": "false" } }, { - "id": 5286, + "id": 26594, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" + "crafting": "true", + "orientation": "down_south", + "triggered": "true" } }, { - "id": 5287, + "id": 26595, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" + "crafting": "true", + "orientation": "down_south", + "triggered": "false" } }, { - "id": 5288, + "id": 26596, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" + "crafting": "true", + "orientation": "down_west", + "triggered": "true" } }, { - "id": 5289, + "id": 26597, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" + "crafting": "true", + "orientation": "down_west", + "triggered": "false" } }, { - "id": 5290, + "id": 26598, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" + "crafting": "true", + "orientation": "up_east", + "triggered": "true" } }, { - "id": 5291, + "id": 26599, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" + "crafting": "true", + "orientation": "up_east", + "triggered": "false" } }, { - "id": 5292, + "id": 26600, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" + "crafting": "true", + "orientation": "up_north", + "triggered": "true" } }, { - "id": 5293, + "id": 26601, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" + "crafting": "true", + "orientation": "up_north", + "triggered": "false" } }, { - "id": 5294, + "id": 26602, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" + "crafting": "true", + "orientation": "up_south", + "triggered": "true" } }, { - "id": 5295, + "id": 26603, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" + "crafting": "true", + "orientation": "up_south", + "triggered": "false" } }, { - "id": 5296, + "id": 26604, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" + "crafting": "true", + "orientation": "up_west", + "triggered": "true" } }, { - "id": 5297, + "id": 26605, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" + "crafting": "true", + "orientation": "up_west", + "triggered": "false" } }, { - "id": 5298, + "id": 26606, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" + "crafting": "true", + "orientation": "west_up", + "triggered": "true" } }, { - "id": 5299, + "id": 26607, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" + "crafting": "true", + "orientation": "west_up", + "triggered": "false" } }, { - "id": 5300, + "id": 26608, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" + "crafting": "true", + "orientation": "east_up", + "triggered": "true" } }, { - "id": 5301, + "id": 26609, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" + "crafting": "true", + "orientation": "east_up", + "triggered": "false" } }, { - "id": 5302, + "id": 26610, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" + "crafting": "true", + "orientation": "north_up", + "triggered": "true" } }, { - "id": 5303, + "id": 26611, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" + "crafting": "true", + "orientation": "north_up", + "triggered": "false" } }, { - "id": 5304, + "id": 26612, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" + "crafting": "true", + "orientation": "south_up", + "triggered": "true" } }, { - "id": 5305, + "id": 26613, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" + "crafting": "true", + "orientation": "south_up", + "triggered": "false" } }, { - "id": 5306, + "id": 26614, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" + "crafting": "false", + "orientation": "down_east", + "triggered": "true" } }, { - "id": 5307, + "id": 26615, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" + "crafting": "false", + "orientation": "down_east", + "triggered": "false" } }, { - "id": 5308, + "id": 26616, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" + "crafting": "false", + "orientation": "down_north", + "triggered": "true" } }, { - "id": 5309, + "id": 26617, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" + "crafting": "false", + "orientation": "down_north", + "triggered": "false" } }, { - "id": 5310, + "id": 26618, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" + "crafting": "false", + "orientation": "down_south", + "triggered": "true" } }, { - "id": 5311, + "id": 26619, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" + "crafting": "false", + "orientation": "down_south", + "triggered": "false" } }, { - "id": 5312, + "id": 26620, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" + "crafting": "false", + "orientation": "down_west", + "triggered": "true" } }, { - "id": 5313, + "id": 26621, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" + "crafting": "false", + "orientation": "down_west", + "triggered": "false" } }, { - "id": 5314, + "id": 26622, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" + "crafting": "false", + "orientation": "up_east", + "triggered": "true" } }, { - "default": true, - "id": 5315, + "id": 26623, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" + "crafting": "false", + "orientation": "up_east", + "triggered": "false" } }, { - "id": 5316, + "id": 26624, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" + "crafting": "false", + "orientation": "up_north", + "triggered": "true" } }, { - "id": 5317, + "id": 26625, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" + "crafting": "false", + "orientation": "up_north", + "triggered": "false" } }, { - "id": 5318, + "id": 26626, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" + "crafting": "false", + "orientation": "up_south", + "triggered": "true" } }, { - "id": 5319, + "id": 26627, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" + "crafting": "false", + "orientation": "up_south", + "triggered": "false" } }, { - "id": 5320, + "id": 26628, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" + "crafting": "false", + "orientation": "up_west", + "triggered": "true" } }, { - "id": 5321, + "id": 26629, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" + "crafting": "false", + "orientation": "up_west", + "triggered": "false" } }, { - "id": 5322, + "id": 26630, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" + "crafting": "false", + "orientation": "west_up", + "triggered": "true" } }, { - "id": 5323, + "id": 26631, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" + "crafting": "false", + "orientation": "west_up", + "triggered": "false" } }, { - "id": 5324, + "id": 26632, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" + "crafting": "false", + "orientation": "east_up", + "triggered": "true" } }, { - "id": 5325, + "id": 26633, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" + "crafting": "false", + "orientation": "east_up", + "triggered": "false" } }, { - "id": 5326, + "id": 26634, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" + "crafting": "false", + "orientation": "north_up", + "triggered": "true" } }, { - "id": 5327, + "default": true, + "id": 26635, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" + "crafting": "false", + "orientation": "north_up", + "triggered": "false" } }, { - "id": 5328, + "id": 26636, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" + "crafting": "false", + "orientation": "south_up", + "triggered": "true" } }, { - "id": 5329, + "id": 26637, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" + "crafting": "false", + "orientation": "south_up", + "triggered": "false" } - }, + } + ] + }, + "minecraft:crafting_table": { + "states": [ { - "id": 5330, + "default": true, + "id": 4277 + } + ] + }, + "minecraft:creeper_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8987, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" + "powered": "true", + "rotation": "0" } }, { - "id": 5331, + "id": 8988, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" + "powered": "true", + "rotation": "1" } }, { - "id": 5332, + "id": 8989, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" + "powered": "true", + "rotation": "2" } }, { - "id": 5333, + "id": 8990, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" + "powered": "true", + "rotation": "3" } }, { - "id": 5334, + "id": 8991, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" + "powered": "true", + "rotation": "4" } }, { - "id": 5335, + "id": 8992, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" + "powered": "true", + "rotation": "5" } }, { - "id": 5336, + "id": 8993, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" + "powered": "true", + "rotation": "6" } }, { - "id": 5337, + "id": 8994, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" + "powered": "true", + "rotation": "7" } }, { - "id": 5338, + "id": 8995, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" + "powered": "true", + "rotation": "8" } }, { - "id": 5339, + "id": 8996, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" + "powered": "true", + "rotation": "9" } }, { - "id": 5340, + "id": 8997, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" + "powered": "true", + "rotation": "10" } }, { - "id": 5341, + "id": 8998, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" + "powered": "true", + "rotation": "11" } }, { - "id": 5342, + "id": 8999, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" + "powered": "true", + "rotation": "12" } }, { - "id": 5343, + "id": 9000, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" + "powered": "true", + "rotation": "13" } }, { - "id": 5344, + "id": 9001, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" + "powered": "true", + "rotation": "14" } }, { - "id": 5345, + "id": 9002, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" + "powered": "true", + "rotation": "15" } - } - ] - }, - "minecraft:crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 18602, + "default": true, + "id": 9003, "properties": { - "axis": "x" + "powered": "false", + "rotation": "0" } }, { - "default": true, - "id": 18603, + "id": 9004, "properties": { - "axis": "y" + "powered": "false", + "rotation": "1" } }, { - "id": 18604, + "id": 9005, "properties": { - "axis": "z" + "powered": "false", + "rotation": "2" } - } - ] - }, - "minecraft:crimson_nylium": { - "states": [ + }, { - "default": true, - "id": 18608 - } - ] - }, - "minecraft:crimson_planks": { - "states": [ + "id": 9006, + "properties": { + "powered": "false", + "rotation": "3" + } + }, { - "default": true, - "id": 18666 - } - ] - }, - "minecraft:crimson_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "id": 9007, + "properties": { + "powered": "false", + "rotation": "4" + } + }, { - "id": 18680, + "id": 9008, "properties": { - "powered": "true" + "powered": "false", + "rotation": "5" } }, { - "default": true, - "id": 18681, + "id": 9009, "properties": { - "powered": "false" + "powered": "false", + "rotation": "6" } - } - ] - }, - "minecraft:crimson_roots": { - "states": [ + }, { - "default": true, - "id": 18665 - } - ] - }, - "minecraft:crimson_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 9010, + "properties": { + "powered": "false", + "rotation": "7" + } + }, { - "id": 19276, + "id": 9011, "properties": { - "rotation": "0", - "waterlogged": "true" + "powered": "false", + "rotation": "8" } }, { - "default": true, - "id": 19277, + "id": 9012, "properties": { - "rotation": "0", - "waterlogged": "false" + "powered": "false", + "rotation": "9" } }, { - "id": 19278, + "id": 9013, "properties": { - "rotation": "1", - "waterlogged": "true" + "powered": "false", + "rotation": "10" } }, { - "id": 19279, + "id": 9014, "properties": { - "rotation": "1", - "waterlogged": "false" + "powered": "false", + "rotation": "11" } }, { - "id": 19280, + "id": 9015, "properties": { - "rotation": "2", - "waterlogged": "true" + "powered": "false", + "rotation": "12" } }, { - "id": 19281, + "id": 9016, "properties": { - "rotation": "2", - "waterlogged": "false" + "powered": "false", + "rotation": "13" } }, { - "id": 19282, + "id": 9017, "properties": { - "rotation": "3", - "waterlogged": "true" + "powered": "false", + "rotation": "14" } }, { - "id": 19283, + "id": 9018, "properties": { - "rotation": "3", - "waterlogged": "false" + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9019, + "properties": { + "facing": "north", + "powered": "true" } }, { - "id": 19284, + "default": true, + "id": 9020, "properties": { - "rotation": "4", - "waterlogged": "true" + "facing": "north", + "powered": "false" } }, { - "id": 19285, + "id": 9021, "properties": { - "rotation": "4", - "waterlogged": "false" + "facing": "south", + "powered": "true" } }, { - "id": 19286, + "id": 9022, "properties": { - "rotation": "5", - "waterlogged": "true" + "facing": "south", + "powered": "false" } }, { - "id": 19287, + "id": 9023, "properties": { - "rotation": "5", - "waterlogged": "false" + "facing": "west", + "powered": "true" } }, { - "id": 19288, + "id": 9024, "properties": { - "rotation": "6", - "waterlogged": "true" + "facing": "west", + "powered": "false" } }, { - "id": 19289, + "id": 9025, "properties": { - "rotation": "6", - "waterlogged": "false" + "facing": "east", + "powered": "true" } }, { - "id": 19290, + "id": 9026, "properties": { - "rotation": "7", - "waterlogged": "true" + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19100, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" } }, { - "id": 19291, + "id": 19101, "properties": { - "rotation": "7", - "waterlogged": "false" + "face": "floor", + "facing": "north", + "powered": "false" } }, { - "id": 19292, + "id": 19102, "properties": { - "rotation": "8", - "waterlogged": "true" + "face": "floor", + "facing": "south", + "powered": "true" } }, { - "id": 19293, + "id": 19103, "properties": { - "rotation": "8", - "waterlogged": "false" + "face": "floor", + "facing": "south", + "powered": "false" } }, { - "id": 19294, + "id": 19104, "properties": { - "rotation": "9", - "waterlogged": "true" + "face": "floor", + "facing": "west", + "powered": "true" } }, { - "id": 19295, + "id": 19105, "properties": { - "rotation": "9", - "waterlogged": "false" + "face": "floor", + "facing": "west", + "powered": "false" } }, { - "id": 19296, + "id": 19106, "properties": { - "rotation": "10", - "waterlogged": "true" + "face": "floor", + "facing": "east", + "powered": "true" } }, { - "id": 19297, + "id": 19107, "properties": { - "rotation": "10", - "waterlogged": "false" + "face": "floor", + "facing": "east", + "powered": "false" } }, { - "id": 19298, + "id": 19108, "properties": { - "rotation": "11", - "waterlogged": "true" + "face": "wall", + "facing": "north", + "powered": "true" } }, { - "id": 19299, + "default": true, + "id": 19109, "properties": { - "rotation": "11", - "waterlogged": "false" + "face": "wall", + "facing": "north", + "powered": "false" } }, { - "id": 19300, + "id": 19110, "properties": { - "rotation": "12", - "waterlogged": "true" + "face": "wall", + "facing": "south", + "powered": "true" } }, { - "id": 19301, + "id": 19111, "properties": { - "rotation": "12", - "waterlogged": "false" + "face": "wall", + "facing": "south", + "powered": "false" } }, { - "id": 19302, + "id": 19112, "properties": { - "rotation": "13", - "waterlogged": "true" + "face": "wall", + "facing": "west", + "powered": "true" } }, { - "id": 19303, + "id": 19113, "properties": { - "rotation": "13", - "waterlogged": "false" + "face": "wall", + "facing": "west", + "powered": "false" } }, { - "id": 19304, + "id": 19114, "properties": { - "rotation": "14", - "waterlogged": "true" + "face": "wall", + "facing": "east", + "powered": "true" } }, { - "id": 19305, + "id": 19115, "properties": { - "rotation": "14", - "waterlogged": "false" + "face": "wall", + "facing": "east", + "powered": "false" } }, { - "id": 19306, + "id": 19116, "properties": { - "rotation": "15", - "waterlogged": "true" + "face": "ceiling", + "facing": "north", + "powered": "true" } }, { - "id": 19307, + "id": 19117, "properties": { - "rotation": "15", - "waterlogged": "false" + "face": "ceiling", + "facing": "north", + "powered": "false" } - } - ] - }, - "minecraft:crimson_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18668, + "id": 19118, "properties": { - "type": "top", - "waterlogged": "true" + "face": "ceiling", + "facing": "south", + "powered": "true" } }, { - "id": 18669, + "id": 19119, "properties": { - "type": "top", - "waterlogged": "false" + "face": "ceiling", + "facing": "south", + "powered": "false" } }, { - "id": 18670, + "id": 19120, "properties": { - "type": "bottom", - "waterlogged": "true" + "face": "ceiling", + "facing": "west", + "powered": "true" } }, { - "default": true, - "id": 18671, + "id": 19121, "properties": { - "type": "bottom", - "waterlogged": "false" + "face": "ceiling", + "facing": "west", + "powered": "false" } }, { - "id": 18672, + "id": 19122, "properties": { - "type": "double", - "waterlogged": "true" + "face": "ceiling", + "facing": "east", + "powered": "true" } }, { - "id": 18673, + "id": 19123, "properties": { - "type": "double", - "waterlogged": "false" + "face": "ceiling", + "facing": "east", + "powered": "false" } } ] }, - "minecraft:crimson_stairs": { + "minecraft:crimson_door": { "properties": { "facing": [ "north", @@ -58527,3766 +58098,3935 @@ "east" ], "half": [ - "top", - "bottom" + "upper", + "lower" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "hinge": [ + "left", + "right" ], - "waterlogged": [ + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { - "id": 18940, + "id": 19148, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18941, + "id": 19149, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18942, + "id": 19150, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18943, + "id": 19151, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18944, + "id": 19152, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18945, + "id": 19153, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18946, + "id": 19154, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18947, + "id": 19155, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18948, + "id": 19156, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18949, + "id": 19157, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18950, + "id": 19158, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { "default": true, - "id": 18951, + "id": 19159, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18952, + "id": 19160, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18953, + "id": 19161, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18954, + "id": 19162, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18955, + "id": 19163, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18956, + "id": 19164, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18957, + "id": 19165, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18958, + "id": 19166, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18959, + "id": 19167, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18960, + "id": 19168, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18961, + "id": 19169, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18962, + "id": 19170, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18963, + "id": 19171, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18964, + "id": 19172, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18965, + "id": 19173, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18966, + "id": 19174, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18967, + "id": 19175, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18968, + "id": 19176, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18969, + "id": 19177, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18970, + "id": 19178, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18971, + "id": 19179, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18972, + "id": 19180, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18973, + "id": 19181, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18974, + "id": 19182, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18975, + "id": 19183, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18976, + "id": 19184, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18977, + "id": 19185, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18978, + "id": 19186, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18979, + "id": 19187, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18980, + "id": 19188, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18981, + "id": 19189, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18982, + "id": 19190, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18983, + "id": 19191, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18984, + "id": 19192, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18985, + "id": 19193, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18986, + "id": 19194, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18987, + "id": 19195, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18988, + "id": 19196, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18989, + "id": 19197, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18990, + "id": 19198, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18991, + "id": 19199, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 18992, + "id": 19200, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 18993, + "id": 19201, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 18994, + "id": 19202, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 18995, + "id": 19203, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 18996, + "id": 19204, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 18997, + "id": 19205, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18998, + "id": 19206, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 18999, + "id": 19207, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19000, + "id": 19208, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 19001, + "id": 19209, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 19002, + "id": 19210, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 19003, + "id": 19211, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 19004, + "id": 18685, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 19005, + "id": 18686, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 19006, + "id": 18687, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 19007, + "id": 18688, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 19008, + "id": 18689, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 19009, + "id": 18690, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 19010, + "id": 18691, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 19011, + "id": 18692, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 19012, + "id": 18693, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 19013, + "id": 18694, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 19014, + "id": 18695, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 19015, + "id": 18696, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 19016, + "id": 18697, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 19017, + "id": 18698, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 19018, + "id": 18699, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 19019, + "id": 18700, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } - } - ] - }, - "minecraft:crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 18596, + "id": 18701, "properties": { - "axis": "x" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "default": true, - "id": 18597, + "id": 18702, "properties": { - "axis": "y" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 18598, + "id": 18703, "properties": { - "axis": "z" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } - } - ] - }, - "minecraft:crimson_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18748, + "id": 18704, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 18749, + "id": 18705, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 18750, + "id": 18706, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 18751, + "id": 18707, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 18752, + "id": 18708, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 18753, + "id": 18709, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 18754, + "id": 18710, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 18755, + "id": 18711, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 18756, + "id": 18712, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 18757, + "id": 18713, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 18758, + "id": 18714, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 18759, + "default": true, + "id": 18715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18876, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "true", - "powered": "false", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18760, + "id": 18877, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 18761, + "id": 18878, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18762, + "id": 18879, "properties": { "facing": "north", - "half": "bottom", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "true" + "powered": "false" } }, { - "default": true, - "id": 18763, + "id": 18880, "properties": { "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 18764, + "id": 18881, "properties": { - "facing": "south", - "half": "top", + "facing": "north", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "true" + "powered": "false" } }, { - "id": 18765, + "id": 18882, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 18766, + "default": true, + "id": 18883, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 18767, + "id": 18884, "properties": { "facing": "south", - "half": "top", + "in_wall": "true", "open": "true", - "powered": "false", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18768, + "id": 18885, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 18769, + "id": 18886, "properties": { "facing": "south", - "half": "top", + "in_wall": "true", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18770, + "id": 18887, "properties": { "facing": "south", - "half": "top", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "true" + "powered": "false" } }, { - "id": 18771, + "id": 18888, "properties": { "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 18772, + "id": 18889, "properties": { "facing": "south", - "half": "bottom", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "true" + "powered": "false" } }, { - "id": 18773, + "id": 18890, "properties": { "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 18774, + "id": 18891, "properties": { "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 18775, + "id": 18892, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", "open": "true", - "powered": "false", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18776, + "id": 18893, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 18777, + "id": 18894, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", "open": "false", - "powered": "true", - "waterlogged": "false" + "powered": "true" } }, { - "id": 18778, + "id": 18895, "properties": { - "facing": "south", - "half": "bottom", + "facing": "west", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "true" + "powered": "false" } }, { - "id": 18779, - "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" - } - }, - { - "id": 18780, + "id": 18896, "properties": { "facing": "west", - "half": "top", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "true" + "powered": "true" } }, { - "id": 18781, + "id": 18897, "properties": { "facing": "west", - "half": "top", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false" } }, { - "id": 18782, + "id": 18898, "properties": { "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 18783, + "id": 18899, "properties": { "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 18784, + "id": 18900, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 18785, + "id": 18901, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 18786, + "id": 18902, "properties": { - "facing": "west", - "half": "top", + "facing": "east", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "true" + "powered": "true" } }, { - "id": 18787, + "id": 18903, "properties": { - "facing": "west", - "half": "top", + "facing": "east", + "in_wall": "true", "open": "false", - "powered": "false", - "waterlogged": "false" + "powered": "false" } }, { - "id": 18788, + "id": 18904, "properties": { - "facing": "west", - "half": "bottom", + "facing": "east", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "true" + "powered": "true" } }, { - "id": 18789, + "id": 18905, "properties": { - "facing": "west", - "half": "bottom", + "facing": "east", + "in_wall": "false", "open": "true", - "powered": "true", - "waterlogged": "false" + "powered": "false" } }, { - "id": 18790, + "id": 18906, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 18791, + "id": 18907, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:crimson_fungus": { + "states": [ { - "id": 18792, + "default": true, + "id": 18609 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5282, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "0", "waterlogged": "true" } }, { - "id": 18793, + "id": 5283, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "0", "waterlogged": "false" } }, { - "id": 18794, + "id": 5284, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "1", "waterlogged": "true" } }, { - "id": 18795, + "id": 5285, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "1", "waterlogged": "false" } }, { - "id": 18796, + "id": 5286, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "2", "waterlogged": "true" } }, { - "id": 18797, + "id": 5287, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "2", "waterlogged": "false" } }, { - "id": 18798, + "id": 5288, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "3", "waterlogged": "true" } }, { - "id": 18799, + "id": 5289, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "3", "waterlogged": "false" } }, { - "id": 18800, + "id": 5290, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "4", "waterlogged": "true" } }, { - "id": 18801, + "id": 5291, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "4", "waterlogged": "false" } }, { - "id": 18802, + "id": 5292, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "5", "waterlogged": "true" } }, { - "id": 18803, + "id": 5293, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "5", "waterlogged": "false" } }, { - "id": 18804, + "id": 5294, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "6", "waterlogged": "true" } }, { - "id": 18805, + "id": 5295, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "6", "waterlogged": "false" } }, { - "id": 18806, + "id": 5296, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "7", "waterlogged": "true" } }, { - "id": 18807, + "id": 5297, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "7", "waterlogged": "false" } }, { - "id": 18808, + "id": 5298, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "8", "waterlogged": "true" } }, { - "id": 18809, + "id": 5299, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "8", "waterlogged": "false" } }, { - "id": 18810, + "id": 5300, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "9", "waterlogged": "true" } }, { - "id": 18811, + "id": 5301, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "9", "waterlogged": "false" } - } - ] - }, - "minecraft:crimson_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5602, + "id": 5302, "properties": { - "facing": "north", + "attached": "true", + "rotation": "10", "waterlogged": "true" } }, { - "default": true, - "id": 5603, + "id": 5303, "properties": { - "facing": "north", + "attached": "true", + "rotation": "10", "waterlogged": "false" } }, { - "id": 5604, + "id": 5304, "properties": { - "facing": "south", + "attached": "true", + "rotation": "11", "waterlogged": "true" } }, { - "id": 5605, + "id": 5305, "properties": { - "facing": "south", + "attached": "true", + "rotation": "11", "waterlogged": "false" } }, { - "id": 5606, + "id": 5306, "properties": { - "facing": "west", + "attached": "true", + "rotation": "12", "waterlogged": "true" } }, { - "id": 5607, + "id": 5307, "properties": { - "facing": "west", + "attached": "true", + "rotation": "12", "waterlogged": "false" } }, { - "id": 5608, + "id": 5308, "properties": { - "facing": "east", + "attached": "true", + "rotation": "13", "waterlogged": "true" } }, { - "id": 5609, + "id": 5309, "properties": { - "facing": "east", + "attached": "true", + "rotation": "13", "waterlogged": "false" } - } - ] - }, - "minecraft:crimson_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 19340, + "id": 5310, "properties": { - "facing": "north", + "attached": "true", + "rotation": "14", "waterlogged": "true" } }, { - "default": true, - "id": 19341, + "id": 5311, "properties": { - "facing": "north", + "attached": "true", + "rotation": "14", "waterlogged": "false" } }, { - "id": 19342, + "id": 5312, "properties": { - "facing": "south", + "attached": "true", + "rotation": "15", "waterlogged": "true" } }, { - "id": 19343, + "id": 5313, "properties": { - "facing": "south", + "attached": "true", + "rotation": "15", "waterlogged": "false" } }, { - "id": 19344, + "id": 5314, "properties": { - "facing": "west", + "attached": "false", + "rotation": "0", "waterlogged": "true" } }, { - "id": 19345, + "default": true, + "id": 5315, "properties": { - "facing": "west", + "attached": "false", + "rotation": "0", "waterlogged": "false" } }, { - "id": 19346, + "id": 5316, "properties": { - "facing": "east", + "attached": "false", + "rotation": "1", "waterlogged": "true" } }, { - "id": 19347, + "id": 5317, "properties": { - "facing": "east", + "attached": "false", + "rotation": "1", "waterlogged": "false" } - } - ] - }, - "minecraft:crying_obsidian": { - "states": [ - { - "default": true, - "id": 19449 - } - ] - }, - "minecraft:cut_copper": { - "states": [ - { - "default": true, - "id": 21713 - } - ] - }, - "minecraft:cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 22052, + "id": 5318, "properties": { - "type": "top", + "attached": "false", + "rotation": "2", "waterlogged": "true" } }, { - "id": 22053, + "id": 5319, "properties": { - "type": "top", + "attached": "false", + "rotation": "2", "waterlogged": "false" } }, { - "id": 22054, + "id": 5320, "properties": { - "type": "bottom", + "attached": "false", + "rotation": "3", "waterlogged": "true" } }, { - "default": true, - "id": 22055, + "id": 5321, "properties": { - "type": "bottom", + "attached": "false", + "rotation": "3", "waterlogged": "false" } }, { - "id": 22056, + "id": 5322, "properties": { - "type": "double", + "attached": "false", + "rotation": "4", "waterlogged": "true" } }, { - "id": 22057, + "id": 5323, "properties": { - "type": "double", + "attached": "false", + "rotation": "4", "waterlogged": "false" } - } - ] - }, - "minecraft:cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21954, + "id": 5324, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "attached": "false", + "rotation": "5", "waterlogged": "true" } }, { - "id": 21955, + "id": 5325, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", + "attached": "false", + "rotation": "5", "waterlogged": "false" } }, { - "id": 21956, + "id": 5326, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "attached": "false", + "rotation": "6", "waterlogged": "true" } }, { - "id": 21957, + "id": 5327, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", + "attached": "false", + "rotation": "6", "waterlogged": "false" } }, { - "id": 21958, + "id": 5328, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "attached": "false", + "rotation": "7", "waterlogged": "true" } }, { - "id": 21959, + "id": 5329, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", + "attached": "false", + "rotation": "7", "waterlogged": "false" } }, { - "id": 21960, + "id": 5330, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", + "attached": "false", + "rotation": "8", "waterlogged": "true" } }, { - "id": 21961, + "id": 5331, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", + "attached": "false", + "rotation": "8", "waterlogged": "false" } }, { - "id": 21962, + "id": 5332, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", + "attached": "false", + "rotation": "9", "waterlogged": "true" } }, { - "id": 21963, + "id": 5333, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", + "attached": "false", + "rotation": "9", "waterlogged": "false" } }, { - "id": 21964, + "id": 5334, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "attached": "false", + "rotation": "10", "waterlogged": "true" } }, { - "default": true, - "id": 21965, + "id": 5335, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "attached": "false", + "rotation": "10", "waterlogged": "false" } }, { - "id": 21966, + "id": 5336, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", + "attached": "false", + "rotation": "11", "waterlogged": "true" } }, { - "id": 21967, + "id": 5337, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", + "attached": "false", + "rotation": "11", "waterlogged": "false" } }, { - "id": 21968, + "id": 5338, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", + "attached": "false", + "rotation": "12", "waterlogged": "true" } }, { - "id": 21969, + "id": 5339, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", + "attached": "false", + "rotation": "12", "waterlogged": "false" } }, { - "id": 21970, + "id": 5340, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", + "attached": "false", + "rotation": "13", "waterlogged": "true" } }, { - "id": 21971, + "id": 5341, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", + "attached": "false", + "rotation": "13", "waterlogged": "false" } }, { - "id": 21972, + "id": 5342, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", + "attached": "false", + "rotation": "14", "waterlogged": "true" } }, { - "id": 21973, + "id": 5343, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", + "attached": "false", + "rotation": "14", "waterlogged": "false" } }, { - "id": 21974, + "id": 5344, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "attached": "false", + "rotation": "15", "waterlogged": "true" } }, { - "id": 21975, + "id": 5345, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "attached": "false", + "rotation": "15", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { - "id": 21976, + "id": 18602, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "axis": "x" } }, { - "id": 21977, + "default": true, + "id": 18603, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "axis": "y" } }, { - "id": 21978, + "id": 18604, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "axis": "z" } - }, + } + ] + }, + "minecraft:crimson_nylium": { + "states": [ { - "id": 21979, + "default": true, + "id": 18608 + } + ] + }, + "minecraft:crimson_planks": { + "states": [ + { + "default": true, + "id": 18666 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18680, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "powered": "true" } }, { - "id": 21980, + "default": true, + "id": 18681, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "states": [ + { + "default": true, + "id": 18665 + } + ] + }, + "minecraft:crimson_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19276, + "properties": { + "rotation": "0", "waterlogged": "true" } }, { - "id": 21981, + "default": true, + "id": 19277, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", + "rotation": "0", "waterlogged": "false" } }, { - "id": 21982, + "id": 19278, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "rotation": "1", "waterlogged": "true" } }, { - "id": 21983, + "id": 19279, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", + "rotation": "1", "waterlogged": "false" } }, { - "id": 21984, + "id": 19280, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "rotation": "2", "waterlogged": "true" } }, { - "id": 21985, + "id": 19281, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "rotation": "2", "waterlogged": "false" } }, { - "id": 21986, + "id": 19282, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "rotation": "3", "waterlogged": "true" } }, { - "id": 21987, + "id": 19283, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "rotation": "3", "waterlogged": "false" } }, { - "id": 21988, + "id": 19284, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "rotation": "4", "waterlogged": "true" } }, { - "id": 21989, + "id": 19285, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "rotation": "4", "waterlogged": "false" } }, { - "id": 21990, + "id": 19286, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "rotation": "5", "waterlogged": "true" } }, { - "id": 21991, + "id": 19287, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "rotation": "5", "waterlogged": "false" } }, { - "id": 21992, + "id": 19288, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "rotation": "6", "waterlogged": "true" } }, { - "id": 21993, + "id": 19289, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "rotation": "6", "waterlogged": "false" } }, { - "id": 21994, + "id": 19290, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "rotation": "7", "waterlogged": "true" } }, { - "id": 21995, + "id": 19291, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "rotation": "7", "waterlogged": "false" } }, { - "id": 21996, + "id": 19292, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "rotation": "8", "waterlogged": "true" } }, { - "id": 21997, + "id": 19293, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "rotation": "8", "waterlogged": "false" } }, { - "id": 21998, + "id": 19294, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "rotation": "9", "waterlogged": "true" } }, { - "id": 21999, + "id": 19295, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "rotation": "9", "waterlogged": "false" } }, { - "id": 22000, + "id": 19296, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "rotation": "10", "waterlogged": "true" } }, { - "id": 22001, + "id": 19297, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "rotation": "10", "waterlogged": "false" } }, { - "id": 22002, + "id": 19298, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "rotation": "11", "waterlogged": "true" } }, { - "id": 22003, + "id": 19299, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "rotation": "11", "waterlogged": "false" } }, { - "id": 22004, + "id": 19300, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "rotation": "12", "waterlogged": "true" } }, { - "id": 22005, + "id": 19301, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "rotation": "12", "waterlogged": "false" } }, { - "id": 22006, + "id": 19302, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "rotation": "13", "waterlogged": "true" } }, { - "id": 22007, + "id": 19303, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "rotation": "13", "waterlogged": "false" } }, { - "id": 22008, + "id": 19304, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "rotation": "14", "waterlogged": "true" } }, { - "id": 22009, + "id": 19305, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "rotation": "14", "waterlogged": "false" } }, { - "id": 22010, + "id": 19306, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "rotation": "15", "waterlogged": "true" } }, { - "id": 22011, + "id": 19307, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "rotation": "15", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:crimson_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 22012, + "id": 18668, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "type": "top", "waterlogged": "true" } }, { - "id": 22013, + "id": 18669, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "type": "top", "waterlogged": "false" } }, { - "id": 22014, + "id": 18670, "properties": { - "facing": "east", + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18671, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18672, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18673, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18940, + "properties": { + "facing": "north", "half": "top", "shape": "straight", "waterlogged": "true" } }, { - "id": 22015, + "id": 18941, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "straight", "waterlogged": "false" } }, { - "id": 22016, + "id": 18942, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "true" } }, { - "id": 22017, + "id": 18943, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "inner_left", "waterlogged": "false" } }, { - "id": 22018, + "id": 18944, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "true" } }, { - "id": 22019, + "id": 18945, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "inner_right", "waterlogged": "false" } }, { - "id": 22020, + "id": 18946, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "true" } }, { - "id": 22021, + "id": 18947, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 22022, + "id": 18948, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "true" } }, { - "id": 22023, + "id": 18949, "properties": { - "facing": "east", + "facing": "north", "half": "top", "shape": "outer_right", "waterlogged": "false" } }, { - "id": 22024, + "id": 18950, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "true" } }, { - "id": 22025, + "default": true, + "id": 18951, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "straight", "waterlogged": "false" } }, { - "id": 22026, + "id": 18952, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "true" } }, { - "id": 22027, + "id": 18953, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "inner_left", "waterlogged": "false" } }, { - "id": 22028, + "id": 18954, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "true" } }, { - "id": 22029, + "id": 18955, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "inner_right", "waterlogged": "false" } }, { - "id": 22030, + "id": 18956, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "true" } }, { - "id": 22031, + "id": 18957, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "outer_left", "waterlogged": "false" } }, { - "id": 22032, + "id": 18958, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "true" } }, { - "id": 22033, + "id": 18959, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", "shape": "outer_right", "waterlogged": "false" } - } - ] - }, - "minecraft:cut_red_sandstone": { - "states": [ - { - "default": true, - "id": 11081 - } - ] - }, - "minecraft:cut_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11294, + "id": 18960, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, { - "id": 11295, + "id": 18961, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { - "id": 11296, + "id": 18962, "properties": { - "type": "bottom", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "true" } }, { - "default": true, - "id": 11297, + "id": 18963, "properties": { - "type": "bottom", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 11298, + "id": 18964, "properties": { - "type": "double", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 11299, + "id": 18965, "properties": { - "type": "double", + "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } - } - ] - }, - "minecraft:cut_sandstone": { - "states": [ - { - "default": true, - "id": 537 - } - ] - }, - "minecraft:cut_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11240, + "id": 18966, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 11241, + "id": 18967, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 11242, + "id": 18968, "properties": { - "type": "bottom", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, { - "default": true, - "id": 11243, + "id": 18969, "properties": { - "type": "bottom", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 11244, + "id": 18970, "properties": { - "type": "double", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { - "id": 11245, + "id": 18971, "properties": { - "type": "double", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } - } - ] - }, - "minecraft:cyan_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 10903, + "id": 18972, "properties": { - "rotation": "0" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 10904, + "id": 18973, "properties": { - "rotation": "1" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 10905, + "id": 18974, "properties": { - "rotation": "2" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 10906, + "id": 18975, "properties": { - "rotation": "3" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 10907, + "id": 18976, "properties": { - "rotation": "4" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 10908, + "id": 18977, "properties": { - "rotation": "5" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 10909, + "id": 18978, "properties": { - "rotation": "6" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 10910, + "id": 18979, "properties": { - "rotation": "7" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 10911, + "id": 18980, "properties": { - "rotation": "8" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 10912, + "id": 18981, "properties": { - "rotation": "9" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 10913, + "id": 18982, "properties": { - "rotation": "10" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 10914, + "id": 18983, "properties": { - "rotation": "11" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 10915, + "id": 18984, "properties": { - "rotation": "12" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 10916, + "id": 18985, "properties": { - "rotation": "13" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 10917, + "id": 18986, "properties": { - "rotation": "14" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 10918, + "id": 18987, "properties": { - "rotation": "15" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:cyan_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + }, { - "id": 1832, + "id": 18988, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 1833, + "id": 18989, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 1834, + "id": 18990, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "default": true, - "id": 1835, + "id": 18991, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 1836, + "id": 18992, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 1837, + "id": 18993, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 1838, + "id": 18994, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 1839, + "id": 18995, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 1840, + "id": 18996, "properties": { "facing": "west", - "occupied": "true", - "part": "head" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 1841, + "id": 18997, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 1842, + "id": 18998, "properties": { "facing": "west", - "occupied": "false", - "part": "head" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 1843, + "id": 18999, "properties": { "facing": "west", - "occupied": "false", - "part": "foot" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 1844, + "id": 19000, "properties": { "facing": "east", - "occupied": "true", - "part": "head" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 1845, + "id": 19001, "properties": { "facing": "east", - "occupied": "true", - "part": "foot" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 1846, + "id": 19002, "properties": { "facing": "east", - "occupied": "false", - "part": "head" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 1847, + "id": 19003, "properties": { "facing": "east", - "occupied": "false", - "part": "foot" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:cyan_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20885, + "id": 19004, "properties": { - "candles": "1", - "lit": "true", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 20886, + "id": 19005, "properties": { - "candles": "1", - "lit": "true", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 20887, + "id": 19006, "properties": { - "candles": "1", - "lit": "false", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "default": true, - "id": 20888, + "id": 19007, "properties": { - "candles": "1", - "lit": "false", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 20889, + "id": 19008, "properties": { - "candles": "2", - "lit": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 20890, + "id": 19009, "properties": { - "candles": "2", - "lit": "true", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 20891, + "id": 19010, "properties": { - "candles": "2", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { - "id": 20892, + "id": 19011, "properties": { - "candles": "2", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { - "id": 20893, + "id": 19012, "properties": { - "candles": "3", - "lit": "true", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 20894, + "id": 19013, "properties": { - "candles": "3", - "lit": "true", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 20895, + "id": 19014, "properties": { - "candles": "3", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 20896, + "id": 19015, "properties": { - "candles": "3", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 20897, + "id": 19016, "properties": { - "candles": "4", - "lit": "true", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 20898, + "id": 19017, "properties": { - "candles": "4", - "lit": "true", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 20899, + "id": 19018, "properties": { - "candles": "4", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 20900, + "id": 19019, "properties": { - "candles": "4", - "lit": "false", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } } ] }, - "minecraft:cyan_candle_cake": { + "minecraft:crimson_stem": { "properties": { - "lit": [ - "true", - "false" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { - "id": 21017, + "id": 18596, "properties": { - "lit": "true" + "axis": "x" } }, { "default": true, - "id": 21018, + "id": 18597, "properties": { - "lit": "false" + "axis": "y" } - } - ] - }, - "minecraft:cyan_carpet": { - "states": [ - { - "default": true, - "id": 10737 - } - ] - }, - "minecraft:cyan_concrete": { - "states": [ - { - "default": true, - "id": 12737 - } - ] - }, - "minecraft:cyan_concrete_powder": { - "states": [ + }, { - "default": true, - "id": 12753 + "id": 18598, + "properties": { + "axis": "z" + } } ] }, - "minecraft:cyan_glazed_terracotta": { + "minecraft:crimson_trapdoor": { "properties": { "facing": [ "north", "south", "west", "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "default": true, - "id": 12700, + "id": 18748, "properties": { - "facing": "north" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 12701, + "id": 18749, "properties": { - "facing": "south" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 12702, + "id": 18750, "properties": { - "facing": "west" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 12703, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:cyan_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12622, + "id": 18751, "properties": { - "facing": "north" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 12623, + "id": 18752, "properties": { - "facing": "east" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 12624, + "id": 18753, "properties": { - "facing": "south" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 12625, + "id": 18754, "properties": { - "facing": "west" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 12626, + "id": 18755, "properties": { - "facing": "up" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 12627, + "id": 18756, "properties": { - "facing": "down" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } - } - ] - }, - "minecraft:cyan_stained_glass": { - "states": [ - { - "default": true, - "id": 5955 - } - ] - }, - "minecraft:cyan_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9660, + "id": 18757, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9661, + "id": 18758, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9662, + "id": 18759, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9663, + "id": 18760, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9664, + "id": 18761, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9665, + "id": 18762, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9666, + "default": true, + "id": 18763, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9667, + "id": 18764, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9668, + "id": 18765, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9669, + "id": 18766, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9670, + "id": 18767, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9671, + "id": 18768, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9672, + "id": 18769, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9673, + "id": 18770, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9674, + "id": 18771, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9675, + "id": 18772, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9676, + "id": 18773, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9677, + "id": 18774, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9678, + "id": 18775, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9679, + "id": 18776, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9680, + "id": 18777, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9681, + "id": 18778, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9682, + "id": 18779, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9683, + "id": 18780, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9684, + "id": 18781, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9685, + "id": 18782, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9686, + "id": 18783, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9687, + "id": 18784, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9688, + "id": 18785, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9689, + "id": 18786, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9690, + "id": 18787, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "default": true, - "id": 9691, + "id": 18788, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } - } - ] - }, - "minecraft:cyan_terracotta": { - "states": [ + }, { - "default": true, - "id": 9365 - } - ] - }, - "minecraft:cyan_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "id": 18789, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, { - "default": true, - "id": 11051, + "id": 18790, "properties": { - "facing": "north" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11052, + "id": 18791, "properties": { - "facing": "south" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11053, + "id": 18792, "properties": { - "facing": "west" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11054, + "id": 18793, "properties": { - "facing": "east" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } - } - ] - }, - "minecraft:cyan_wool": { - "states": [ + }, { - "default": true, - "id": 2056 - } - ] - }, - "minecraft:damaged_anvil": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "id": 18794, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, { - "default": true, - "id": 9115, + "id": 18795, "properties": { - "facing": "north" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9116, + "id": 18796, "properties": { - "facing": "south" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9117, + "id": 18797, "properties": { - "facing": "west" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9118, + "id": 18798, "properties": { - "facing": "east" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } - } - ] - }, - "minecraft:dandelion": { - "states": [ + }, { - "default": true, - "id": 2075 + "id": 18799, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18800, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18801, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18802, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18803, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18804, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18805, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18806, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18807, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18808, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18809, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18810, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18811, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } } ] }, - "minecraft:dark_oak_button": { + "minecraft:crimson_wall_hanging_sign": { "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], "facing": [ "north", "south", "west", "east" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 8755, + "id": 5602, "properties": { - "face": "floor", "facing": "north", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8756, + "default": true, + "id": 5603, "properties": { - "face": "floor", "facing": "north", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8757, + "id": 5604, "properties": { - "face": "floor", "facing": "south", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8758, + "id": 5605, "properties": { - "face": "floor", "facing": "south", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8759, + "id": 5606, "properties": { - "face": "floor", "facing": "west", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8760, + "id": 5607, "properties": { - "face": "floor", "facing": "west", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8761, + "id": 5608, "properties": { - "face": "floor", "facing": "east", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8762, + "id": 5609, "properties": { - "face": "floor", "facing": "east", - "powered": "false" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:crimson_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 8763, + "id": 19340, "properties": { - "face": "wall", "facing": "north", - "powered": "true" + "waterlogged": "true" } }, { "default": true, - "id": 8764, + "id": 19341, "properties": { - "face": "wall", "facing": "north", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8765, + "id": 19342, "properties": { - "face": "wall", "facing": "south", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8766, + "id": 19343, "properties": { - "face": "wall", "facing": "south", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8767, + "id": 19344, "properties": { - "face": "wall", "facing": "west", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8768, + "id": 19345, "properties": { - "face": "wall", "facing": "west", - "powered": "false" + "waterlogged": "false" } }, { - "id": 8769, + "id": 19346, "properties": { - "face": "wall", "facing": "east", - "powered": "true" + "waterlogged": "true" } }, { - "id": 8770, + "id": 19347, "properties": { - "face": "wall", "facing": "east", - "powered": "false" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:crying_obsidian": { + "states": [ { - "id": 8771, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" - } - }, + "default": true, + "id": 19449 + } + ] + }, + "minecraft:cut_copper": { + "states": [ { - "id": 8772, - "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" - } - }, + "default": true, + "id": 22947 + } + ] + }, + "minecraft:cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 8773, + "id": 23294, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "type": "top", + "waterlogged": "true" } }, { - "id": 8774, + "id": 23295, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" + "type": "top", + "waterlogged": "false" } }, { - "id": 8775, + "id": 23296, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 8776, + "default": true, + "id": 23297, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 8777, + "id": 23298, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" + "type": "double", + "waterlogged": "true" } }, { - "id": 8778, + "id": 23299, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" + "type": "double", + "waterlogged": "false" } } ] }, - "minecraft:dark_oak_door": { + "minecraft:cut_copper_stairs": { "properties": { "facing": [ "north", @@ -62295,1014 +62035,999 @@ "east" ], "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" + "top", + "bottom" ], - "open": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 12142, + "id": 23196, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12143, + "id": 23197, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12144, + "id": 23198, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12145, + "id": 23199, "properties": { "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12146, + "id": 23200, "properties": { "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12147, + "id": 23201, "properties": { "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12148, + "id": 23202, "properties": { "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12149, + "id": 23203, "properties": { "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12150, + "id": 23204, "properties": { "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12151, + "id": 23205, "properties": { "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12152, + "id": 23206, "properties": { "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { "default": true, - "id": 12153, + "id": 23207, "properties": { "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12154, + "id": 23208, "properties": { "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12155, + "id": 23209, "properties": { "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12156, + "id": 23210, "properties": { "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12157, + "id": 23211, "properties": { "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12158, + "id": 23212, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12159, + "id": 23213, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12160, + "id": 23214, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12161, + "id": 23215, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12162, + "id": 23216, "properties": { "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12163, + "id": 23217, "properties": { "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12164, + "id": 23218, "properties": { "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12165, + "id": 23219, "properties": { "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12166, + "id": 23220, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12167, + "id": 23221, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12168, + "id": 23222, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12169, + "id": 23223, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12170, + "id": 23224, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12171, + "id": 23225, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12172, + "id": 23226, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12173, + "id": 23227, "properties": { "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12174, + "id": 23228, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12175, + "id": 23229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23230, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23236, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12176, + "id": 23237, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12177, + "id": 23238, "properties": { "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12178, + "id": 23239, "properties": { "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12179, + "id": 23240, "properties": { "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12180, + "id": 23241, "properties": { "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12181, + "id": 23242, "properties": { "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12182, + "id": 23243, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12183, + "id": 23244, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12184, + "id": 23245, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12185, + "id": 23246, "properties": { "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12186, + "id": 23247, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12187, + "id": 23248, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12188, + "id": 23249, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12189, + "id": 23250, "properties": { "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12190, + "id": 23251, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12191, + "id": 23252, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12192, + "id": 23253, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12193, + "id": 23254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23256, "properties": { "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12194, + "id": 23257, "properties": { "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12195, + "id": 23258, "properties": { "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12196, + "id": 23259, "properties": { "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12197, + "id": 23260, "properties": { "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12198, + "id": 23261, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12199, + "id": 23262, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12200, + "id": 23263, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12201, + "id": 23264, "properties": { "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12202, + "id": 23265, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12203, + "id": 23266, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12204, + "id": 23267, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12205, + "id": 23268, "properties": { "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } - } - ] - }, - "minecraft:dark_oak_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11726, + "id": 23269, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 11727, + "id": 23270, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 11728, + "id": 23271, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 11729, + "id": 23272, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 11730, + "id": 23273, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 11731, + "id": 23274, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 11732, + "id": 23275, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "states": [ + { + "default": true, + "id": 11081 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11294, + "properties": { + "type": "top", + "waterlogged": "true" } }, { - "id": 11733, + "id": 11295, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "type": "top", + "waterlogged": "false" } }, { - "id": 11734, + "id": 11296, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 11735, + "default": true, + "id": 11297, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 11736, + "id": 11298, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "type": "double", + "waterlogged": "true" } }, { - "id": 11737, + "id": 11299, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "states": [ + { + "default": true, + "id": 537 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11240, + "properties": { + "type": "top", + "waterlogged": "true" } }, { - "id": 11738, + "id": 11241, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "type": "top", + "waterlogged": "false" } }, { - "id": 11739, + "id": 11242, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 11740, + "default": true, + "id": 11243, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 11741, + "id": 11244, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "type": "double", + "waterlogged": "true" } }, { - "id": 11742, + "id": 11245, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10903, + "properties": { + "rotation": "0" } }, { - "id": 11743, + "id": 10904, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "rotation": "1" } }, { - "id": 11744, + "id": 10905, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "rotation": "2" } }, { - "id": 11745, + "id": 10906, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "rotation": "3" } }, { - "id": 11746, + "id": 10907, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "rotation": "4" } }, { - "id": 11747, + "id": 10908, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "rotation": "5" } }, { - "id": 11748, + "id": 10909, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "rotation": "6" } }, { - "id": 11749, + "id": 10910, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "rotation": "7" } }, { - "id": 11750, + "id": 10911, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "rotation": "8" } }, { - "id": 11751, + "id": 10912, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "rotation": "9" } }, { - "id": 11752, + "id": 10913, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "rotation": "10" } }, { - "id": 11753, + "id": 10914, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "rotation": "11" } }, { - "id": 11754, + "id": 10915, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "rotation": "12" } }, { - "id": 11755, + "id": 10916, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "rotation": "13" } }, { - "id": 11756, + "id": 10917, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "rotation": "14" } }, { - "default": true, - "id": 11757, + "id": 10918, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "rotation": "15" } } ] }, - "minecraft:dark_oak_fence_gate": { + "minecraft:cyan_bed": { "properties": { "facing": [ "north", @@ -63310,2996 +63035,3323 @@ "west", "east" ], - "in_wall": [ - "true", - "false" - ], - "open": [ + "occupied": [ "true", "false" ], - "powered": [ - "true", - "false" + "part": [ + "head", + "foot" ] }, "states": [ { - "id": 11470, + "id": 1832, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" + "occupied": "true", + "part": "head" } }, { - "id": 11471, + "id": 1833, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" + "occupied": "true", + "part": "foot" } }, { - "id": 11472, + "id": 1834, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" + "occupied": "false", + "part": "head" } }, { - "id": 11473, + "default": true, + "id": 1835, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" + "occupied": "false", + "part": "foot" } }, { - "id": 11474, + "id": 1836, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "south", + "occupied": "true", + "part": "head" } }, { - "id": 11475, + "id": 1837, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "south", + "occupied": "true", + "part": "foot" } }, { - "id": 11476, + "id": 1838, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" + "facing": "south", + "occupied": "false", + "part": "head" } }, { - "default": true, - "id": 11477, + "id": 1839, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" + "facing": "south", + "occupied": "false", + "part": "foot" } }, { - "id": 11478, + "id": 1840, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" + "facing": "west", + "occupied": "true", + "part": "head" } }, { - "id": 11479, + "id": 1841, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" + "facing": "west", + "occupied": "true", + "part": "foot" } }, { - "id": 11480, + "id": 1842, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "west", + "occupied": "false", + "part": "head" } }, { - "id": 11481, + "id": 1843, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "west", + "occupied": "false", + "part": "foot" } }, { - "id": 11482, + "id": 1844, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "east", + "occupied": "true", + "part": "head" } }, { - "id": 11483, + "id": 1845, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "east", + "occupied": "true", + "part": "foot" } }, { - "id": 11484, + "id": 1846, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" + "facing": "east", + "occupied": "false", + "part": "head" } }, { - "id": 11485, + "id": 1847, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" + "facing": "east", + "occupied": "false", + "part": "foot" } - }, + } + ] + }, + "minecraft:cyan_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 11486, + "id": 20885, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" + "candles": "1", + "lit": "true", + "waterlogged": "true" } }, { - "id": 11487, + "id": 20886, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" + "candles": "1", + "lit": "true", + "waterlogged": "false" } }, { - "id": 11488, + "id": 20887, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" + "candles": "1", + "lit": "false", + "waterlogged": "true" } }, { - "id": 11489, + "default": true, + "id": 20888, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" + "candles": "1", + "lit": "false", + "waterlogged": "false" } }, { - "id": 11490, + "id": 20889, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" + "candles": "2", + "lit": "true", + "waterlogged": "true" } }, { - "id": 11491, + "id": 20890, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" + "candles": "2", + "lit": "true", + "waterlogged": "false" } }, { - "id": 11492, + "id": 20891, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" + "candles": "2", + "lit": "false", + "waterlogged": "true" } }, { - "id": 11493, + "id": 20892, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" + "candles": "2", + "lit": "false", + "waterlogged": "false" } }, { - "id": 11494, + "id": 20893, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" + "candles": "3", + "lit": "true", + "waterlogged": "true" } }, { - "id": 11495, + "id": 20894, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" + "candles": "3", + "lit": "true", + "waterlogged": "false" } }, { - "id": 11496, + "id": 20895, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" + "candles": "3", + "lit": "false", + "waterlogged": "true" } }, { - "id": 11497, + "id": 20896, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" + "candles": "3", + "lit": "false", + "waterlogged": "false" } }, { - "id": 11498, + "id": 20897, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" + "candles": "4", + "lit": "true", + "waterlogged": "true" } }, { - "id": 11499, + "id": 20898, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" + "candles": "4", + "lit": "true", + "waterlogged": "false" } }, { - "id": 11500, + "id": 20899, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" + "candles": "4", + "lit": "false", + "waterlogged": "true" } }, { - "id": 11501, + "id": 20900, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" + "candles": "4", + "lit": "false", + "waterlogged": "false" } } ] }, - "minecraft:dark_oak_hanging_sign": { + "minecraft:cyan_candle_cake": { "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ + "lit": [ "true", "false" ] }, "states": [ { - "id": 5218, + "id": 21017, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" + "lit": "true" } }, { - "id": 5219, + "default": true, + "id": 21018, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" + "lit": "false" } - }, + } + ] + }, + "minecraft:cyan_carpet": { + "states": [ { - "id": 5220, - "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" - } - }, + "default": true, + "id": 10737 + } + ] + }, + "minecraft:cyan_concrete": { + "states": [ { - "id": 5221, + "default": true, + "id": 12737 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "states": [ + { + "default": true, + "id": 12753 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12700, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" + "facing": "north" } }, { - "id": 5222, + "id": 12701, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" + "facing": "south" } }, { - "id": 5223, + "id": 12702, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" + "facing": "west" } }, { - "id": 5224, + "id": 12703, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" + "facing": "east" } - }, + } + ] + }, + "minecraft:cyan_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 5225, + "id": 12622, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" + "facing": "north" } }, { - "id": 5226, + "id": 12623, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" + "facing": "east" } }, { - "id": 5227, + "id": 12624, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" + "facing": "south" } }, { - "id": 5228, + "id": 12625, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" + "facing": "west" } }, { - "id": 5229, + "default": true, + "id": 12626, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" + "facing": "up" } }, { - "id": 5230, + "id": 12627, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" + "facing": "down" } - }, + } + ] + }, + "minecraft:cyan_stained_glass": { + "states": [ { - "id": 5231, + "default": true, + "id": 5954 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9660, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 5232, + "id": 9661, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 5233, + "id": 9662, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 5234, + "id": 9663, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 5235, + "id": 9664, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 5236, + "id": 9665, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 5237, + "id": 9666, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 5238, + "id": 9667, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 5239, + "id": 9668, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 5240, + "id": 9669, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 5241, + "id": 9670, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 5242, + "id": 9671, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 5243, + "id": 9672, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 5244, + "id": 9673, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 5245, + "id": 9674, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 5246, + "id": 9675, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 5247, + "id": 9676, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 5248, + "id": 9677, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 5249, + "id": 9678, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 5250, + "id": 9679, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "default": true, - "id": 5251, + "id": 9680, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 5252, + "id": 9681, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 5253, + "id": 9682, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 5254, + "id": 9683, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 5255, + "id": 9684, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 5256, + "id": 9685, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 5257, + "id": 9686, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 5258, + "id": 9687, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 5259, + "id": 9688, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 5260, + "id": 9689, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 5261, + "id": 9690, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 5262, + "default": true, + "id": 9691, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } - }, + } + ] + }, + "minecraft:cyan_terracotta": { + "states": [ { - "id": 5263, + "default": true, + "id": 9365 + } + ] + }, + "minecraft:cyan_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11051, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" + "facing": "north" } }, { - "id": 5264, + "id": 11052, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" + "facing": "south" } }, { - "id": 5265, + "id": 11053, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" + "facing": "west" } }, { - "id": 5266, + "id": 11054, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" + "facing": "east" } - }, + } + ] + }, + "minecraft:cyan_wool": { + "states": [ { - "id": 5267, + "default": true, + "id": 2056 + } + ] + }, + "minecraft:damaged_anvil": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9115, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" + "facing": "north" } }, { - "id": 5268, + "id": 9116, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" + "facing": "south" } }, { - "id": 5269, + "id": 9117, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" + "facing": "west" } }, { - "id": 5270, + "id": 9118, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" + "facing": "east" } - }, + } + ] + }, + "minecraft:dandelion": { + "states": [ { - "id": 5271, + "default": true, + "id": 2075 + } + ] + }, + "minecraft:dark_oak_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8755, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" + "face": "floor", + "facing": "north", + "powered": "true" } }, { - "id": 5272, + "id": 8756, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" + "face": "floor", + "facing": "north", + "powered": "false" } }, { - "id": 5273, + "id": 8757, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" + "face": "floor", + "facing": "south", + "powered": "true" } }, { - "id": 5274, + "id": 8758, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" + "face": "floor", + "facing": "south", + "powered": "false" } }, { - "id": 5275, + "id": 8759, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" + "face": "floor", + "facing": "west", + "powered": "true" } }, { - "id": 5276, + "id": 8760, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" + "face": "floor", + "facing": "west", + "powered": "false" } }, { - "id": 5277, + "id": 8761, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" + "face": "floor", + "facing": "east", + "powered": "true" } }, { - "id": 5278, + "id": 8762, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" + "face": "floor", + "facing": "east", + "powered": "false" } }, { - "id": 5279, + "id": 8763, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" + "face": "wall", + "facing": "north", + "powered": "true" } }, { - "id": 5280, + "default": true, + "id": 8764, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" + "face": "wall", + "facing": "north", + "powered": "false" } }, { - "id": 5281, + "id": 8765, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" + "face": "wall", + "facing": "south", + "powered": "true" } - } - ] - }, - "minecraft:dark_oak_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 405, + "id": 8766, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" + "face": "wall", + "facing": "south", + "powered": "false" } }, { - "id": 406, + "id": 8767, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" + "face": "wall", + "facing": "west", + "powered": "true" } }, { - "id": 407, + "id": 8768, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" + "face": "wall", + "facing": "west", + "powered": "false" } }, { - "id": 408, + "id": 8769, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" + "face": "wall", + "facing": "east", + "powered": "true" } }, { - "id": 409, + "id": 8770, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" + "face": "wall", + "facing": "east", + "powered": "false" } }, { - "id": 410, + "id": 8771, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" + "face": "ceiling", + "facing": "north", + "powered": "true" } }, { - "id": 411, + "id": 8772, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" + "face": "ceiling", + "facing": "north", + "powered": "false" } }, { - "id": 412, + "id": 8773, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" + "face": "ceiling", + "facing": "south", + "powered": "true" } }, { - "id": 413, + "id": 8774, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" + "face": "ceiling", + "facing": "south", + "powered": "false" } }, { - "id": 414, + "id": 8775, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" + "face": "ceiling", + "facing": "west", + "powered": "true" } }, { - "id": 415, + "id": 8776, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" + "face": "ceiling", + "facing": "west", + "powered": "false" } }, { - "id": 416, + "id": 8777, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" + "face": "ceiling", + "facing": "east", + "powered": "true" } }, { - "id": 417, + "id": 8778, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" + "face": "ceiling", + "facing": "east", + "powered": "false" } - }, + } + ] + }, + "minecraft:dark_oak_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 418, + "id": 12142, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 419, + "id": 12143, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 420, + "id": 12144, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 421, + "id": 12145, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 422, + "id": 12146, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 423, + "id": 12147, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 424, + "id": 12148, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 425, + "id": 12149, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 426, + "id": 12150, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 427, + "id": 12151, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 428, + "id": 12152, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 429, + "default": true, + "id": 12153, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 430, + "id": 12154, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 431, + "id": 12155, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "default": true, - "id": 432, + "id": 12156, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } - } - ] - }, - "minecraft:dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 148, + "id": 12157, "properties": { - "axis": "x" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "default": true, - "id": 149, + "id": 12158, "properties": { - "axis": "y" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 150, + "id": 12159, "properties": { - "axis": "z" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } - } - ] - }, - "minecraft:dark_oak_planks": { - "states": [ + }, { - "default": true, - "id": 21 - } - ] - }, - "minecraft:dark_oak_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "id": 12160, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, { - "id": 5728, + "id": 12161, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12162, "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", "powered": "true" } }, { - "default": true, - "id": 5729, + "id": 12163, "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", "powered": "false" } - } - ] - }, - "minecraft:dark_oak_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + }, { - "default": true, - "id": 37, + "id": 12164, "properties": { - "stage": "0" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 38, + "id": 12165, "properties": { - "stage": "1" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:dark_oak_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4494, + "id": 12166, "properties": { - "rotation": "0", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "default": true, - "id": 4495, + "id": 12167, "properties": { - "rotation": "0", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 4496, + "id": 12168, "properties": { - "rotation": "1", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 4497, + "id": 12169, "properties": { - "rotation": "1", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 4498, + "id": 12170, "properties": { - "rotation": "2", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 4499, + "id": 12171, "properties": { - "rotation": "2", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 4500, + "id": 12172, "properties": { - "rotation": "3", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 4501, + "id": 12173, "properties": { - "rotation": "3", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 4502, + "id": 12174, "properties": { - "rotation": "4", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 4503, + "id": 12175, "properties": { - "rotation": "4", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 4504, + "id": 12176, "properties": { - "rotation": "5", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 4505, + "id": 12177, "properties": { - "rotation": "5", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 4506, + "id": 12178, "properties": { - "rotation": "6", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 4507, + "id": 12179, "properties": { - "rotation": "6", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 4508, + "id": 12180, "properties": { - "rotation": "7", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 4509, + "id": 12181, "properties": { - "rotation": "7", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 4510, + "id": 12182, "properties": { - "rotation": "8", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 4511, + "id": 12183, "properties": { - "rotation": "8", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 4512, + "id": 12184, "properties": { - "rotation": "9", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 4513, + "id": 12185, "properties": { - "rotation": "9", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 4514, + "id": 12186, "properties": { - "rotation": "10", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 4515, + "id": 12187, "properties": { - "rotation": "10", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 4516, + "id": 12188, "properties": { - "rotation": "11", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 4517, + "id": 12189, "properties": { - "rotation": "11", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 4518, + "id": 12190, "properties": { - "rotation": "12", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 4519, + "id": 12191, "properties": { - "rotation": "12", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 4520, + "id": 12192, "properties": { - "rotation": "13", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 4521, + "id": 12193, "properties": { - "rotation": "13", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 4522, + "id": 12194, "properties": { - "rotation": "14", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 4523, + "id": 12195, "properties": { - "rotation": "14", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 4524, + "id": 12196, "properties": { - "rotation": "15", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 4525, + "id": 12197, "properties": { - "rotation": "15", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:dark_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11198, + "id": 12198, "properties": { - "type": "top", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 11199, + "id": 12199, "properties": { - "type": "top", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 11200, + "id": 12200, "properties": { - "type": "bottom", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "default": true, - "id": 11201, + "id": 12201, "properties": { - "type": "bottom", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 11202, + "id": 12202, "properties": { - "type": "double", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 11203, + "id": 12203, "properties": { - "type": "double", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12204, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12205, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } } ] }, - "minecraft:dark_oak_stairs": { + "minecraft:dark_oak_fence": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "true", + "false" ], - "half": [ - "top", - "bottom" + "north": [ + "true", + "false" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "south": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { - "id": 10044, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10045, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10046, + "id": 11726, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10047, + "id": 11727, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10048, + "id": 11728, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10049, + "id": 11729, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10050, + "id": 11730, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10051, + "id": 11731, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10052, + "id": 11732, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10053, + "id": 11733, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10054, + "id": 11734, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "default": true, - "id": 10055, + "id": 11735, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10056, + "id": 11736, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10057, + "id": 11737, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10058, + "id": 11738, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10059, + "id": 11739, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10060, + "id": 11740, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10061, + "id": 11741, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10062, + "id": 11742, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10063, + "id": 11743, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10064, + "id": 11744, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10065, + "id": 11745, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10066, + "id": 11746, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10067, + "id": 11747, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10068, + "id": 11748, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10069, + "id": 11749, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10070, + "id": 11750, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10071, + "id": 11751, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10072, + "id": 11752, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10073, + "id": 11753, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10074, + "id": 11754, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10075, + "id": 11755, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10076, + "id": 11756, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10077, + "default": true, + "id": 11757, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } - }, - { - "id": 10078, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 10079, + "id": 11470, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 10080, + "id": 11471, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 10081, + "id": 11472, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 10082, + "id": 11473, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 10083, + "id": 11474, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 10084, + "id": 11475, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 10085, + "id": 11476, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 10086, + "default": true, + "id": 11477, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 10087, + "id": 11478, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 10088, + "id": 11479, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 10089, + "id": 11480, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 10090, + "id": 11481, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 10091, + "id": 11482, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 10092, + "id": 11483, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 10093, + "id": 11484, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 10094, + "id": 11485, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 10095, + "id": 11486, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 10096, + "id": 11487, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 10097, + "id": 11488, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 10098, + "id": 11489, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 10099, + "id": 11490, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 10100, + "id": 11491, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 10101, + "id": 11492, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 10102, + "id": 11493, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 10103, + "id": 11494, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 10104, + "id": 11495, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 10105, + "id": 11496, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 10106, + "id": 11497, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 10107, + "id": 11498, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 10108, + "id": 11499, "properties": { "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 10109, + "id": 11500, "properties": { "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 10110, + "id": 11501, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "0", "waterlogged": "true" } }, { - "id": 10111, + "id": 5219, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "attached": "true", + "rotation": "0", "waterlogged": "false" } }, { - "id": 10112, + "id": 5220, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "attached": "true", + "rotation": "1", "waterlogged": "true" } }, { - "id": 10113, + "id": 5221, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "attached": "true", + "rotation": "1", "waterlogged": "false" } }, { - "id": 10114, + "id": 5222, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "attached": "true", + "rotation": "2", "waterlogged": "true" } }, { - "id": 10115, + "id": 5223, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "attached": "true", + "rotation": "2", "waterlogged": "false" } }, { - "id": 10116, + "id": 5224, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "3", "waterlogged": "true" } }, { - "id": 10117, + "id": 5225, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "3", "waterlogged": "false" } }, { - "id": 10118, + "id": 5226, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "4", "waterlogged": "true" } }, { - "id": 10119, + "id": 5227, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "4", "waterlogged": "false" } }, { - "id": 10120, + "id": 5228, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "5", "waterlogged": "true" } }, { - "id": 10121, + "id": 5229, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "5", "waterlogged": "false" } }, { - "id": 10122, + "id": 5230, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "6", "waterlogged": "true" } }, { - "id": 10123, + "id": 5231, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "6", "waterlogged": "false" } - } - ] - }, - "minecraft:dark_oak_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 6346, + "id": 5232, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "7", "waterlogged": "true" } }, { - "id": 6347, + "id": 5233, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "7", "waterlogged": "false" } }, { - "id": 6348, + "id": 5234, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "8", "waterlogged": "true" } }, { - "id": 6349, + "id": 5235, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "8", "waterlogged": "false" } }, { - "id": 6350, + "id": 5236, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "9", "waterlogged": "true" } }, { - "id": 6351, + "id": 5237, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "9", "waterlogged": "false" } }, { - "id": 6352, + "id": 5238, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "10", "waterlogged": "true" } }, { - "id": 6353, + "id": 5239, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "10", "waterlogged": "false" } }, { - "id": 6354, + "id": 5240, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "11", "waterlogged": "true" } }, { - "id": 6355, + "id": 5241, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "11", "waterlogged": "false" } }, { - "id": 6356, + "id": 5242, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "12", "waterlogged": "true" } }, { - "id": 6357, + "id": 5243, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "true", + "rotation": "12", "waterlogged": "false" } }, { - "id": 6358, + "id": 5244, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "13", "waterlogged": "true" } }, { - "id": 6359, + "id": 5245, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "true", + "rotation": "13", "waterlogged": "false" } }, { - "id": 6360, + "id": 5246, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "14", "waterlogged": "true" } }, { - "default": true, - "id": 6361, + "id": 5247, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "true", + "rotation": "14", "waterlogged": "false" } }, { - "id": 6362, + "id": 5248, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "15", "waterlogged": "true" } }, { - "id": 6363, + "id": 5249, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "attached": "true", + "rotation": "15", "waterlogged": "false" } }, { - "id": 6364, + "id": 5250, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "0", "waterlogged": "true" } }, { - "id": 6365, + "default": true, + "id": 5251, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "0", "waterlogged": "false" } }, { - "id": 6366, + "id": 5252, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "1", "waterlogged": "true" } }, { - "id": 6367, + "id": 5253, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "1", "waterlogged": "false" } }, { - "id": 6368, + "id": 5254, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "2", "waterlogged": "true" } }, { - "id": 6369, + "id": 5255, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "2", "waterlogged": "false" } }, { - "id": 6370, + "id": 5256, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "3", "waterlogged": "true" } }, { - "id": 6371, + "id": 5257, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "3", "waterlogged": "false" } }, { - "id": 6372, + "id": 5258, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "4", "waterlogged": "true" } }, { - "id": 6373, + "id": 5259, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "4", "waterlogged": "false" } }, { - "id": 6374, + "id": 5260, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "5", "waterlogged": "true" } }, { - "id": 6375, + "id": 5261, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "5", "waterlogged": "false" } }, { - "id": 6376, + "id": 5262, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "6", "waterlogged": "true" } }, { - "id": 6377, + "id": 5263, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "6", "waterlogged": "false" } }, { - "id": 6378, + "id": 5264, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "7", "waterlogged": "true" } }, { - "id": 6379, + "id": 5265, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "7", "waterlogged": "false" } }, { - "id": 6380, + "id": 5266, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "8", "waterlogged": "true" } }, { - "id": 6381, + "id": 5267, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "8", "waterlogged": "false" } }, { - "id": 6382, + "id": 5268, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "9", "waterlogged": "true" } }, { - "id": 6383, + "id": 5269, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "9", "waterlogged": "false" } }, { - "id": 6384, + "id": 5270, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "10", "waterlogged": "true" } }, { - "id": 6385, + "id": 5271, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "10", "waterlogged": "false" } }, { - "id": 6386, + "id": 5272, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "11", "waterlogged": "true" } }, { - "id": 6387, + "id": 5273, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "11", "waterlogged": "false" } }, { - "id": 6388, + "id": 5274, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "12", "waterlogged": "true" } }, { - "id": 6389, + "id": 5275, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "12", "waterlogged": "false" } }, { - "id": 6390, + "id": 5276, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "13", "waterlogged": "true" } }, { - "id": 6391, + "id": 5277, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "13", "waterlogged": "false" } }, { - "id": 6392, + "id": 5278, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "14", "waterlogged": "true" } }, { - "id": 6393, + "id": 5279, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "14", "waterlogged": "false" } }, { - "id": 6394, + "id": 5280, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "15", "waterlogged": "true" } }, { - "id": 6395, + "id": 5281, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "15", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dark_oak_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 6396, + "id": 405, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "distance": "1", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6397, + "id": 406, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "distance": "1", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6398, + "id": 407, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "distance": "1", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6399, + "id": 408, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "distance": "1", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6400, + "id": 409, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "distance": "2", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6401, + "id": 410, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "distance": "2", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6402, + "id": 411, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "2", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6403, + "id": 412, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "2", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6404, + "id": 413, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "3", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6405, + "id": 414, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "3", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6406, + "id": 415, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "3", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6407, + "id": 416, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "3", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6408, + "id": 417, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "4", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6409, + "id": 418, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "4", + "persistent": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:dark_oak_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5586, + "id": 419, "properties": { - "facing": "north", + "distance": "4", + "persistent": "false", "waterlogged": "true" } }, { - "default": true, - "id": 5587, + "id": 420, "properties": { - "facing": "north", + "distance": "4", + "persistent": "false", "waterlogged": "false" } }, { - "id": 5588, + "id": 421, "properties": { - "facing": "south", + "distance": "5", + "persistent": "true", "waterlogged": "true" } }, { - "id": 5589, + "id": 422, "properties": { - "facing": "south", + "distance": "5", + "persistent": "true", "waterlogged": "false" } }, { - "id": 5590, + "id": 423, "properties": { - "facing": "west", + "distance": "5", + "persistent": "false", "waterlogged": "true" } }, { - "id": 5591, + "id": 424, "properties": { - "facing": "west", + "distance": "5", + "persistent": "false", "waterlogged": "false" } }, { - "id": 5592, + "id": 425, "properties": { - "facing": "east", + "distance": "6", + "persistent": "true", "waterlogged": "true" } }, { - "id": 5593, + "id": 426, "properties": { - "facing": "east", + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 427, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 428, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 429, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 430, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 431, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 432, + "properties": { + "distance": "7", + "persistent": "false", "waterlogged": "false" } } ] }, - "minecraft:dark_oak_wall_sign": { + "minecraft:dark_oak_log": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5728, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5729, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], "waterlogged": [ "true", @@ -66308,103 +66360,233 @@ }, "states": [ { - "id": 4810, + "id": 4494, "properties": { - "facing": "north", + "rotation": "0", "waterlogged": "true" } }, { "default": true, - "id": 4811, + "id": 4495, "properties": { - "facing": "north", + "rotation": "0", "waterlogged": "false" } }, { - "id": 4812, + "id": 4496, "properties": { - "facing": "south", + "rotation": "1", "waterlogged": "true" } }, { - "id": 4813, + "id": 4497, "properties": { - "facing": "south", + "rotation": "1", "waterlogged": "false" } }, { - "id": 4814, + "id": 4498, "properties": { - "facing": "west", + "rotation": "2", "waterlogged": "true" } }, { - "id": 4815, + "id": 4499, "properties": { - "facing": "west", + "rotation": "2", "waterlogged": "false" } }, { - "id": 4816, + "id": 4500, "properties": { - "facing": "east", + "rotation": "3", "waterlogged": "true" } }, { - "id": 4817, + "id": 4501, "properties": { - "facing": "east", + "rotation": "3", "waterlogged": "false" } - } - ] - }, - "minecraft:dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 207, + "id": 4502, "properties": { - "axis": "x" + "rotation": "4", + "waterlogged": "true" } }, { - "default": true, - "id": 208, + "id": 4503, "properties": { - "axis": "y" + "rotation": "4", + "waterlogged": "false" } }, { - "id": 209, + "id": 4504, "properties": { - "axis": "z" + "rotation": "5", + "waterlogged": "true" } - } - ] - }, - "minecraft:dark_prismarine": { - "states": [ + }, { - "default": true, - "id": 10465 + "id": 4505, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4506, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4507, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4508, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4509, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4510, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4511, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4512, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4513, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4514, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4515, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4516, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4517, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4518, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4519, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4520, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4521, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4522, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4523, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4524, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4525, + "properties": { + "rotation": "15", + "waterlogged": "false" + } } ] }, - "minecraft:dark_prismarine_slab": { + "minecraft:dark_oak_slab": { "properties": { "type": [ "top", @@ -66418,21 +66600,21 @@ }, "states": [ { - "id": 10718, + "id": 11198, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 10719, + "id": 11199, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 10720, + "id": 11200, "properties": { "type": "bottom", "waterlogged": "true" @@ -66440,21 +66622,21 @@ }, { "default": true, - "id": 10721, + "id": 11201, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 10722, + "id": 11202, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 10723, + "id": 11203, "properties": { "type": "double", "waterlogged": "false" @@ -66462,7 +66644,7 @@ } ] }, - "minecraft:dark_prismarine_stairs": { + "minecraft:dark_oak_stairs": { "properties": { "facing": [ "north", @@ -66488,7 +66670,7 @@ }, "states": [ { - "id": 10626, + "id": 10044, "properties": { "facing": "north", "half": "top", @@ -66497,7 +66679,7 @@ } }, { - "id": 10627, + "id": 10045, "properties": { "facing": "north", "half": "top", @@ -66506,7 +66688,7 @@ } }, { - "id": 10628, + "id": 10046, "properties": { "facing": "north", "half": "top", @@ -66515,7 +66697,7 @@ } }, { - "id": 10629, + "id": 10047, "properties": { "facing": "north", "half": "top", @@ -66524,7 +66706,7 @@ } }, { - "id": 10630, + "id": 10048, "properties": { "facing": "north", "half": "top", @@ -66533,7 +66715,7 @@ } }, { - "id": 10631, + "id": 10049, "properties": { "facing": "north", "half": "top", @@ -66542,7 +66724,7 @@ } }, { - "id": 10632, + "id": 10050, "properties": { "facing": "north", "half": "top", @@ -66551,7 +66733,7 @@ } }, { - "id": 10633, + "id": 10051, "properties": { "facing": "north", "half": "top", @@ -66560,7 +66742,7 @@ } }, { - "id": 10634, + "id": 10052, "properties": { "facing": "north", "half": "top", @@ -66569,7 +66751,7 @@ } }, { - "id": 10635, + "id": 10053, "properties": { "facing": "north", "half": "top", @@ -66578,7 +66760,7 @@ } }, { - "id": 10636, + "id": 10054, "properties": { "facing": "north", "half": "bottom", @@ -66588,7 +66770,7 @@ }, { "default": true, - "id": 10637, + "id": 10055, "properties": { "facing": "north", "half": "bottom", @@ -66597,7 +66779,7 @@ } }, { - "id": 10638, + "id": 10056, "properties": { "facing": "north", "half": "bottom", @@ -66606,7 +66788,7 @@ } }, { - "id": 10639, + "id": 10057, "properties": { "facing": "north", "half": "bottom", @@ -66615,7 +66797,7 @@ } }, { - "id": 10640, + "id": 10058, "properties": { "facing": "north", "half": "bottom", @@ -66624,7 +66806,7 @@ } }, { - "id": 10641, + "id": 10059, "properties": { "facing": "north", "half": "bottom", @@ -66633,7 +66815,7 @@ } }, { - "id": 10642, + "id": 10060, "properties": { "facing": "north", "half": "bottom", @@ -66642,7 +66824,7 @@ } }, { - "id": 10643, + "id": 10061, "properties": { "facing": "north", "half": "bottom", @@ -66651,7 +66833,7 @@ } }, { - "id": 10644, + "id": 10062, "properties": { "facing": "north", "half": "bottom", @@ -66660,7 +66842,7 @@ } }, { - "id": 10645, + "id": 10063, "properties": { "facing": "north", "half": "bottom", @@ -66669,7 +66851,7 @@ } }, { - "id": 10646, + "id": 10064, "properties": { "facing": "south", "half": "top", @@ -66678,7 +66860,7 @@ } }, { - "id": 10647, + "id": 10065, "properties": { "facing": "south", "half": "top", @@ -66687,7 +66869,7 @@ } }, { - "id": 10648, + "id": 10066, "properties": { "facing": "south", "half": "top", @@ -66696,7 +66878,7 @@ } }, { - "id": 10649, + "id": 10067, "properties": { "facing": "south", "half": "top", @@ -66705,7 +66887,7 @@ } }, { - "id": 10650, + "id": 10068, "properties": { "facing": "south", "half": "top", @@ -66714,7 +66896,7 @@ } }, { - "id": 10651, + "id": 10069, "properties": { "facing": "south", "half": "top", @@ -66723,7 +66905,7 @@ } }, { - "id": 10652, + "id": 10070, "properties": { "facing": "south", "half": "top", @@ -66732,7 +66914,7 @@ } }, { - "id": 10653, + "id": 10071, "properties": { "facing": "south", "half": "top", @@ -66741,7 +66923,7 @@ } }, { - "id": 10654, + "id": 10072, "properties": { "facing": "south", "half": "top", @@ -66750,7 +66932,7 @@ } }, { - "id": 10655, + "id": 10073, "properties": { "facing": "south", "half": "top", @@ -66759,7 +66941,7 @@ } }, { - "id": 10656, + "id": 10074, "properties": { "facing": "south", "half": "bottom", @@ -66768,7 +66950,7 @@ } }, { - "id": 10657, + "id": 10075, "properties": { "facing": "south", "half": "bottom", @@ -66777,7 +66959,7 @@ } }, { - "id": 10658, + "id": 10076, "properties": { "facing": "south", "half": "bottom", @@ -66786,7 +66968,7 @@ } }, { - "id": 10659, + "id": 10077, "properties": { "facing": "south", "half": "bottom", @@ -66795,7 +66977,7 @@ } }, { - "id": 10660, + "id": 10078, "properties": { "facing": "south", "half": "bottom", @@ -66804,7 +66986,7 @@ } }, { - "id": 10661, + "id": 10079, "properties": { "facing": "south", "half": "bottom", @@ -66813,7 +66995,7 @@ } }, { - "id": 10662, + "id": 10080, "properties": { "facing": "south", "half": "bottom", @@ -66822,7 +67004,7 @@ } }, { - "id": 10663, + "id": 10081, "properties": { "facing": "south", "half": "bottom", @@ -66831,7 +67013,7 @@ } }, { - "id": 10664, + "id": 10082, "properties": { "facing": "south", "half": "bottom", @@ -66840,7 +67022,7 @@ } }, { - "id": 10665, + "id": 10083, "properties": { "facing": "south", "half": "bottom", @@ -66849,7 +67031,7 @@ } }, { - "id": 10666, + "id": 10084, "properties": { "facing": "west", "half": "top", @@ -66858,7 +67040,7 @@ } }, { - "id": 10667, + "id": 10085, "properties": { "facing": "west", "half": "top", @@ -66867,7 +67049,7 @@ } }, { - "id": 10668, + "id": 10086, "properties": { "facing": "west", "half": "top", @@ -66876,7 +67058,7 @@ } }, { - "id": 10669, + "id": 10087, "properties": { "facing": "west", "half": "top", @@ -66885,7 +67067,7 @@ } }, { - "id": 10670, + "id": 10088, "properties": { "facing": "west", "half": "top", @@ -66894,7 +67076,7 @@ } }, { - "id": 10671, + "id": 10089, "properties": { "facing": "west", "half": "top", @@ -66903,7 +67085,7 @@ } }, { - "id": 10672, + "id": 10090, "properties": { "facing": "west", "half": "top", @@ -66912,7 +67094,7 @@ } }, { - "id": 10673, + "id": 10091, "properties": { "facing": "west", "half": "top", @@ -66921,7 +67103,7 @@ } }, { - "id": 10674, + "id": 10092, "properties": { "facing": "west", "half": "top", @@ -66930,7 +67112,7 @@ } }, { - "id": 10675, + "id": 10093, "properties": { "facing": "west", "half": "top", @@ -66939,7 +67121,7 @@ } }, { - "id": 10676, + "id": 10094, "properties": { "facing": "west", "half": "bottom", @@ -66948,7 +67130,7 @@ } }, { - "id": 10677, + "id": 10095, "properties": { "facing": "west", "half": "bottom", @@ -66957,7 +67139,7 @@ } }, { - "id": 10678, + "id": 10096, "properties": { "facing": "west", "half": "bottom", @@ -66966,7 +67148,7 @@ } }, { - "id": 10679, + "id": 10097, "properties": { "facing": "west", "half": "bottom", @@ -66975,7 +67157,7 @@ } }, { - "id": 10680, + "id": 10098, "properties": { "facing": "west", "half": "bottom", @@ -66984,7 +67166,7 @@ } }, { - "id": 10681, + "id": 10099, "properties": { "facing": "west", "half": "bottom", @@ -66993,7 +67175,7 @@ } }, { - "id": 10682, + "id": 10100, "properties": { "facing": "west", "half": "bottom", @@ -67002,7 +67184,7 @@ } }, { - "id": 10683, + "id": 10101, "properties": { "facing": "west", "half": "bottom", @@ -67011,7 +67193,7 @@ } }, { - "id": 10684, + "id": 10102, "properties": { "facing": "west", "half": "bottom", @@ -67020,7 +67202,7 @@ } }, { - "id": 10685, + "id": 10103, "properties": { "facing": "west", "half": "bottom", @@ -67029,7 +67211,7 @@ } }, { - "id": 10686, + "id": 10104, "properties": { "facing": "east", "half": "top", @@ -67038,7 +67220,7 @@ } }, { - "id": 10687, + "id": 10105, "properties": { "facing": "east", "half": "top", @@ -67047,7 +67229,7 @@ } }, { - "id": 10688, + "id": 10106, "properties": { "facing": "east", "half": "top", @@ -67056,7 +67238,7 @@ } }, { - "id": 10689, + "id": 10107, "properties": { "facing": "east", "half": "top", @@ -67065,7 +67247,7 @@ } }, { - "id": 10690, + "id": 10108, "properties": { "facing": "east", "half": "top", @@ -67074,7 +67256,7 @@ } }, { - "id": 10691, + "id": 10109, "properties": { "facing": "east", "half": "top", @@ -67083,7 +67265,7 @@ } }, { - "id": 10692, + "id": 10110, "properties": { "facing": "east", "half": "top", @@ -67092,7 +67274,7 @@ } }, { - "id": 10693, + "id": 10111, "properties": { "facing": "east", "half": "top", @@ -67101,7 +67283,7 @@ } }, { - "id": 10694, + "id": 10112, "properties": { "facing": "east", "half": "top", @@ -67110,7 +67292,7 @@ } }, { - "id": 10695, + "id": 10113, "properties": { "facing": "east", "half": "top", @@ -67119,7 +67301,7 @@ } }, { - "id": 10696, + "id": 10114, "properties": { "facing": "east", "half": "bottom", @@ -67128,7 +67310,7 @@ } }, { - "id": 10697, + "id": 10115, "properties": { "facing": "east", "half": "bottom", @@ -67137,7 +67319,7 @@ } }, { - "id": 10698, + "id": 10116, "properties": { "facing": "east", "half": "bottom", @@ -67146,7 +67328,7 @@ } }, { - "id": 10699, + "id": 10117, "properties": { "facing": "east", "half": "bottom", @@ -67155,7 +67337,7 @@ } }, { - "id": 10700, + "id": 10118, "properties": { "facing": "east", "half": "bottom", @@ -67164,7 +67346,7 @@ } }, { - "id": 10701, + "id": 10119, "properties": { "facing": "east", "half": "bottom", @@ -67173,7 +67355,7 @@ } }, { - "id": 10702, + "id": 10120, "properties": { "facing": "east", "half": "bottom", @@ -67182,7 +67364,7 @@ } }, { - "id": 10703, + "id": 10121, "properties": { "facing": "east", "half": "bottom", @@ -67191,7 +67373,7 @@ } }, { - "id": 10704, + "id": 10122, "properties": { "facing": "east", "half": "bottom", @@ -67200,7 +67382,7 @@ } }, { - "id": 10705, + "id": 10123, "properties": { "facing": "east", "half": "bottom", @@ -67210,830 +67392,676 @@ } ] }, - "minecraft:daylight_detector": { + "minecraft:dark_oak_trapdoor": { "properties": { - "inverted": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ "true", "false" ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "id": 9191, + "id": 6345, "properties": { - "inverted": "true", - "power": "0" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9192, + "id": 6346, "properties": { - "inverted": "true", - "power": "1" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9193, + "id": 6347, "properties": { - "inverted": "true", - "power": "2" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9194, + "id": 6348, "properties": { - "inverted": "true", - "power": "3" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9195, + "id": 6349, "properties": { - "inverted": "true", - "power": "4" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9196, + "id": 6350, "properties": { - "inverted": "true", - "power": "5" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9197, + "id": 6351, "properties": { - "inverted": "true", - "power": "6" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9198, + "id": 6352, "properties": { - "inverted": "true", - "power": "7" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9199, + "id": 6353, "properties": { - "inverted": "true", - "power": "8" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9200, + "id": 6354, "properties": { - "inverted": "true", - "power": "9" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9201, + "id": 6355, "properties": { - "inverted": "true", - "power": "10" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9202, + "id": 6356, "properties": { - "inverted": "true", - "power": "11" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9203, + "id": 6357, "properties": { - "inverted": "true", - "power": "12" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9204, + "id": 6358, "properties": { - "inverted": "true", - "power": "13" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9205, + "id": 6359, "properties": { - "inverted": "true", - "power": "14" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9206, + "default": true, + "id": 6360, "properties": { - "inverted": "true", - "power": "15" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "default": true, - "id": 9207, + "id": 6361, "properties": { - "inverted": "false", - "power": "0" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9208, + "id": 6362, "properties": { - "inverted": "false", - "power": "1" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9209, + "id": 6363, "properties": { - "inverted": "false", - "power": "2" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9210, + "id": 6364, "properties": { - "inverted": "false", - "power": "3" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9211, + "id": 6365, "properties": { - "inverted": "false", - "power": "4" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9212, + "id": 6366, "properties": { - "inverted": "false", - "power": "5" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9213, + "id": 6367, "properties": { - "inverted": "false", - "power": "6" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9214, + "id": 6368, "properties": { - "inverted": "false", - "power": "7" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9215, + "id": 6369, "properties": { - "inverted": "false", - "power": "8" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9216, + "id": 6370, "properties": { - "inverted": "false", - "power": "9" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9217, + "id": 6371, "properties": { - "inverted": "false", - "power": "10" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9218, + "id": 6372, "properties": { - "inverted": "false", - "power": "11" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9219, + "id": 6373, "properties": { - "inverted": "false", - "power": "12" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9220, + "id": 6374, "properties": { - "inverted": "false", - "power": "13" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9221, + "id": 6375, "properties": { - "inverted": "false", - "power": "14" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9222, + "id": 6376, "properties": { - "inverted": "false", - "power": "15" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:dead_brain_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12815, + "id": 6377, "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12816, + "id": 6378, "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:dead_brain_coral_block": { - "states": [ - { - "default": true, - "id": 12804 - } - ] - }, - "minecraft:dead_brain_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12835, + "id": 6379, "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12836, + "id": 6380, "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:dead_brain_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12861, + "id": 6381, "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 12862, + "id": 6382, "properties": { - "facing": "north", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 12863, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12864, - "properties": { - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 12865, + "id": 6383, "properties": { "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 12866, + "id": 6384, "properties": { "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 12867, - "properties": { - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 12868, - "properties": { - "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12817, + "id": 6385, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12818, + "id": 6386, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:dead_bubble_coral_block": { - "states": [ - { - "default": true, - "id": 12805 - } - ] - }, - "minecraft:dead_bubble_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12837, - "properties": { - "waterlogged": "true" - } }, { - "id": 12838, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bubble_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12869, + "id": 6387, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12870, + "id": 6388, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 12871, + "id": 6389, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 12872, + "id": 6390, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 12873, + "id": 6391, "properties": { "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 12874, + "id": 6392, "properties": { "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 12875, + "id": 6393, "properties": { "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12876, + "id": 6394, "properties": { "facing": "east", - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_bush": { - "states": [ - { - "default": true, - "id": 2007 - } - ] - }, - "minecraft:dead_fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12819, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12820, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_block": { - "states": [ - { - "default": true, - "id": 12806 - } - ] - }, - "minecraft:dead_fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12839, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12840, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12877, - "properties": { - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 12878, - "properties": { - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 12879, - "properties": { - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 12880, - "properties": { - "facing": "south", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 12881, + "id": 6395, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12882, + "id": 6396, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 12883, + "id": 6397, "properties": { "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 12884, + "id": 6398, "properties": { "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:dead_horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12821, - "properties": { - "waterlogged": "true" - } - }, - { - "id": 12822, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_block": { - "states": [ - { - "default": true, - "id": 12807 - } - ] - }, - "minecraft:dead_horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12841, - "properties": { - "waterlogged": "true" - } }, { - "id": 12842, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12885, + "id": 6399, "properties": { - "facing": "north", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 12886, + "id": 6400, "properties": { - "facing": "north", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 12887, + "id": 6401, "properties": { - "facing": "south", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12888, + "id": 6402, "properties": { - "facing": "south", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 12889, + "id": 6403, "properties": { - "facing": "west", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12890, + "id": 6404, "properties": { - "facing": "west", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 12891, + "id": 6405, "properties": { "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 12892, + "id": 6406, "properties": { "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:dead_tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12813, - "properties": { - "waterlogged": "true" - } }, { - "id": 12814, - "properties": { - "waterlogged": "false" - } - } - ] - }, - "minecraft:dead_tube_coral_block": { - "states": [ - { - "default": true, - "id": 12803 - } - ] - }, - "minecraft:dead_tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "default": true, - "id": 12833, + "id": 6407, "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 12834, + "id": 6408, "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } } ] }, - "minecraft:dead_tube_coral_wall_fan": { + "minecraft:dark_oak_wall_hanging_sign": { "properties": { "facing": [ "north", @@ -68048,57 +68076,57 @@ }, "states": [ { - "default": true, - "id": 12853, + "id": 5586, "properties": { "facing": "north", "waterlogged": "true" } }, { - "id": 12854, + "default": true, + "id": 5587, "properties": { "facing": "north", "waterlogged": "false" } }, { - "id": 12855, + "id": 5588, "properties": { "facing": "south", "waterlogged": "true" } }, { - "id": 12856, + "id": 5589, "properties": { "facing": "south", "waterlogged": "false" } }, { - "id": 12857, + "id": 5590, "properties": { "facing": "west", "waterlogged": "true" } }, { - "id": 12858, + "id": 5591, "properties": { "facing": "west", "waterlogged": "false" } }, { - "id": 12859, + "id": 5592, "properties": { "facing": "east", "waterlogged": "true" } }, { - "id": 12860, + "id": 5593, "properties": { "facing": "east", "waterlogged": "false" @@ -68106,12 +68134,8 @@ } ] }, - "minecraft:decorated_pot": { + "minecraft:dark_oak_wall_sign": { "properties": { - "cracked": [ - "true", - "false" - ], "facing": [ "north", "south", @@ -68125,137 +68149,65 @@ }, "states": [ { - "id": 24260, - "properties": { - "cracked": "true", - "facing": "north", - "waterlogged": "true" - } - }, - { - "id": 24261, - "properties": { - "cracked": "true", - "facing": "north", - "waterlogged": "false" - } - }, - { - "id": 24262, - "properties": { - "cracked": "true", - "facing": "south", - "waterlogged": "true" - } - }, - { - "id": 24263, - "properties": { - "cracked": "true", - "facing": "south", - "waterlogged": "false" - } - }, - { - "id": 24264, - "properties": { - "cracked": "true", - "facing": "west", - "waterlogged": "true" - } - }, - { - "id": 24265, - "properties": { - "cracked": "true", - "facing": "west", - "waterlogged": "false" - } - }, - { - "id": 24266, - "properties": { - "cracked": "true", - "facing": "east", - "waterlogged": "true" - } - }, - { - "id": 24267, - "properties": { - "cracked": "true", - "facing": "east", - "waterlogged": "false" - } - }, - { - "id": 24268, + "id": 4810, "properties": { - "cracked": "false", "facing": "north", "waterlogged": "true" } }, { "default": true, - "id": 24269, + "id": 4811, "properties": { - "cracked": "false", "facing": "north", "waterlogged": "false" } }, { - "id": 24270, + "id": 4812, "properties": { - "cracked": "false", "facing": "south", "waterlogged": "true" } }, { - "id": 24271, + "id": 4813, "properties": { - "cracked": "false", "facing": "south", "waterlogged": "false" } }, { - "id": 24272, + "id": 4814, "properties": { - "cracked": "false", "facing": "west", "waterlogged": "true" } }, { - "id": 24273, + "id": 4815, "properties": { - "cracked": "false", "facing": "west", "waterlogged": "false" } }, { - "id": 24274, + "id": 4816, "properties": { - "cracked": "false", "facing": "east", "waterlogged": "true" } }, { - "id": 24275, + "id": 4817, "properties": { - "cracked": "false", "facing": "east", "waterlogged": "false" } } ] }, - "minecraft:deepslate": { + "minecraft:dark_oak_wood": { "properties": { "axis": [ "x", @@ -68265,27 +68217,35 @@ }, "states": [ { - "id": 22590, + "id": 207, "properties": { "axis": "x" } }, { "default": true, - "id": 22591, + "id": 208, "properties": { "axis": "y" } }, { - "id": 22592, + "id": 209, "properties": { "axis": "z" } } ] }, - "minecraft:deepslate_brick_slab": { + "minecraft:dark_prismarine": { + "states": [ + { + "default": true, + "id": 10465 + } + ] + }, + "minecraft:dark_prismarine_slab": { "properties": { "type": [ "top", @@ -68299,21 +68259,21 @@ }, "states": [ { - "id": 23907, + "id": 10718, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23908, + "id": 10719, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23909, + "id": 10720, "properties": { "type": "bottom", "waterlogged": "true" @@ -68321,21 +68281,21 @@ }, { "default": true, - "id": 23910, + "id": 10721, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23911, + "id": 10722, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23912, + "id": 10723, "properties": { "type": "double", "waterlogged": "false" @@ -68343,7 +68303,7 @@ } ] }, - "minecraft:deepslate_brick_stairs": { + "minecraft:dark_prismarine_stairs": { "properties": { "facing": [ "north", @@ -68369,7 +68329,7 @@ }, "states": [ { - "id": 23827, + "id": 10626, "properties": { "facing": "north", "half": "top", @@ -68378,7 +68338,7 @@ } }, { - "id": 23828, + "id": 10627, "properties": { "facing": "north", "half": "top", @@ -68387,7 +68347,7 @@ } }, { - "id": 23829, + "id": 10628, "properties": { "facing": "north", "half": "top", @@ -68396,7 +68356,7 @@ } }, { - "id": 23830, + "id": 10629, "properties": { "facing": "north", "half": "top", @@ -68405,7 +68365,7 @@ } }, { - "id": 23831, + "id": 10630, "properties": { "facing": "north", "half": "top", @@ -68414,7 +68374,7 @@ } }, { - "id": 23832, + "id": 10631, "properties": { "facing": "north", "half": "top", @@ -68423,7 +68383,7 @@ } }, { - "id": 23833, + "id": 10632, "properties": { "facing": "north", "half": "top", @@ -68432,7 +68392,7 @@ } }, { - "id": 23834, + "id": 10633, "properties": { "facing": "north", "half": "top", @@ -68441,7 +68401,7 @@ } }, { - "id": 23835, + "id": 10634, "properties": { "facing": "north", "half": "top", @@ -68450,7 +68410,7 @@ } }, { - "id": 23836, + "id": 10635, "properties": { "facing": "north", "half": "top", @@ -68459,7 +68419,7 @@ } }, { - "id": 23837, + "id": 10636, "properties": { "facing": "north", "half": "bottom", @@ -68469,7 +68429,7 @@ }, { "default": true, - "id": 23838, + "id": 10637, "properties": { "facing": "north", "half": "bottom", @@ -68478,7 +68438,7 @@ } }, { - "id": 23839, + "id": 10638, "properties": { "facing": "north", "half": "bottom", @@ -68487,7 +68447,7 @@ } }, { - "id": 23840, + "id": 10639, "properties": { "facing": "north", "half": "bottom", @@ -68496,7 +68456,7 @@ } }, { - "id": 23841, + "id": 10640, "properties": { "facing": "north", "half": "bottom", @@ -68505,7 +68465,7 @@ } }, { - "id": 23842, + "id": 10641, "properties": { "facing": "north", "half": "bottom", @@ -68514,7 +68474,7 @@ } }, { - "id": 23843, + "id": 10642, "properties": { "facing": "north", "half": "bottom", @@ -68523,7 +68483,7 @@ } }, { - "id": 23844, + "id": 10643, "properties": { "facing": "north", "half": "bottom", @@ -68532,7 +68492,7 @@ } }, { - "id": 23845, + "id": 10644, "properties": { "facing": "north", "half": "bottom", @@ -68541,7 +68501,7 @@ } }, { - "id": 23846, + "id": 10645, "properties": { "facing": "north", "half": "bottom", @@ -68550,7 +68510,7 @@ } }, { - "id": 23847, + "id": 10646, "properties": { "facing": "south", "half": "top", @@ -68559,7 +68519,7 @@ } }, { - "id": 23848, + "id": 10647, "properties": { "facing": "south", "half": "top", @@ -68568,7 +68528,7 @@ } }, { - "id": 23849, + "id": 10648, "properties": { "facing": "south", "half": "top", @@ -68577,7 +68537,7 @@ } }, { - "id": 23850, + "id": 10649, "properties": { "facing": "south", "half": "top", @@ -68586,7 +68546,7 @@ } }, { - "id": 23851, + "id": 10650, "properties": { "facing": "south", "half": "top", @@ -68595,7 +68555,7 @@ } }, { - "id": 23852, + "id": 10651, "properties": { "facing": "south", "half": "top", @@ -68604,7 +68564,7 @@ } }, { - "id": 23853, + "id": 10652, "properties": { "facing": "south", "half": "top", @@ -68613,7 +68573,7 @@ } }, { - "id": 23854, + "id": 10653, "properties": { "facing": "south", "half": "top", @@ -68622,7 +68582,7 @@ } }, { - "id": 23855, + "id": 10654, "properties": { "facing": "south", "half": "top", @@ -68631,7 +68591,7 @@ } }, { - "id": 23856, + "id": 10655, "properties": { "facing": "south", "half": "top", @@ -68640,7 +68600,7 @@ } }, { - "id": 23857, + "id": 10656, "properties": { "facing": "south", "half": "bottom", @@ -68649,7 +68609,7 @@ } }, { - "id": 23858, + "id": 10657, "properties": { "facing": "south", "half": "bottom", @@ -68658,7 +68618,7 @@ } }, { - "id": 23859, + "id": 10658, "properties": { "facing": "south", "half": "bottom", @@ -68667,7 +68627,7 @@ } }, { - "id": 23860, + "id": 10659, "properties": { "facing": "south", "half": "bottom", @@ -68676,7 +68636,7 @@ } }, { - "id": 23861, + "id": 10660, "properties": { "facing": "south", "half": "bottom", @@ -68685,7 +68645,7 @@ } }, { - "id": 23862, + "id": 10661, "properties": { "facing": "south", "half": "bottom", @@ -68694,7 +68654,7 @@ } }, { - "id": 23863, + "id": 10662, "properties": { "facing": "south", "half": "bottom", @@ -68703,7 +68663,7 @@ } }, { - "id": 23864, + "id": 10663, "properties": { "facing": "south", "half": "bottom", @@ -68712,7 +68672,7 @@ } }, { - "id": 23865, + "id": 10664, "properties": { "facing": "south", "half": "bottom", @@ -68721,7 +68681,7 @@ } }, { - "id": 23866, + "id": 10665, "properties": { "facing": "south", "half": "bottom", @@ -68730,7 +68690,7 @@ } }, { - "id": 23867, + "id": 10666, "properties": { "facing": "west", "half": "top", @@ -68739,7 +68699,7 @@ } }, { - "id": 23868, + "id": 10667, "properties": { "facing": "west", "half": "top", @@ -68748,7 +68708,7 @@ } }, { - "id": 23869, + "id": 10668, "properties": { "facing": "west", "half": "top", @@ -68757,7 +68717,7 @@ } }, { - "id": 23870, + "id": 10669, "properties": { "facing": "west", "half": "top", @@ -68766,7 +68726,7 @@ } }, { - "id": 23871, + "id": 10670, "properties": { "facing": "west", "half": "top", @@ -68775,7 +68735,7 @@ } }, { - "id": 23872, + "id": 10671, "properties": { "facing": "west", "half": "top", @@ -68784,7 +68744,7 @@ } }, { - "id": 23873, + "id": 10672, "properties": { "facing": "west", "half": "top", @@ -68793,7 +68753,7 @@ } }, { - "id": 23874, + "id": 10673, "properties": { "facing": "west", "half": "top", @@ -68802,7 +68762,7 @@ } }, { - "id": 23875, + "id": 10674, "properties": { "facing": "west", "half": "top", @@ -68811,7 +68771,7 @@ } }, { - "id": 23876, + "id": 10675, "properties": { "facing": "west", "half": "top", @@ -68820,7 +68780,7 @@ } }, { - "id": 23877, + "id": 10676, "properties": { "facing": "west", "half": "bottom", @@ -68829,7 +68789,7 @@ } }, { - "id": 23878, + "id": 10677, "properties": { "facing": "west", "half": "bottom", @@ -68838,7 +68798,7 @@ } }, { - "id": 23879, + "id": 10678, "properties": { "facing": "west", "half": "bottom", @@ -68847,7 +68807,7 @@ } }, { - "id": 23880, + "id": 10679, "properties": { "facing": "west", "half": "bottom", @@ -68856,7 +68816,7 @@ } }, { - "id": 23881, + "id": 10680, "properties": { "facing": "west", "half": "bottom", @@ -68865,7 +68825,7 @@ } }, { - "id": 23882, + "id": 10681, "properties": { "facing": "west", "half": "bottom", @@ -68874,7 +68834,7 @@ } }, { - "id": 23883, + "id": 10682, "properties": { "facing": "west", "half": "bottom", @@ -68883,7 +68843,7 @@ } }, { - "id": 23884, + "id": 10683, "properties": { "facing": "west", "half": "bottom", @@ -68892,7 +68852,7 @@ } }, { - "id": 23885, + "id": 10684, "properties": { "facing": "west", "half": "bottom", @@ -68901,7 +68861,7 @@ } }, { - "id": 23886, + "id": 10685, "properties": { "facing": "west", "half": "bottom", @@ -68910,7 +68870,7 @@ } }, { - "id": 23887, + "id": 10686, "properties": { "facing": "east", "half": "top", @@ -68919,7 +68879,7 @@ } }, { - "id": 23888, + "id": 10687, "properties": { "facing": "east", "half": "top", @@ -68928,7 +68888,7 @@ } }, { - "id": 23889, + "id": 10688, "properties": { "facing": "east", "half": "top", @@ -68937,7 +68897,7 @@ } }, { - "id": 23890, + "id": 10689, "properties": { "facing": "east", "half": "top", @@ -68946,7 +68906,7 @@ } }, { - "id": 23891, + "id": 10690, "properties": { "facing": "east", "half": "top", @@ -68955,7 +68915,7 @@ } }, { - "id": 23892, + "id": 10691, "properties": { "facing": "east", "half": "top", @@ -68964,7 +68924,7 @@ } }, { - "id": 23893, + "id": 10692, "properties": { "facing": "east", "half": "top", @@ -68973,7 +68933,7 @@ } }, { - "id": 23894, + "id": 10693, "properties": { "facing": "east", "half": "top", @@ -68982,7 +68942,7 @@ } }, { - "id": 23895, + "id": 10694, "properties": { "facing": "east", "half": "top", @@ -68991,7 +68951,7 @@ } }, { - "id": 23896, + "id": 10695, "properties": { "facing": "east", "half": "top", @@ -69000,7 +68960,7 @@ } }, { - "id": 23897, + "id": 10696, "properties": { "facing": "east", "half": "bottom", @@ -69009,7 +68969,7 @@ } }, { - "id": 23898, + "id": 10697, "properties": { "facing": "east", "half": "bottom", @@ -69018,7 +68978,7 @@ } }, { - "id": 23899, + "id": 10698, "properties": { "facing": "east", "half": "bottom", @@ -69027,7 +68987,7 @@ } }, { - "id": 23900, + "id": 10699, "properties": { "facing": "east", "half": "bottom", @@ -69036,7 +68996,7 @@ } }, { - "id": 23901, + "id": 10700, "properties": { "facing": "east", "half": "bottom", @@ -69045,7 +69005,7 @@ } }, { - "id": 23902, + "id": 10701, "properties": { "facing": "east", "half": "bottom", @@ -69054,7 +69014,7 @@ } }, { - "id": 23903, + "id": 10702, "properties": { "facing": "east", "half": "bottom", @@ -69063,7 +69023,7 @@ } }, { - "id": 23904, + "id": 10703, "properties": { "facing": "east", "half": "bottom", @@ -69072,7 +69032,7 @@ } }, { - "id": 23905, + "id": 10704, "properties": { "facing": "east", "half": "bottom", @@ -69081,7 +69041,7 @@ } }, { - "id": 23906, + "id": 10705, "properties": { "facing": "east", "half": "bottom", @@ -69091,1231 +69051,1923 @@ } ] }, - "minecraft:deepslate_brick_wall": { + "minecraft:daylight_detector": { "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ + "inverted": [ "true", "false" ], - "west": [ - "none", - "low", - "tall" + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ] }, "states": [ { - "id": 23913, + "id": 9191, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "inverted": "true", + "power": "0" } }, { - "id": 23914, + "id": 9192, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "inverted": "true", + "power": "1" } }, { - "id": 23915, + "id": 9193, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "inverted": "true", + "power": "2" } }, { - "default": true, - "id": 23916, + "id": 9194, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "inverted": "true", + "power": "3" } }, { - "id": 23917, + "id": 9195, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "inverted": "true", + "power": "4" } }, { - "id": 23918, + "id": 9196, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "inverted": "true", + "power": "5" } }, { - "id": 23919, + "id": 9197, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "inverted": "true", + "power": "6" } }, { - "id": 23920, + "id": 9198, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "inverted": "true", + "power": "7" } }, { - "id": 23921, + "id": 9199, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "inverted": "true", + "power": "8" } }, { - "id": 23922, + "id": 9200, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "inverted": "true", + "power": "9" } }, { - "id": 23923, + "id": 9201, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "inverted": "true", + "power": "10" } }, { - "id": 23924, + "id": 9202, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "inverted": "true", + "power": "11" } }, { - "id": 23925, + "id": 9203, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "inverted": "true", + "power": "12" } }, { - "id": 23926, + "id": 9204, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "inverted": "true", + "power": "13" } }, { - "id": 23927, + "id": 9205, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "inverted": "true", + "power": "14" } }, { - "id": 23928, + "id": 9206, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "inverted": "true", + "power": "15" } }, { - "id": 23929, + "default": true, + "id": 9207, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "inverted": "false", + "power": "0" } }, { - "id": 23930, + "id": 9208, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "inverted": "false", + "power": "1" } }, { - "id": 23931, + "id": 9209, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "inverted": "false", + "power": "2" } }, { - "id": 23932, + "id": 9210, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "inverted": "false", + "power": "3" } }, { - "id": 23933, + "id": 9211, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "inverted": "false", + "power": "4" } }, { - "id": 23934, + "id": 9212, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "inverted": "false", + "power": "5" } }, { - "id": 23935, + "id": 9213, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "inverted": "false", + "power": "6" } }, { - "id": 23936, + "id": 9214, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "inverted": "false", + "power": "7" } }, { - "id": 23937, + "id": 9215, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "inverted": "false", + "power": "8" } }, { - "id": 23938, + "id": 9216, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "inverted": "false", + "power": "9" } }, { - "id": 23939, + "id": 9217, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "inverted": "false", + "power": "10" } }, { - "id": 23940, + "id": 9218, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "inverted": "false", + "power": "11" } }, { - "id": 23941, + "id": 9219, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "inverted": "false", + "power": "12" } }, { - "id": 23942, + "id": 9220, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "inverted": "false", + "power": "13" } }, { - "id": 23943, + "id": 9221, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "inverted": "false", + "power": "14" } }, { - "id": 23944, + "id": 9222, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "inverted": "false", + "power": "15" } - }, + } + ] + }, + "minecraft:dead_brain_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23945, + "default": true, + "id": 12815, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "true" } }, { - "id": 23946, + "id": 12816, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_brain_coral_block": { + "states": [ { - "id": 23947, + "default": true, + "id": 12804 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12835, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true" } }, { - "id": 23948, + "id": 12836, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23949, + "default": true, + "id": 12861, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "waterlogged": "true" } }, { - "id": 23950, + "id": 12862, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "false" } }, { - "id": 23951, + "id": 12863, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "waterlogged": "true" } }, { - "id": 23952, + "id": 12864, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "false" } }, { - "id": 23953, + "id": 12865, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "waterlogged": "true" } }, { - "id": 23954, + "id": 12866, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "false" } }, { - "id": 23955, + "id": 12867, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "waterlogged": "true" } }, { - "id": 23956, + "id": 12868, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_bubble_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23957, + "default": true, + "id": 12817, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "true" } }, { - "id": 23958, + "id": 12818, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "states": [ { - "id": 23959, + "default": true, + "id": 12805 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12837, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true" } }, { - "id": 23960, + "id": 12838, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23961, + "default": true, + "id": 12869, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "waterlogged": "true" } }, { - "id": 23962, + "id": 12870, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "false" } }, { - "id": 23963, + "id": 12871, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "waterlogged": "true" } }, { - "id": 23964, + "id": 12872, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "false" } }, { - "id": 23965, + "id": 12873, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "waterlogged": "true" } }, { - "id": 23966, + "id": 12874, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "false" } }, { - "id": 23967, + "id": 12875, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "waterlogged": "true" } }, { - "id": 23968, + "id": 12876, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_bush": { + "states": [ { - "id": 23969, + "default": true, + "id": 2007 + } + ] + }, + "minecraft:dead_fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12819, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "true" } }, { - "id": 23970, + "id": 12820, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_fire_coral_block": { + "states": [ { - "id": 23971, + "default": true, + "id": 12806 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12839, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true" } }, { - "id": 23972, + "id": 12840, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23973, + "default": true, + "id": 12877, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "waterlogged": "true" } }, { - "id": 23974, + "id": 12878, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "false" } }, { - "id": 23975, + "id": 12879, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "waterlogged": "true" } }, { - "id": 23976, + "id": 12880, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "false" } }, { - "id": 23977, + "id": 12881, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "waterlogged": "true" } }, { - "id": 23978, + "id": 12882, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "false" } }, { - "id": 23979, + "id": 12883, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "waterlogged": "true" } }, { - "id": 23980, + "id": 12884, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_horn_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23981, + "default": true, + "id": 12821, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "true" } }, { - "id": 23982, + "id": 12822, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_horn_coral_block": { + "states": [ { - "id": 23983, + "default": true, + "id": 12807 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12841, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true" } }, { - "id": 23984, + "id": 12842, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23985, + "default": true, + "id": 12885, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "waterlogged": "true" } }, { - "id": 23986, + "id": 12886, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "false" } }, { - "id": 23987, + "id": 12887, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "waterlogged": "true" } }, { - "id": 23988, + "id": 12888, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "false" } }, { - "id": 23989, + "id": 12889, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "waterlogged": "true" } }, { - "id": 23990, + "id": 12890, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "false" } }, { - "id": 23991, + "id": 12891, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "waterlogged": "true" } }, { - "id": 23992, + "id": 12892, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23993, + "default": true, + "id": 12813, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "true" } }, { - "id": 23994, + "id": 12814, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_tube_coral_block": { + "states": [ { - "id": 23995, + "default": true, + "id": 12803 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12833, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "true" } }, { - "id": 23996, + "id": 12834, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23997, + "default": true, + "id": 12853, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "waterlogged": "true" } }, { - "id": 23998, + "id": 12854, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "false" } }, { - "id": 23999, + "id": 12855, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "waterlogged": "true" } }, { - "id": 24000, + "id": 12856, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "false" } }, { - "id": 24001, + "id": 12857, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "waterlogged": "true" } }, { - "id": 24002, + "id": 12858, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "false" } }, { - "id": 24003, + "id": 12859, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "waterlogged": "true" } }, { - "id": 24004, + "id": 12860, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26574, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" } }, { - "id": 24005, + "id": 26575, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "cracked": "true", + "facing": "north", + "waterlogged": "false" } }, { - "id": 24006, + "id": 26576, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "cracked": "true", + "facing": "south", + "waterlogged": "true" } }, { - "id": 24007, + "id": 26577, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "cracked": "true", + "facing": "south", + "waterlogged": "false" } }, { - "id": 24008, + "id": 26578, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "cracked": "true", + "facing": "west", + "waterlogged": "true" } }, { - "id": 24009, + "id": 26579, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "cracked": "true", + "facing": "west", + "waterlogged": "false" } }, { - "id": 24010, + "id": 26580, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "cracked": "true", + "facing": "east", + "waterlogged": "true" } }, { - "id": 24011, + "id": 26581, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "cracked": "true", + "facing": "east", + "waterlogged": "false" } }, { - "id": 24012, + "id": 26582, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "cracked": "false", + "facing": "north", + "waterlogged": "true" } }, { - "id": 24013, + "default": true, + "id": 26583, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "cracked": "false", + "facing": "north", + "waterlogged": "false" } }, { - "id": 24014, + "id": 26584, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "cracked": "false", + "facing": "south", + "waterlogged": "true" } }, { - "id": 24015, + "id": 26585, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "cracked": "false", + "facing": "south", + "waterlogged": "false" } }, { - "id": 24016, + "id": 26586, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "cracked": "false", + "facing": "west", + "waterlogged": "true" } }, { - "id": 24017, + "id": 26587, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "cracked": "false", + "facing": "west", + "waterlogged": "false" } }, { - "id": 24018, + "id": 26588, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "cracked": "false", + "facing": "east", + "waterlogged": "true" } }, { - "id": 24019, + "id": 26589, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 24904, + "properties": { + "axis": "x" } }, { - "id": 24020, + "default": true, + "id": 24905, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "axis": "y" } }, { - "id": 24021, + "id": 24906, "properties": { - "east": "low", + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26221, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26222, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26223, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26224, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26225, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26226, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26141, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26142, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26143, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26144, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26145, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26146, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26147, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26148, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26149, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26150, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26151, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26152, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26153, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26154, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26155, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26156, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26157, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26158, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26159, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26160, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26161, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26162, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26163, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26164, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26165, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26166, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26167, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26168, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26169, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26172, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26173, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26181, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26182, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26183, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26184, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26185, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26186, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26187, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26188, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26189, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26190, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26191, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26192, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26193, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26194, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26195, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26196, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26197, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26198, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26199, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26200, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26201, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26202, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26203, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26204, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26205, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26207, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26208, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26209, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26212, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26213, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26227, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70324,9 +70976,9 @@ } }, { - "id": 24022, + "id": 26228, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70335,9 +70987,9 @@ } }, { - "id": 24023, + "id": 26229, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70346,9 +70998,10 @@ } }, { - "id": 24024, + "default": true, + "id": 26230, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70357,9 +71010,9 @@ } }, { - "id": 24025, + "id": 26231, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70368,9 +71021,9 @@ } }, { - "id": 24026, + "id": 26232, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -70379,9 +71032,9 @@ } }, { - "id": 24027, + "id": 26233, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70390,9 +71043,9 @@ } }, { - "id": 24028, + "id": 26234, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70401,9 +71054,9 @@ } }, { - "id": 24029, + "id": 26235, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70412,9 +71065,9 @@ } }, { - "id": 24030, + "id": 26236, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70423,9 +71076,9 @@ } }, { - "id": 24031, + "id": 26237, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70434,9 +71087,9 @@ } }, { - "id": 24032, + "id": 26238, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -70445,9 +71098,9 @@ } }, { - "id": 24033, + "id": 26239, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70456,9 +71109,9 @@ } }, { - "id": 24034, + "id": 26240, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70467,9 +71120,9 @@ } }, { - "id": 24035, + "id": 26241, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70478,9 +71131,9 @@ } }, { - "id": 24036, + "id": 26242, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70489,9 +71142,9 @@ } }, { - "id": 24037, + "id": 26243, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70500,9 +71153,9 @@ } }, { - "id": 24038, + "id": 26244, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -70511,9 +71164,9 @@ } }, { - "id": 24039, + "id": 26245, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70522,9 +71175,9 @@ } }, { - "id": 24040, + "id": 26246, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70533,9 +71186,9 @@ } }, { - "id": 24041, + "id": 26247, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70544,9 +71197,9 @@ } }, { - "id": 24042, + "id": 26248, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70555,9 +71208,9 @@ } }, { - "id": 24043, + "id": 26249, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70566,9 +71219,9 @@ } }, { - "id": 24044, + "id": 26250, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -70577,9 +71230,9 @@ } }, { - "id": 24045, + "id": 26251, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70588,9 +71241,9 @@ } }, { - "id": 24046, + "id": 26252, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70599,9 +71252,9 @@ } }, { - "id": 24047, + "id": 26253, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70610,9 +71263,9 @@ } }, { - "id": 24048, + "id": 26254, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70621,9 +71274,9 @@ } }, { - "id": 24049, + "id": 26255, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70632,9 +71285,9 @@ } }, { - "id": 24050, + "id": 26256, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -70643,9 +71296,9 @@ } }, { - "id": 24051, + "id": 26257, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70654,9 +71307,9 @@ } }, { - "id": 24052, + "id": 26258, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70665,9 +71318,9 @@ } }, { - "id": 24053, + "id": 26259, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70676,9 +71329,9 @@ } }, { - "id": 24054, + "id": 26260, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70687,9 +71340,9 @@ } }, { - "id": 24055, + "id": 26261, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70698,9 +71351,9 @@ } }, { - "id": 24056, + "id": 26262, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -70709,9 +71362,9 @@ } }, { - "id": 24057, + "id": 26263, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70720,9 +71373,9 @@ } }, { - "id": 24058, + "id": 26264, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70731,9 +71384,9 @@ } }, { - "id": 24059, + "id": 26265, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70742,9 +71395,9 @@ } }, { - "id": 24060, + "id": 26266, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70753,9 +71406,9 @@ } }, { - "id": 24061, + "id": 26267, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70764,9 +71417,9 @@ } }, { - "id": 24062, + "id": 26268, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -70775,9 +71428,9 @@ } }, { - "id": 24063, + "id": 26269, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70786,9 +71439,9 @@ } }, { - "id": 24064, + "id": 26270, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70797,9 +71450,9 @@ } }, { - "id": 24065, + "id": 26271, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70808,9 +71461,9 @@ } }, { - "id": 24066, + "id": 26272, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70819,9 +71472,9 @@ } }, { - "id": 24067, + "id": 26273, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70830,9 +71483,9 @@ } }, { - "id": 24068, + "id": 26274, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -70841,9 +71494,9 @@ } }, { - "id": 24069, + "id": 26275, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70852,9 +71505,9 @@ } }, { - "id": 24070, + "id": 26276, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70863,9 +71516,9 @@ } }, { - "id": 24071, + "id": 26277, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70874,9 +71527,9 @@ } }, { - "id": 24072, + "id": 26278, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70885,9 +71538,9 @@ } }, { - "id": 24073, + "id": 26279, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70896,9 +71549,9 @@ } }, { - "id": 24074, + "id": 26280, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -70907,9 +71560,9 @@ } }, { - "id": 24075, + "id": 26281, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70918,9 +71571,9 @@ } }, { - "id": 24076, + "id": 26282, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70929,9 +71582,9 @@ } }, { - "id": 24077, + "id": 26283, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70940,9 +71593,9 @@ } }, { - "id": 24078, + "id": 26284, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70951,9 +71604,9 @@ } }, { - "id": 24079, + "id": 26285, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70962,9 +71615,9 @@ } }, { - "id": 24080, + "id": 26286, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -70973,9 +71626,9 @@ } }, { - "id": 24081, + "id": 26287, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -70984,9 +71637,9 @@ } }, { - "id": 24082, + "id": 26288, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -70995,9 +71648,9 @@ } }, { - "id": 24083, + "id": 26289, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -71006,9 +71659,9 @@ } }, { - "id": 24084, + "id": 26290, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -71017,9 +71670,9 @@ } }, { - "id": 24085, + "id": 26291, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -71028,9 +71681,9 @@ } }, { - "id": 24086, + "id": 26292, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -71039,9 +71692,9 @@ } }, { - "id": 24087, + "id": 26293, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71050,9 +71703,9 @@ } }, { - "id": 24088, + "id": 26294, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71061,9 +71714,9 @@ } }, { - "id": 24089, + "id": 26295, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71072,9 +71725,9 @@ } }, { - "id": 24090, + "id": 26296, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71083,9 +71736,9 @@ } }, { - "id": 24091, + "id": 26297, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71094,9 +71747,9 @@ } }, { - "id": 24092, + "id": 26298, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -71105,9 +71758,9 @@ } }, { - "id": 24093, + "id": 26299, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71116,9 +71769,9 @@ } }, { - "id": 24094, + "id": 26300, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71127,9 +71780,9 @@ } }, { - "id": 24095, + "id": 26301, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71138,9 +71791,9 @@ } }, { - "id": 24096, + "id": 26302, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71149,9 +71802,9 @@ } }, { - "id": 24097, + "id": 26303, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71160,9 +71813,9 @@ } }, { - "id": 24098, + "id": 26304, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -71171,9 +71824,9 @@ } }, { - "id": 24099, + "id": 26305, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71182,9 +71835,9 @@ } }, { - "id": 24100, + "id": 26306, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71193,9 +71846,9 @@ } }, { - "id": 24101, + "id": 26307, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71204,9 +71857,9 @@ } }, { - "id": 24102, + "id": 26308, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71215,9 +71868,9 @@ } }, { - "id": 24103, + "id": 26309, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71226,9 +71879,9 @@ } }, { - "id": 24104, + "id": 26310, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -71237,9 +71890,9 @@ } }, { - "id": 24105, + "id": 26311, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71248,9 +71901,9 @@ } }, { - "id": 24106, + "id": 26312, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71259,9 +71912,9 @@ } }, { - "id": 24107, + "id": 26313, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71270,9 +71923,9 @@ } }, { - "id": 24108, + "id": 26314, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71281,9 +71934,9 @@ } }, { - "id": 24109, + "id": 26315, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71292,9 +71945,9 @@ } }, { - "id": 24110, + "id": 26316, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -71303,9 +71956,9 @@ } }, { - "id": 24111, + "id": 26317, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71314,9 +71967,9 @@ } }, { - "id": 24112, + "id": 26318, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71325,9 +71978,9 @@ } }, { - "id": 24113, + "id": 26319, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71336,9 +71989,9 @@ } }, { - "id": 24114, + "id": 26320, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71347,9 +72000,9 @@ } }, { - "id": 24115, + "id": 26321, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71358,9 +72011,9 @@ } }, { - "id": 24116, + "id": 26322, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -71369,9 +72022,9 @@ } }, { - "id": 24117, + "id": 26323, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71380,9 +72033,9 @@ } }, { - "id": 24118, + "id": 26324, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71391,9 +72044,9 @@ } }, { - "id": 24119, + "id": 26325, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71402,9 +72055,9 @@ } }, { - "id": 24120, + "id": 26326, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71413,9 +72066,9 @@ } }, { - "id": 24121, + "id": 26327, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71424,9 +72077,9 @@ } }, { - "id": 24122, + "id": 26328, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -71435,9 +72088,9 @@ } }, { - "id": 24123, + "id": 26329, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71446,9 +72099,9 @@ } }, { - "id": 24124, + "id": 26330, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71457,9 +72110,9 @@ } }, { - "id": 24125, + "id": 26331, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71468,9 +72121,9 @@ } }, { - "id": 24126, + "id": 26332, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71479,9 +72132,9 @@ } }, { - "id": 24127, + "id": 26333, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71490,9 +72143,9 @@ } }, { - "id": 24128, + "id": 26334, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -71501,9 +72154,9 @@ } }, { - "id": 24129, + "id": 26335, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71512,9 +72165,9 @@ } }, { - "id": 24130, + "id": 26336, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71523,9 +72176,9 @@ } }, { - "id": 24131, + "id": 26337, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71534,9 +72187,9 @@ } }, { - "id": 24132, + "id": 26338, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71545,9 +72198,9 @@ } }, { - "id": 24133, + "id": 26339, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71556,9 +72209,9 @@ } }, { - "id": 24134, + "id": 26340, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -71567,9 +72220,9 @@ } }, { - "id": 24135, + "id": 26341, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71578,9 +72231,9 @@ } }, { - "id": 24136, + "id": 26342, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71589,9 +72242,9 @@ } }, { - "id": 24137, + "id": 26343, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71600,9 +72253,9 @@ } }, { - "id": 24138, + "id": 26344, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71611,9 +72264,9 @@ } }, { - "id": 24139, + "id": 26345, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71622,9 +72275,9 @@ } }, { - "id": 24140, + "id": 26346, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -71633,9 +72286,9 @@ } }, { - "id": 24141, + "id": 26347, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71644,9 +72297,9 @@ } }, { - "id": 24142, + "id": 26348, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71655,9 +72308,9 @@ } }, { - "id": 24143, + "id": 26349, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71666,9 +72319,9 @@ } }, { - "id": 24144, + "id": 26350, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71677,9 +72330,9 @@ } }, { - "id": 24145, + "id": 26351, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71688,9 +72341,9 @@ } }, { - "id": 24146, + "id": 26352, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -71699,9 +72352,9 @@ } }, { - "id": 24147, + "id": 26353, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71710,9 +72363,9 @@ } }, { - "id": 24148, + "id": 26354, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71721,9 +72374,9 @@ } }, { - "id": 24149, + "id": 26355, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71732,9 +72385,9 @@ } }, { - "id": 24150, + "id": 26356, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71743,9 +72396,9 @@ } }, { - "id": 24151, + "id": 26357, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71754,9 +72407,9 @@ } }, { - "id": 24152, + "id": 26358, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -71765,9 +72418,9 @@ } }, { - "id": 24153, + "id": 26359, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71776,9 +72429,9 @@ } }, { - "id": 24154, + "id": 26360, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71787,9 +72440,9 @@ } }, { - "id": 24155, + "id": 26361, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71798,9 +72451,9 @@ } }, { - "id": 24156, + "id": 26362, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71809,9 +72462,9 @@ } }, { - "id": 24157, + "id": 26363, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71820,9 +72473,9 @@ } }, { - "id": 24158, + "id": 26364, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -71831,9 +72484,9 @@ } }, { - "id": 24159, + "id": 26365, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71842,9 +72495,9 @@ } }, { - "id": 24160, + "id": 26366, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71853,9 +72506,9 @@ } }, { - "id": 24161, + "id": 26367, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71864,9 +72517,9 @@ } }, { - "id": 24162, + "id": 26368, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71875,9 +72528,9 @@ } }, { - "id": 24163, + "id": 26369, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71886,9 +72539,9 @@ } }, { - "id": 24164, + "id": 26370, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -71897,9 +72550,9 @@ } }, { - "id": 24165, + "id": 26371, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71908,9 +72561,9 @@ } }, { - "id": 24166, + "id": 26372, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71919,9 +72572,9 @@ } }, { - "id": 24167, + "id": 26373, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71930,9 +72583,9 @@ } }, { - "id": 24168, + "id": 26374, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71941,9 +72594,9 @@ } }, { - "id": 24169, + "id": 26375, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71952,9 +72605,9 @@ } }, { - "id": 24170, + "id": 26376, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -71963,9 +72616,9 @@ } }, { - "id": 24171, + "id": 26377, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -71974,9 +72627,9 @@ } }, { - "id": 24172, + "id": 26378, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -71985,9 +72638,9 @@ } }, { - "id": 24173, + "id": 26379, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -71996,9 +72649,9 @@ } }, { - "id": 24174, + "id": 26380, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -72007,9 +72660,9 @@ } }, { - "id": 24175, + "id": 26381, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -72018,9 +72671,9 @@ } }, { - "id": 24176, + "id": 26382, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -72029,9 +72682,9 @@ } }, { - "id": 24177, + "id": 26383, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72040,9 +72693,9 @@ } }, { - "id": 24178, + "id": 26384, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72051,9 +72704,9 @@ } }, { - "id": 24179, + "id": 26385, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72062,9 +72715,9 @@ } }, { - "id": 24180, + "id": 26386, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72073,9 +72726,9 @@ } }, { - "id": 24181, + "id": 26387, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72084,9 +72737,9 @@ } }, { - "id": 24182, + "id": 26388, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -72095,9 +72748,9 @@ } }, { - "id": 24183, + "id": 26389, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72106,9 +72759,9 @@ } }, { - "id": 24184, + "id": 26390, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72117,9 +72770,9 @@ } }, { - "id": 24185, + "id": 26391, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72128,9 +72781,9 @@ } }, { - "id": 24186, + "id": 26392, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72139,9 +72792,9 @@ } }, { - "id": 24187, + "id": 26393, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72150,9 +72803,9 @@ } }, { - "id": 24188, + "id": 26394, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -72161,9 +72814,9 @@ } }, { - "id": 24189, + "id": 26395, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72172,9 +72825,9 @@ } }, { - "id": 24190, + "id": 26396, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72183,9 +72836,9 @@ } }, { - "id": 24191, + "id": 26397, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72194,9 +72847,9 @@ } }, { - "id": 24192, + "id": 26398, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72205,9 +72858,9 @@ } }, { - "id": 24193, + "id": 26399, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72216,9 +72869,9 @@ } }, { - "id": 24194, + "id": 26400, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -72227,9 +72880,9 @@ } }, { - "id": 24195, + "id": 26401, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72238,9 +72891,9 @@ } }, { - "id": 24196, + "id": 26402, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72249,9 +72902,9 @@ } }, { - "id": 24197, + "id": 26403, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72260,9 +72913,9 @@ } }, { - "id": 24198, + "id": 26404, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72271,9 +72924,9 @@ } }, { - "id": 24199, + "id": 26405, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72282,9 +72935,9 @@ } }, { - "id": 24200, + "id": 26406, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -72293,9 +72946,9 @@ } }, { - "id": 24201, + "id": 26407, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72304,9 +72957,9 @@ } }, { - "id": 24202, + "id": 26408, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72315,9 +72968,9 @@ } }, { - "id": 24203, + "id": 26409, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72326,9 +72979,9 @@ } }, { - "id": 24204, + "id": 26410, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72337,9 +72990,9 @@ } }, { - "id": 24205, + "id": 26411, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72348,9 +73001,9 @@ } }, { - "id": 24206, + "id": 26412, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -72359,9 +73012,9 @@ } }, { - "id": 24207, + "id": 26413, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72370,9 +73023,9 @@ } }, { - "id": 24208, + "id": 26414, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72381,9 +73034,9 @@ } }, { - "id": 24209, + "id": 26415, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72392,9 +73045,9 @@ } }, { - "id": 24210, + "id": 26416, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72403,9 +73056,9 @@ } }, { - "id": 24211, + "id": 26417, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72414,9 +73067,9 @@ } }, { - "id": 24212, + "id": 26418, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -72425,9 +73078,9 @@ } }, { - "id": 24213, + "id": 26419, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72436,9 +73089,9 @@ } }, { - "id": 24214, + "id": 26420, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72447,9 +73100,9 @@ } }, { - "id": 24215, + "id": 26421, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72458,9 +73111,9 @@ } }, { - "id": 24216, + "id": 26422, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72469,9 +73122,9 @@ } }, { - "id": 24217, + "id": 26423, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72480,9 +73133,9 @@ } }, { - "id": 24218, + "id": 26424, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -72491,9 +73144,9 @@ } }, { - "id": 24219, + "id": 26425, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72502,9 +73155,9 @@ } }, { - "id": 24220, + "id": 26426, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72513,9 +73166,9 @@ } }, { - "id": 24221, + "id": 26427, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72524,9 +73177,9 @@ } }, { - "id": 24222, + "id": 26428, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72535,9 +73188,9 @@ } }, { - "id": 24223, + "id": 26429, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72546,9 +73199,9 @@ } }, { - "id": 24224, + "id": 26430, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -72557,9 +73210,9 @@ } }, { - "id": 24225, + "id": 26431, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72568,9 +73221,9 @@ } }, { - "id": 24226, + "id": 26432, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72579,9 +73232,9 @@ } }, { - "id": 24227, + "id": 26433, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72590,9 +73243,9 @@ } }, { - "id": 24228, + "id": 26434, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72601,9 +73254,9 @@ } }, { - "id": 24229, + "id": 26435, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72612,9 +73265,9 @@ } }, { - "id": 24230, + "id": 26436, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -72623,9 +73276,9 @@ } }, { - "id": 24231, + "id": 26437, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -72634,9 +73287,9 @@ } }, { - "id": 24232, + "id": 26438, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -72645,9 +73298,9 @@ } }, { - "id": 24233, + "id": 26439, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -72656,9 +73309,9 @@ } }, { - "id": 24234, + "id": 26440, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -72667,9 +73320,9 @@ } }, { - "id": 24235, + "id": 26441, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -72678,948 +73331,417 @@ } }, { - "id": 24236, + "id": 26442, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:deepslate_bricks": { - "states": [ - { - "default": true, - "id": 23826 - } - ] - }, - "minecraft:deepslate_coal_ore": { - "states": [ - { - "default": true, - "id": 128 - } - ] - }, - "minecraft:deepslate_copper_ore": { - "states": [ - { - "default": true, - "id": 21709 - } - ] - }, - "minecraft:deepslate_diamond_ore": { - "states": [ - { - "default": true, - "id": 4275 - } - ] - }, - "minecraft:deepslate_emerald_ore": { - "states": [ - { - "default": true, - "id": 7512 - } - ] - }, - "minecraft:deepslate_gold_ore": { - "states": [ - { - "default": true, - "id": 124 - } - ] - }, - "minecraft:deepslate_iron_ore": { - "states": [ - { - "default": true, - "id": 126 - } - ] - }, - "minecraft:deepslate_lapis_ore": { - "states": [ - { - "default": true, - "id": 521 - } - ] - }, - "minecraft:deepslate_redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 5736, - "properties": { - "lit": "true" - } }, { - "default": true, - "id": 5737, + "id": 26443, "properties": { - "lit": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:deepslate_tile_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 23496, + "id": 26444, "properties": { - "type": "top", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 23497, + "id": 26445, "properties": { - "type": "top", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23498, + "id": 26446, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 23499, + "id": 26447, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 23500, + "id": 26448, "properties": { - "type": "double", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 23501, + "id": 26449, "properties": { - "type": "double", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:deepslate_tile_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 23416, + "id": 26450, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 23417, + "id": 26451, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23418, + "id": 26452, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 23419, + "id": 26453, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 23420, + "id": 26454, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 23421, + "id": 26455, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 23422, + "id": 26456, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 23423, + "id": 26457, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23424, + "id": 26458, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 23425, + "id": 26459, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 23426, + "id": 26460, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 23427, + "id": 26461, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 23428, + "id": 26462, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 23429, + "id": 26463, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23430, + "id": 26464, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 23431, + "id": 26465, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 23432, + "id": 26466, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 23433, + "id": 26467, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 23434, + "id": 26468, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 23435, + "id": 26469, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23436, + "id": 26470, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 23437, + "id": 26471, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 23438, + "id": 26472, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 23439, + "id": 26473, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 23440, + "id": 26474, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 23441, + "id": 26475, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 23442, + "id": 26476, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 23443, + "id": 26477, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 23444, + "id": 26478, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23445, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23446, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23447, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23448, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23449, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23450, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23451, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23452, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23453, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23454, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23455, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23456, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23457, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23458, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23459, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23460, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23461, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23462, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23463, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23464, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23465, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23466, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23467, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23468, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23469, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23470, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23471, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23472, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23473, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23474, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23475, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23476, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23477, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23478, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23479, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23480, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23481, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23482, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23483, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23484, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 23485, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 23486, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 23487, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 23488, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 23489, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 23490, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 23491, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 23492, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 23493, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 23494, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 23495, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:deepslate_tile_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 23502, + "id": 26479, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -73627,10 +73749,10 @@ } }, { - "id": 23503, + "id": 26480, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -73638,10 +73760,10 @@ } }, { - "id": 23504, + "id": 26481, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -73649,11 +73771,10 @@ } }, { - "default": true, - "id": 23505, + "id": 26482, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -73661,10 +73782,10 @@ } }, { - "id": 23506, + "id": 26483, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -73672,10 +73793,10 @@ } }, { - "id": 23507, + "id": 26484, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -73683,10 +73804,10 @@ } }, { - "id": 23508, + "id": 26485, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -73694,10 +73815,10 @@ } }, { - "id": 23509, + "id": 26486, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -73705,10 +73826,10 @@ } }, { - "id": 23510, + "id": 26487, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -73716,10 +73837,10 @@ } }, { - "id": 23511, + "id": 26488, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -73727,10 +73848,10 @@ } }, { - "id": 23512, + "id": 26489, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -73738,10 +73859,10 @@ } }, { - "id": 23513, + "id": 26490, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -73749,10 +73870,10 @@ } }, { - "id": 23514, + "id": 26491, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -73760,10 +73881,10 @@ } }, { - "id": 23515, + "id": 26492, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -73771,10 +73892,10 @@ } }, { - "id": 23516, + "id": 26493, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -73782,10 +73903,10 @@ } }, { - "id": 23517, + "id": 26494, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -73793,10 +73914,10 @@ } }, { - "id": 23518, + "id": 26495, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -73804,10 +73925,10 @@ } }, { - "id": 23519, + "id": 26496, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -73815,10 +73936,10 @@ } }, { - "id": 23520, + "id": 26497, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -73826,10 +73947,10 @@ } }, { - "id": 23521, + "id": 26498, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -73837,10 +73958,10 @@ } }, { - "id": 23522, + "id": 26499, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -73848,10 +73969,10 @@ } }, { - "id": 23523, + "id": 26500, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -73859,10 +73980,10 @@ } }, { - "id": 23524, + "id": 26501, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -73870,10 +73991,10 @@ } }, { - "id": 23525, + "id": 26502, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -73881,10 +74002,10 @@ } }, { - "id": 23526, + "id": 26503, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -73892,10 +74013,10 @@ } }, { - "id": 23527, + "id": 26504, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -73903,10 +74024,10 @@ } }, { - "id": 23528, + "id": 26505, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -73914,10 +74035,10 @@ } }, { - "id": 23529, + "id": 26506, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -73925,10 +74046,10 @@ } }, { - "id": 23530, + "id": 26507, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -73936,10 +74057,10 @@ } }, { - "id": 23531, + "id": 26508, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -73947,10 +74068,10 @@ } }, { - "id": 23532, + "id": 26509, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -73958,10 +74079,10 @@ } }, { - "id": 23533, + "id": 26510, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -73969,10 +74090,10 @@ } }, { - "id": 23534, + "id": 26511, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -73980,10 +74101,10 @@ } }, { - "id": 23535, + "id": 26512, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -73991,10 +74112,10 @@ } }, { - "id": 23536, + "id": 26513, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -74002,10 +74123,10 @@ } }, { - "id": 23537, + "id": 26514, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -74013,10 +74134,10 @@ } }, { - "id": 23538, + "id": 26515, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -74024,10 +74145,10 @@ } }, { - "id": 23539, + "id": 26516, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -74035,10 +74156,10 @@ } }, { - "id": 23540, + "id": 26517, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -74046,10 +74167,10 @@ } }, { - "id": 23541, + "id": 26518, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -74057,10 +74178,10 @@ } }, { - "id": 23542, + "id": 26519, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -74068,10 +74189,10 @@ } }, { - "id": 23543, + "id": 26520, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -74079,10 +74200,10 @@ } }, { - "id": 23544, + "id": 26521, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -74090,10 +74211,10 @@ } }, { - "id": 23545, + "id": 26522, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -74101,10 +74222,10 @@ } }, { - "id": 23546, + "id": 26523, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -74112,10 +74233,10 @@ } }, { - "id": 23547, + "id": 26524, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -74123,10 +74244,10 @@ } }, { - "id": 23548, + "id": 26525, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -74134,10 +74255,10 @@ } }, { - "id": 23549, + "id": 26526, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -74145,10 +74266,10 @@ } }, { - "id": 23550, + "id": 26527, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -74156,10 +74277,10 @@ } }, { - "id": 23551, + "id": 26528, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -74167,10 +74288,10 @@ } }, { - "id": 23552, + "id": 26529, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -74178,10 +74299,10 @@ } }, { - "id": 23553, + "id": 26530, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -74189,10 +74310,10 @@ } }, { - "id": 23554, + "id": 26531, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -74200,10 +74321,10 @@ } }, { - "id": 23555, + "id": 26532, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -74211,10 +74332,10 @@ } }, { - "id": 23556, + "id": 26533, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -74222,10 +74343,10 @@ } }, { - "id": 23557, + "id": 26534, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -74233,10 +74354,10 @@ } }, { - "id": 23558, + "id": 26535, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -74244,10 +74365,10 @@ } }, { - "id": 23559, + "id": 26536, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -74255,10 +74376,10 @@ } }, { - "id": 23560, + "id": 26537, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -74266,10 +74387,10 @@ } }, { - "id": 23561, + "id": 26538, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -74277,10 +74398,10 @@ } }, { - "id": 23562, + "id": 26539, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -74288,10 +74409,10 @@ } }, { - "id": 23563, + "id": 26540, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -74299,10 +74420,10 @@ } }, { - "id": 23564, + "id": 26541, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -74310,10 +74431,10 @@ } }, { - "id": 23565, + "id": 26542, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -74321,10 +74442,10 @@ } }, { - "id": 23566, + "id": 26543, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -74332,10 +74453,10 @@ } }, { - "id": 23567, + "id": 26544, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -74343,10 +74464,10 @@ } }, { - "id": 23568, + "id": 26545, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -74354,10 +74475,10 @@ } }, { - "id": 23569, + "id": 26546, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -74365,10 +74486,10 @@ } }, { - "id": 23570, + "id": 26547, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -74376,10 +74497,10 @@ } }, { - "id": 23571, + "id": 26548, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -74387,10 +74508,10 @@ } }, { - "id": 23572, + "id": 26549, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -74398,416 +74519,947 @@ } }, { - "id": 23573, + "id": 26550, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - }, + } + ] + }, + "minecraft:deepslate_bricks": { + "states": [ { - "id": 23574, + "default": true, + "id": 26140 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "states": [ + { + "default": true, + "id": 128 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "states": [ + { + "default": true, + "id": 22943 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "states": [ + { + "default": true, + "id": 4275 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "states": [ + { + "default": true, + "id": 7512 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "states": [ + { + "default": true, + "id": 126 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "states": [ + { + "default": true, + "id": 521 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5736, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "lit": "true" } }, { - "id": 23575, + "default": true, + "id": 5737, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "lit": "false" } - }, + } + ] + }, + "minecraft:deepslate_tile_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 23576, + "id": 25810, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "type": "top", + "waterlogged": "true" } }, { - "id": 23577, + "id": 25811, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "type": "top", + "waterlogged": "false" } }, { - "id": 23578, + "id": 25812, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 23579, + "default": true, + "id": 25813, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 23580, + "id": 25814, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "type": "double", + "waterlogged": "true" } }, { - "id": 23581, + "id": 25815, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25730, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 23582, + "id": 25731, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 23583, + "id": 25732, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 23584, + "id": 25733, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 23585, + "id": 25734, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 23586, + "id": 25735, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 23587, + "id": 25736, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 23588, + "id": 25737, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 23589, + "id": 25738, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 23590, + "id": 25739, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 23591, + "id": 25740, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 23592, + "default": true, + "id": 25741, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 23593, + "id": 25742, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 23594, + "id": 25743, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 23595, + "id": 25744, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 23596, + "id": 25745, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 23597, + "id": 25746, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 23598, + "id": 25747, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 23599, + "id": 25748, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 23600, + "id": 25749, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 23601, + "id": 25750, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 23602, + "id": 25751, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 23603, + "id": 25752, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 23604, + "id": 25753, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 23605, + "id": 25754, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 23606, + "id": 25755, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 23607, + "id": 25756, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 23608, + "id": 25757, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 23609, + "id": 25758, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 23610, + "id": 25759, "properties": { - "east": "low", + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25768, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25769, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25770, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25771, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25774, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25775, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25778, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25779, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25788, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25789, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25790, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25791, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25794, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25795, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25798, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25799, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25808, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25809, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25816, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74816,9 +75468,9 @@ } }, { - "id": 23611, + "id": 25817, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74827,9 +75479,9 @@ } }, { - "id": 23612, + "id": 25818, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74838,9 +75490,10 @@ } }, { - "id": 23613, + "default": true, + "id": 25819, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74849,9 +75502,9 @@ } }, { - "id": 23614, + "id": 25820, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74860,9 +75513,9 @@ } }, { - "id": 23615, + "id": 25821, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -74871,9 +75524,9 @@ } }, { - "id": 23616, + "id": 25822, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74882,9 +75535,9 @@ } }, { - "id": 23617, + "id": 25823, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74893,9 +75546,9 @@ } }, { - "id": 23618, + "id": 25824, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74904,9 +75557,9 @@ } }, { - "id": 23619, + "id": 25825, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74915,9 +75568,9 @@ } }, { - "id": 23620, + "id": 25826, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74926,9 +75579,9 @@ } }, { - "id": 23621, + "id": 25827, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -74937,9 +75590,9 @@ } }, { - "id": 23622, + "id": 25828, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -74948,9 +75601,9 @@ } }, { - "id": 23623, + "id": 25829, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -74959,9 +75612,9 @@ } }, { - "id": 23624, + "id": 25830, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -74970,9 +75623,9 @@ } }, { - "id": 23625, + "id": 25831, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -74981,9 +75634,9 @@ } }, { - "id": 23626, + "id": 25832, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -74992,9 +75645,9 @@ } }, { - "id": 23627, + "id": 25833, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -75003,9 +75656,9 @@ } }, { - "id": 23628, + "id": 25834, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75014,9 +75667,9 @@ } }, { - "id": 23629, + "id": 25835, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75025,9 +75678,9 @@ } }, { - "id": 23630, + "id": 25836, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75036,9 +75689,9 @@ } }, { - "id": 23631, + "id": 25837, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75047,9 +75700,9 @@ } }, { - "id": 23632, + "id": 25838, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75058,9 +75711,9 @@ } }, { - "id": 23633, + "id": 25839, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -75069,9 +75722,9 @@ } }, { - "id": 23634, + "id": 25840, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75080,9 +75733,9 @@ } }, { - "id": 23635, + "id": 25841, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75091,9 +75744,9 @@ } }, { - "id": 23636, + "id": 25842, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75102,9 +75755,9 @@ } }, { - "id": 23637, + "id": 25843, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75113,9 +75766,9 @@ } }, { - "id": 23638, + "id": 25844, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75124,9 +75777,9 @@ } }, { - "id": 23639, + "id": 25845, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -75135,9 +75788,9 @@ } }, { - "id": 23640, + "id": 25846, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75146,9 +75799,9 @@ } }, { - "id": 23641, + "id": 25847, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75157,9 +75810,9 @@ } }, { - "id": 23642, + "id": 25848, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75168,9 +75821,9 @@ } }, { - "id": 23643, + "id": 25849, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75179,9 +75832,9 @@ } }, { - "id": 23644, + "id": 25850, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75190,9 +75843,9 @@ } }, { - "id": 23645, + "id": 25851, "properties": { - "east": "low", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -75201,9 +75854,9 @@ } }, { - "id": 23646, + "id": 25852, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75212,9 +75865,9 @@ } }, { - "id": 23647, + "id": 25853, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75223,9 +75876,9 @@ } }, { - "id": 23648, + "id": 25854, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75234,9 +75887,9 @@ } }, { - "id": 23649, + "id": 25855, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75245,9 +75898,9 @@ } }, { - "id": 23650, + "id": 25856, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75256,9 +75909,9 @@ } }, { - "id": 23651, + "id": 25857, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -75267,9 +75920,9 @@ } }, { - "id": 23652, + "id": 25858, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75278,9 +75931,9 @@ } }, { - "id": 23653, + "id": 25859, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75289,9 +75942,9 @@ } }, { - "id": 23654, + "id": 25860, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75300,9 +75953,9 @@ } }, { - "id": 23655, + "id": 25861, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75311,9 +75964,9 @@ } }, { - "id": 23656, + "id": 25862, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75322,9 +75975,9 @@ } }, { - "id": 23657, + "id": 25863, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -75333,9 +75986,9 @@ } }, { - "id": 23658, + "id": 25864, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75344,9 +75997,9 @@ } }, { - "id": 23659, + "id": 25865, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75355,9 +76008,9 @@ } }, { - "id": 23660, + "id": 25866, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75366,9 +76019,9 @@ } }, { - "id": 23661, + "id": 25867, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75377,9 +76030,9 @@ } }, { - "id": 23662, + "id": 25868, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75388,9 +76041,9 @@ } }, { - "id": 23663, + "id": 25869, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -75399,9 +76052,9 @@ } }, { - "id": 23664, + "id": 25870, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75410,9 +76063,9 @@ } }, { - "id": 23665, + "id": 25871, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75421,9 +76074,9 @@ } }, { - "id": 23666, + "id": 25872, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75432,9 +76085,9 @@ } }, { - "id": 23667, + "id": 25873, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75443,9 +76096,9 @@ } }, { - "id": 23668, + "id": 25874, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75454,9 +76107,9 @@ } }, { - "id": 23669, + "id": 25875, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -75465,9 +76118,9 @@ } }, { - "id": 23670, + "id": 25876, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75476,9 +76129,9 @@ } }, { - "id": 23671, + "id": 25877, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75487,9 +76140,9 @@ } }, { - "id": 23672, + "id": 25878, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75498,9 +76151,9 @@ } }, { - "id": 23673, + "id": 25879, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75509,9 +76162,9 @@ } }, { - "id": 23674, + "id": 25880, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75520,9 +76173,9 @@ } }, { - "id": 23675, + "id": 25881, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -75531,9 +76184,9 @@ } }, { - "id": 23676, + "id": 25882, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75542,9 +76195,9 @@ } }, { - "id": 23677, + "id": 25883, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75553,9 +76206,9 @@ } }, { - "id": 23678, + "id": 25884, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75564,9 +76217,9 @@ } }, { - "id": 23679, + "id": 25885, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75575,9 +76228,9 @@ } }, { - "id": 23680, + "id": 25886, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75586,9 +76239,9 @@ } }, { - "id": 23681, + "id": 25887, "properties": { - "east": "low", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -75597,9 +76250,9 @@ } }, { - "id": 23682, + "id": 25888, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75608,9 +76261,9 @@ } }, { - "id": 23683, + "id": 25889, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75619,9 +76272,9 @@ } }, { - "id": 23684, + "id": 25890, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75630,9 +76283,9 @@ } }, { - "id": 23685, + "id": 25891, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75641,9 +76294,9 @@ } }, { - "id": 23686, + "id": 25892, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75652,9 +76305,9 @@ } }, { - "id": 23687, + "id": 25893, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -75663,9 +76316,9 @@ } }, { - "id": 23688, + "id": 25894, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75674,9 +76327,9 @@ } }, { - "id": 23689, + "id": 25895, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75685,9 +76338,9 @@ } }, { - "id": 23690, + "id": 25896, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75696,9 +76349,9 @@ } }, { - "id": 23691, + "id": 25897, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75707,9 +76360,9 @@ } }, { - "id": 23692, + "id": 25898, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75718,9 +76371,9 @@ } }, { - "id": 23693, + "id": 25899, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -75729,9 +76382,9 @@ } }, { - "id": 23694, + "id": 25900, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75740,9 +76393,9 @@ } }, { - "id": 23695, + "id": 25901, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75751,9 +76404,9 @@ } }, { - "id": 23696, + "id": 25902, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75762,9 +76415,9 @@ } }, { - "id": 23697, + "id": 25903, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75773,9 +76426,9 @@ } }, { - "id": 23698, + "id": 25904, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75784,9 +76437,9 @@ } }, { - "id": 23699, + "id": 25905, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -75795,9 +76448,9 @@ } }, { - "id": 23700, + "id": 25906, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75806,9 +76459,9 @@ } }, { - "id": 23701, + "id": 25907, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75817,9 +76470,9 @@ } }, { - "id": 23702, + "id": 25908, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75828,9 +76481,9 @@ } }, { - "id": 23703, + "id": 25909, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75839,9 +76492,9 @@ } }, { - "id": 23704, + "id": 25910, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75850,9 +76503,9 @@ } }, { - "id": 23705, + "id": 25911, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -75861,9 +76514,9 @@ } }, { - "id": 23706, + "id": 25912, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75872,9 +76525,9 @@ } }, { - "id": 23707, + "id": 25913, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75883,9 +76536,9 @@ } }, { - "id": 23708, + "id": 25914, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75894,9 +76547,9 @@ } }, { - "id": 23709, + "id": 25915, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75905,9 +76558,9 @@ } }, { - "id": 23710, + "id": 25916, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75916,9 +76569,9 @@ } }, { - "id": 23711, + "id": 25917, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -75927,9 +76580,9 @@ } }, { - "id": 23712, + "id": 25918, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75938,9 +76591,9 @@ } }, { - "id": 23713, + "id": 25919, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75949,9 +76602,9 @@ } }, { - "id": 23714, + "id": 25920, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75960,9 +76613,9 @@ } }, { - "id": 23715, + "id": 25921, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75971,9 +76624,9 @@ } }, { - "id": 23716, + "id": 25922, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75982,9 +76635,9 @@ } }, { - "id": 23717, + "id": 25923, "properties": { - "east": "low", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -75993,9 +76646,9 @@ } }, { - "id": 23718, + "id": 25924, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76004,9 +76657,9 @@ } }, { - "id": 23719, + "id": 25925, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76015,9 +76668,9 @@ } }, { - "id": 23720, + "id": 25926, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76026,9 +76679,9 @@ } }, { - "id": 23721, + "id": 25927, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76037,9 +76690,9 @@ } }, { - "id": 23722, + "id": 25928, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76048,9 +76701,9 @@ } }, { - "id": 23723, + "id": 25929, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "true", @@ -76059,9 +76712,9 @@ } }, { - "id": 23724, + "id": 25930, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76070,9 +76723,9 @@ } }, { - "id": 23725, + "id": 25931, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76081,9 +76734,9 @@ } }, { - "id": 23726, + "id": 25932, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76092,9 +76745,9 @@ } }, { - "id": 23727, + "id": 25933, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76103,9 +76756,9 @@ } }, { - "id": 23728, + "id": 25934, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76114,9 +76767,9 @@ } }, { - "id": 23729, + "id": 25935, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "none", "up": "false", @@ -76125,9 +76778,9 @@ } }, { - "id": 23730, + "id": 25936, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76136,9 +76789,9 @@ } }, { - "id": 23731, + "id": 25937, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76147,9 +76800,9 @@ } }, { - "id": 23732, + "id": 25938, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76158,9 +76811,9 @@ } }, { - "id": 23733, + "id": 25939, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76169,9 +76822,9 @@ } }, { - "id": 23734, + "id": 25940, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76180,9 +76833,9 @@ } }, { - "id": 23735, + "id": 25941, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "true", @@ -76191,9 +76844,9 @@ } }, { - "id": 23736, + "id": 25942, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76202,9 +76855,9 @@ } }, { - "id": 23737, + "id": 25943, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76213,9 +76866,9 @@ } }, { - "id": 23738, + "id": 25944, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76224,9 +76877,9 @@ } }, { - "id": 23739, + "id": 25945, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76235,9 +76888,9 @@ } }, { - "id": 23740, + "id": 25946, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76246,9 +76899,9 @@ } }, { - "id": 23741, + "id": 25947, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "low", "up": "false", @@ -76257,9 +76910,9 @@ } }, { - "id": 23742, + "id": 25948, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76268,9 +76921,9 @@ } }, { - "id": 23743, + "id": 25949, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76279,9 +76932,9 @@ } }, { - "id": 23744, + "id": 25950, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76290,9 +76943,9 @@ } }, { - "id": 23745, + "id": 25951, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76301,9 +76954,9 @@ } }, { - "id": 23746, + "id": 25952, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76312,9 +76965,9 @@ } }, { - "id": 23747, + "id": 25953, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "true", @@ -76323,9 +76976,9 @@ } }, { - "id": 23748, + "id": 25954, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76334,9 +76987,9 @@ } }, { - "id": 23749, + "id": 25955, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76345,9 +76998,9 @@ } }, { - "id": 23750, + "id": 25956, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76356,9 +77009,9 @@ } }, { - "id": 23751, + "id": 25957, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76367,9 +77020,9 @@ } }, { - "id": 23752, + "id": 25958, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76378,9 +77031,9 @@ } }, { - "id": 23753, + "id": 25959, "properties": { - "east": "tall", + "east": "low", "north": "none", "south": "tall", "up": "false", @@ -76389,9 +77042,9 @@ } }, { - "id": 23754, + "id": 25960, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76400,9 +77053,9 @@ } }, { - "id": 23755, + "id": 25961, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76411,9 +77064,9 @@ } }, { - "id": 23756, + "id": 25962, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76422,9 +77075,9 @@ } }, { - "id": 23757, + "id": 25963, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76433,9 +77086,9 @@ } }, { - "id": 23758, + "id": 25964, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76444,9 +77097,9 @@ } }, { - "id": 23759, + "id": 25965, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "true", @@ -76455,9 +77108,9 @@ } }, { - "id": 23760, + "id": 25966, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76466,9 +77119,9 @@ } }, { - "id": 23761, + "id": 25967, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76477,9 +77130,9 @@ } }, { - "id": 23762, + "id": 25968, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76488,9 +77141,9 @@ } }, { - "id": 23763, + "id": 25969, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76499,9 +77152,9 @@ } }, { - "id": 23764, + "id": 25970, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76510,9 +77163,9 @@ } }, { - "id": 23765, + "id": 25971, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "none", "up": "false", @@ -76521,9 +77174,9 @@ } }, { - "id": 23766, + "id": 25972, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76532,9 +77185,9 @@ } }, { - "id": 23767, + "id": 25973, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76543,9 +77196,9 @@ } }, { - "id": 23768, + "id": 25974, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76554,9 +77207,9 @@ } }, { - "id": 23769, + "id": 25975, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76565,9 +77218,9 @@ } }, { - "id": 23770, + "id": 25976, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76576,9 +77229,9 @@ } }, { - "id": 23771, + "id": 25977, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "true", @@ -76587,9 +77240,9 @@ } }, { - "id": 23772, + "id": 25978, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76598,9 +77251,9 @@ } }, { - "id": 23773, + "id": 25979, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76609,9 +77262,9 @@ } }, { - "id": 23774, + "id": 25980, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76620,9 +77273,9 @@ } }, { - "id": 23775, + "id": 25981, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76631,9 +77284,9 @@ } }, { - "id": 23776, + "id": 25982, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76642,9 +77295,9 @@ } }, { - "id": 23777, + "id": 25983, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "low", "up": "false", @@ -76653,9 +77306,9 @@ } }, { - "id": 23778, + "id": 25984, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76664,9 +77317,9 @@ } }, { - "id": 23779, + "id": 25985, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76675,9 +77328,9 @@ } }, { - "id": 23780, + "id": 25986, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76686,9 +77339,9 @@ } }, { - "id": 23781, + "id": 25987, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76697,9 +77350,9 @@ } }, { - "id": 23782, + "id": 25988, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76708,9 +77361,9 @@ } }, { - "id": 23783, + "id": 25989, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "true", @@ -76719,9 +77372,9 @@ } }, { - "id": 23784, + "id": 25990, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76730,9 +77383,9 @@ } }, { - "id": 23785, + "id": 25991, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76741,9 +77394,9 @@ } }, { - "id": 23786, + "id": 25992, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76752,9 +77405,9 @@ } }, { - "id": 23787, + "id": 25993, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76763,9 +77416,9 @@ } }, { - "id": 23788, + "id": 25994, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76774,9 +77427,9 @@ } }, { - "id": 23789, + "id": 25995, "properties": { - "east": "tall", + "east": "low", "north": "low", "south": "tall", "up": "false", @@ -76785,9 +77438,9 @@ } }, { - "id": 23790, + "id": 25996, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76796,9 +77449,9 @@ } }, { - "id": 23791, + "id": 25997, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76807,9 +77460,9 @@ } }, { - "id": 23792, + "id": 25998, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76818,9 +77471,9 @@ } }, { - "id": 23793, + "id": 25999, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76829,9 +77482,9 @@ } }, { - "id": 23794, + "id": 26000, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76840,9 +77493,9 @@ } }, { - "id": 23795, + "id": 26001, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "true", @@ -76851,9 +77504,9 @@ } }, { - "id": 23796, + "id": 26002, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76862,9 +77515,9 @@ } }, { - "id": 23797, + "id": 26003, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76873,9 +77526,9 @@ } }, { - "id": 23798, + "id": 26004, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76884,9 +77537,9 @@ } }, { - "id": 23799, + "id": 26005, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76895,9 +77548,9 @@ } }, { - "id": 23800, + "id": 26006, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76906,9 +77559,9 @@ } }, { - "id": 23801, + "id": 26007, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "none", "up": "false", @@ -76917,9 +77570,9 @@ } }, { - "id": 23802, + "id": 26008, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76928,9 +77581,9 @@ } }, { - "id": 23803, + "id": 26009, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76939,9 +77592,9 @@ } }, { - "id": 23804, + "id": 26010, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76950,9 +77603,9 @@ } }, { - "id": 23805, + "id": 26011, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76961,9 +77614,9 @@ } }, { - "id": 23806, + "id": 26012, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76972,9 +77625,9 @@ } }, { - "id": 23807, + "id": 26013, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "true", @@ -76983,9 +77636,9 @@ } }, { - "id": 23808, + "id": 26014, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -76994,9 +77647,9 @@ } }, { - "id": 23809, + "id": 26015, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -77005,9 +77658,9 @@ } }, { - "id": 23810, + "id": 26016, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -77016,9 +77669,9 @@ } }, { - "id": 23811, + "id": 26017, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -77027,9 +77680,9 @@ } }, { - "id": 23812, + "id": 26018, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -77038,9 +77691,9 @@ } }, { - "id": 23813, + "id": 26019, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "low", "up": "false", @@ -77049,9 +77702,9 @@ } }, { - "id": 23814, + "id": 26020, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77060,9 +77713,9 @@ } }, { - "id": 23815, + "id": 26021, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77071,9 +77724,9 @@ } }, { - "id": 23816, + "id": 26022, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77082,9 +77735,9 @@ } }, { - "id": 23817, + "id": 26023, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77093,9 +77746,9 @@ } }, { - "id": 23818, + "id": 26024, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77104,9 +77757,9 @@ } }, { - "id": 23819, + "id": 26025, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "true", @@ -77115,9 +77768,9 @@ } }, { - "id": 23820, + "id": 26026, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -77126,9 +77779,9 @@ } }, { - "id": 23821, + "id": 26027, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -77137,9 +77790,9 @@ } }, { - "id": 23822, + "id": 26028, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -77148,9 +77801,9 @@ } }, { - "id": 23823, + "id": 26029, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -77159,9 +77812,9 @@ } }, { - "id": 23824, + "id": 26030, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", @@ -77170,1252 +77823,560 @@ } }, { - "id": 23825, + "id": 26031, "properties": { - "east": "tall", + "east": "low", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:deepslate_tiles": { - "states": [ - { - "default": true, - "id": 23415 - } - ] - }, - "minecraft:detector_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 1968, + "id": 26032, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1969, + "id": 26033, "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1970, + "id": 26034, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1971, + "id": 26035, "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 1972, + "id": 26036, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1973, + "id": 26037, "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1974, + "id": 26038, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1975, + "id": 26039, "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1976, + "id": 26040, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1977, + "id": 26041, "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 1978, + "id": 26042, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1979, + "id": 26043, "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1980, + "id": 26044, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 1981, + "id": 26045, "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1982, + "id": 26046, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1983, + "id": 26047, "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 1984, + "id": 26048, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1985, + "id": 26049, "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1986, + "id": 26050, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1987, + "id": 26051, "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1988, + "id": 26052, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1989, + "id": 26053, "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 1990, + "id": 26054, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1991, + "id": 26055, "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:diamond_block": { - "states": [ - { - "default": true, - "id": 4276 - } - ] - }, - "minecraft:diamond_ore": { - "states": [ - { - "default": true, - "id": 4274 - } - ] - }, - "minecraft:diorite": { - "states": [ - { - "default": true, - "id": 4 - } - ] - }, - "minecraft:diorite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 14154, + "id": 26056, "properties": { - "type": "top", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 14155, + "id": 26057, "properties": { - "type": "top", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 14156, + "id": 26058, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 14157, + "id": 26059, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 14158, + "id": 26060, "properties": { - "type": "double", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 14159, + "id": 26061, "properties": { - "type": "double", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:diorite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 14002, + "id": 26062, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 14003, + "id": 26063, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 14004, + "id": 26064, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 14005, + "id": 26065, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 14006, + "id": 26066, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 14007, + "id": 26067, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 14008, + "id": 26068, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 14009, + "id": 26069, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 14010, + "id": 26070, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 14011, + "id": 26071, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 14012, + "id": 26072, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 14013, + "id": 26073, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 14014, + "id": 26074, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 14015, + "id": 26075, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 14016, + "id": 26076, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 14017, + "id": 26077, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 14018, + "id": 26078, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 14019, + "id": 26079, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 14020, + "id": 26080, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 14021, + "id": 26081, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14022, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14023, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14024, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14025, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14026, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14027, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14028, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14029, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14030, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14031, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14032, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14033, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14034, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14035, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14036, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14037, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14038, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14039, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14040, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14041, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14042, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14043, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14044, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14045, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14046, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14047, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14048, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14049, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14050, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14051, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14052, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14053, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14054, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14055, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14056, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14057, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14058, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14059, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14060, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14061, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14062, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14063, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14064, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14065, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14066, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14067, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14068, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14069, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14070, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14071, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 14072, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 14073, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 14074, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 14075, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 14076, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 14077, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 14078, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 14079, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 14080, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 14081, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:diorite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 18048, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18049, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18050, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 18051, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18052, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18053, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18054, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18055, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 18056, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 18057, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 18058, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 18059, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 18060, - "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 18061, - "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -78423,10 +78384,10 @@ } }, { - "id": 18062, + "id": 26082, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -78434,10 +78395,10 @@ } }, { - "id": 18063, + "id": 26083, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -78445,10 +78406,10 @@ } }, { - "id": 18064, + "id": 26084, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -78456,10 +78417,10 @@ } }, { - "id": 18065, + "id": 26085, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -78467,10 +78428,10 @@ } }, { - "id": 18066, + "id": 26086, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -78478,10 +78439,10 @@ } }, { - "id": 18067, + "id": 26087, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -78489,10 +78450,10 @@ } }, { - "id": 18068, + "id": 26088, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -78500,10 +78461,10 @@ } }, { - "id": 18069, + "id": 26089, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -78511,10 +78472,10 @@ } }, { - "id": 18070, + "id": 26090, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -78522,10 +78483,10 @@ } }, { - "id": 18071, + "id": 26091, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -78533,10 +78494,10 @@ } }, { - "id": 18072, + "id": 26092, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -78544,10 +78505,10 @@ } }, { - "id": 18073, + "id": 26093, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -78555,10 +78516,10 @@ } }, { - "id": 18074, + "id": 26094, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -78566,10 +78527,10 @@ } }, { - "id": 18075, + "id": 26095, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -78577,10 +78538,10 @@ } }, { - "id": 18076, + "id": 26096, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -78588,10 +78549,10 @@ } }, { - "id": 18077, + "id": 26097, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -78599,10 +78560,10 @@ } }, { - "id": 18078, + "id": 26098, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -78610,10 +78571,10 @@ } }, { - "id": 18079, + "id": 26099, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -78621,10 +78582,10 @@ } }, { - "id": 18080, + "id": 26100, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -78632,10 +78593,10 @@ } }, { - "id": 18081, + "id": 26101, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -78643,10 +78604,10 @@ } }, { - "id": 18082, + "id": 26102, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -78654,10 +78615,10 @@ } }, { - "id": 18083, + "id": 26103, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -78665,10 +78626,10 @@ } }, { - "id": 18084, + "id": 26104, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -78676,10 +78637,10 @@ } }, { - "id": 18085, + "id": 26105, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -78687,10 +78648,10 @@ } }, { - "id": 18086, + "id": 26106, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -78698,10 +78659,10 @@ } }, { - "id": 18087, + "id": 26107, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -78709,10 +78670,10 @@ } }, { - "id": 18088, + "id": 26108, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -78720,10 +78681,10 @@ } }, { - "id": 18089, + "id": 26109, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -78731,10 +78692,10 @@ } }, { - "id": 18090, + "id": 26110, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -78742,10 +78703,10 @@ } }, { - "id": 18091, + "id": 26111, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -78753,10 +78714,10 @@ } }, { - "id": 18092, + "id": 26112, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -78764,10 +78725,10 @@ } }, { - "id": 18093, + "id": 26113, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -78775,10 +78736,10 @@ } }, { - "id": 18094, + "id": 26114, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -78786,10 +78747,10 @@ } }, { - "id": 18095, + "id": 26115, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -78797,10 +78758,10 @@ } }, { - "id": 18096, + "id": 26116, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -78808,10 +78769,10 @@ } }, { - "id": 18097, + "id": 26117, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -78819,10 +78780,10 @@ } }, { - "id": 18098, + "id": 26118, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -78830,10 +78791,10 @@ } }, { - "id": 18099, + "id": 26119, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -78841,10 +78802,10 @@ } }, { - "id": 18100, + "id": 26120, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -78852,10 +78813,10 @@ } }, { - "id": 18101, + "id": 26121, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -78863,10 +78824,10 @@ } }, { - "id": 18102, + "id": 26122, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -78874,10 +78835,10 @@ } }, { - "id": 18103, + "id": 26123, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -78885,10 +78846,10 @@ } }, { - "id": 18104, + "id": 26124, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -78896,10 +78857,10 @@ } }, { - "id": 18105, + "id": 26125, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -78907,10 +78868,10 @@ } }, { - "id": 18106, + "id": 26126, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -78918,10 +78879,10 @@ } }, { - "id": 18107, + "id": 26127, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -78929,10 +78890,10 @@ } }, { - "id": 18108, + "id": 26128, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -78940,10 +78901,10 @@ } }, { - "id": 18109, + "id": 26129, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -78951,10 +78912,10 @@ } }, { - "id": 18110, + "id": 26130, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -78962,10 +78923,10 @@ } }, { - "id": 18111, + "id": 26131, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -78973,10 +78934,10 @@ } }, { - "id": 18112, + "id": 26132, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -78984,10 +78945,10 @@ } }, { - "id": 18113, + "id": 26133, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -78995,10 +78956,10 @@ } }, { - "id": 18114, + "id": 26134, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -79006,10 +78967,10 @@ } }, { - "id": 18115, + "id": 26135, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -79017,10 +78978,10 @@ } }, { - "id": 18116, + "id": 26136, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -79028,10 +78989,10 @@ } }, { - "id": 18117, + "id": 26137, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -79039,10 +79000,10 @@ } }, { - "id": 18118, + "id": 26138, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -79050,1209 +79011,1108 @@ } }, { - "id": 18119, + "id": 26139, "properties": { - "east": "none", - "north": "low", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - }, - { - "id": 18120, + } + ] + }, + "minecraft:deepslate_tiles": { + "states": [ + { + "default": true, + "id": 25729 + } + ] + }, + "minecraft:detector_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1968, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "powered": "true", + "shape": "north_south", + "waterlogged": "true" } }, { - "id": 18121, + "id": 1969, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "powered": "true", + "shape": "north_south", + "waterlogged": "false" } }, { - "id": 18122, + "id": 1970, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "powered": "true", + "shape": "east_west", + "waterlogged": "true" } }, { - "id": 18123, + "id": 1971, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "powered": "true", + "shape": "east_west", + "waterlogged": "false" } }, { - "id": 18124, + "id": 1972, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" } }, { - "id": 18125, + "id": 1973, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" } }, { - "id": 18126, + "id": 1974, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" } }, { - "id": 18127, + "id": 1975, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" } }, { - "id": 18128, + "id": 1976, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" } }, { - "id": 18129, + "id": 1977, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" } }, { - "id": 18130, + "id": 1978, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" } }, { - "id": 18131, + "id": 1979, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" } }, { - "id": 18132, + "id": 1980, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "powered": "false", + "shape": "north_south", + "waterlogged": "true" } }, { - "id": 18133, + "default": true, + "id": 1981, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "powered": "false", + "shape": "north_south", + "waterlogged": "false" } }, { - "id": 18134, + "id": 1982, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "powered": "false", + "shape": "east_west", + "waterlogged": "true" } }, { - "id": 18135, + "id": 1983, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "powered": "false", + "shape": "east_west", + "waterlogged": "false" } }, { - "id": 18136, + "id": 1984, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" } }, { - "id": 18137, + "id": 1985, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" } }, { - "id": 18138, + "id": 1986, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" } }, { - "id": 18139, + "id": 1987, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" } }, { - "id": 18140, + "id": 1988, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" } }, { - "id": 18141, + "id": 1989, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" } }, { - "id": 18142, + "id": 1990, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" } }, { - "id": 18143, + "id": 1991, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:diamond_block": { + "states": [ { - "id": 18144, + "default": true, + "id": 4276 + } + ] + }, + "minecraft:diamond_ore": { + "states": [ + { + "default": true, + "id": 4274 + } + ] + }, + "minecraft:diorite": { + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14154, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "type": "top", + "waterlogged": "true" } }, { - "id": 18145, + "id": 14155, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "type": "top", + "waterlogged": "false" } }, { - "id": 18146, + "id": 14156, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 18147, + "default": true, + "id": 14157, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 18148, + "id": 14158, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "type": "double", + "waterlogged": "true" } }, { - "id": 18149, + "id": 14159, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14002, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18150, + "id": 14003, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18151, + "id": 14004, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18152, + "id": 14005, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18153, + "id": 14006, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18154, + "id": 14007, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18155, + "id": 14008, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18156, + "id": 14009, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18157, + "id": 14010, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18158, + "id": 14011, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18159, + "id": 14012, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18160, + "default": true, + "id": 14013, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18161, + "id": 14014, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18162, + "id": 14015, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18163, + "id": 14016, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18164, + "id": 14017, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18165, + "id": 14018, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18166, + "id": 14019, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18167, + "id": 14020, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18168, + "id": 14021, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18169, + "id": 14022, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18170, + "id": 14023, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18171, + "id": 14024, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18172, + "id": 14025, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18173, + "id": 14026, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18174, + "id": 14027, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18175, + "id": 14028, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18176, + "id": 14029, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18177, + "id": 14030, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18178, + "id": 14031, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18179, + "id": 14032, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18180, + "id": 14033, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18181, + "id": 14034, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18182, + "id": 14035, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18183, + "id": 14036, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18184, + "id": 14037, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18185, + "id": 14038, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18186, + "id": 14039, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18187, + "id": 14040, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18188, + "id": 14041, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18189, + "id": 14042, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18190, + "id": 14043, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18191, + "id": 14044, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18192, + "id": 14045, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18193, + "id": 14046, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18194, + "id": 14047, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18195, + "id": 14048, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18196, + "id": 14049, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18197, + "id": 14050, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18198, + "id": 14051, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18199, + "id": 14052, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18200, + "id": 14053, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18201, + "id": 14054, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18202, + "id": 14055, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18203, + "id": 14056, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18204, + "id": 14057, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18205, + "id": 14058, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18206, + "id": 14059, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18207, + "id": 14060, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18208, + "id": 14061, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18209, + "id": 14062, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18210, + "id": 14063, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18211, + "id": 14064, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18212, + "id": 14065, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18213, + "id": 14066, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18214, + "id": 14067, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18215, + "id": 14068, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18216, + "id": 14069, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18217, + "id": 14070, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18218, + "id": 14071, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18219, + "id": 14072, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18220, + "id": 14073, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18221, + "id": 14074, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18222, + "id": 14075, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18223, + "id": 14076, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18224, + "id": 14077, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18225, + "id": 14078, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18226, + "id": 14079, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18227, + "id": 14080, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18228, + "id": 14081, "properties": { - "east": "low", - "north": "tall", + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18048, + "properties": { + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -80260,10 +80120,10 @@ } }, { - "id": 18229, + "id": 18049, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -80271,10 +80131,10 @@ } }, { - "id": 18230, + "id": 18050, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -80282,10 +80142,11 @@ } }, { - "id": 18231, + "default": true, + "id": 18051, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -80293,10 +80154,10 @@ } }, { - "id": 18232, + "id": 18052, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -80304,10 +80165,10 @@ } }, { - "id": 18233, + "id": 18053, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -80315,10 +80176,10 @@ } }, { - "id": 18234, + "id": 18054, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -80326,10 +80187,10 @@ } }, { - "id": 18235, + "id": 18055, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -80337,10 +80198,10 @@ } }, { - "id": 18236, + "id": 18056, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -80348,10 +80209,10 @@ } }, { - "id": 18237, + "id": 18057, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -80359,10 +80220,10 @@ } }, { - "id": 18238, + "id": 18058, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -80370,10 +80231,10 @@ } }, { - "id": 18239, + "id": 18059, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -80381,10 +80242,10 @@ } }, { - "id": 18240, + "id": 18060, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -80392,10 +80253,10 @@ } }, { - "id": 18241, + "id": 18061, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -80403,10 +80264,10 @@ } }, { - "id": 18242, + "id": 18062, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -80414,10 +80275,10 @@ } }, { - "id": 18243, + "id": 18063, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -80425,10 +80286,10 @@ } }, { - "id": 18244, + "id": 18064, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -80436,10 +80297,10 @@ } }, { - "id": 18245, + "id": 18065, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -80447,10 +80308,10 @@ } }, { - "id": 18246, + "id": 18066, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -80458,10 +80319,10 @@ } }, { - "id": 18247, + "id": 18067, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -80469,10 +80330,10 @@ } }, { - "id": 18248, + "id": 18068, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -80480,10 +80341,10 @@ } }, { - "id": 18249, + "id": 18069, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -80491,10 +80352,10 @@ } }, { - "id": 18250, + "id": 18070, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -80502,10 +80363,10 @@ } }, { - "id": 18251, + "id": 18071, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -80513,10 +80374,10 @@ } }, { - "id": 18252, + "id": 18072, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -80524,10 +80385,10 @@ } }, { - "id": 18253, + "id": 18073, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -80535,10 +80396,10 @@ } }, { - "id": 18254, + "id": 18074, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -80546,10 +80407,10 @@ } }, { - "id": 18255, + "id": 18075, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -80557,10 +80418,10 @@ } }, { - "id": 18256, + "id": 18076, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -80568,10 +80429,10 @@ } }, { - "id": 18257, + "id": 18077, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -80579,10 +80440,10 @@ } }, { - "id": 18258, + "id": 18078, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -80590,10 +80451,10 @@ } }, { - "id": 18259, + "id": 18079, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -80601,10 +80462,10 @@ } }, { - "id": 18260, + "id": 18080, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -80612,10 +80473,10 @@ } }, { - "id": 18261, + "id": 18081, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -80623,10 +80484,10 @@ } }, { - "id": 18262, + "id": 18082, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -80634,10 +80495,10 @@ } }, { - "id": 18263, + "id": 18083, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -80645,10 +80506,10 @@ } }, { - "id": 18264, + "id": 18084, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -80656,10 +80517,10 @@ } }, { - "id": 18265, + "id": 18085, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -80667,10 +80528,10 @@ } }, { - "id": 18266, + "id": 18086, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -80678,10 +80539,10 @@ } }, { - "id": 18267, + "id": 18087, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -80689,10 +80550,10 @@ } }, { - "id": 18268, + "id": 18088, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -80700,10 +80561,10 @@ } }, { - "id": 18269, + "id": 18089, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -80711,10 +80572,10 @@ } }, { - "id": 18270, + "id": 18090, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -80722,10 +80583,10 @@ } }, { - "id": 18271, + "id": 18091, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -80733,10 +80594,10 @@ } }, { - "id": 18272, + "id": 18092, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -80744,10 +80605,10 @@ } }, { - "id": 18273, + "id": 18093, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -80755,10 +80616,10 @@ } }, { - "id": 18274, + "id": 18094, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -80766,10 +80627,10 @@ } }, { - "id": 18275, + "id": 18095, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -80777,10 +80638,10 @@ } }, { - "id": 18276, + "id": 18096, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -80788,10 +80649,10 @@ } }, { - "id": 18277, + "id": 18097, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -80799,10 +80660,10 @@ } }, { - "id": 18278, + "id": 18098, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -80810,10 +80671,10 @@ } }, { - "id": 18279, + "id": 18099, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -80821,10 +80682,10 @@ } }, { - "id": 18280, + "id": 18100, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -80832,10 +80693,10 @@ } }, { - "id": 18281, + "id": 18101, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -80843,10 +80704,10 @@ } }, { - "id": 18282, + "id": 18102, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -80854,10 +80715,10 @@ } }, { - "id": 18283, + "id": 18103, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -80865,10 +80726,10 @@ } }, { - "id": 18284, + "id": 18104, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -80876,10 +80737,10 @@ } }, { - "id": 18285, + "id": 18105, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -80887,10 +80748,10 @@ } }, { - "id": 18286, + "id": 18106, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -80898,10 +80759,10 @@ } }, { - "id": 18287, + "id": 18107, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -80909,10 +80770,10 @@ } }, { - "id": 18288, + "id": 18108, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -80920,10 +80781,10 @@ } }, { - "id": 18289, + "id": 18109, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -80931,10 +80792,10 @@ } }, { - "id": 18290, + "id": 18110, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -80942,10 +80803,10 @@ } }, { - "id": 18291, + "id": 18111, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -80953,10 +80814,10 @@ } }, { - "id": 18292, + "id": 18112, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -80964,10 +80825,10 @@ } }, { - "id": 18293, + "id": 18113, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -80975,10 +80836,10 @@ } }, { - "id": 18294, + "id": 18114, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -80986,10 +80847,10 @@ } }, { - "id": 18295, + "id": 18115, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -80997,10 +80858,10 @@ } }, { - "id": 18296, + "id": 18116, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -81008,10 +80869,10 @@ } }, { - "id": 18297, + "id": 18117, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -81019,10 +80880,10 @@ } }, { - "id": 18298, + "id": 18118, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -81030,10 +80891,10 @@ } }, { - "id": 18299, + "id": 18119, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -81041,10 +80902,10 @@ } }, { - "id": 18300, + "id": 18120, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -81052,10 +80913,10 @@ } }, { - "id": 18301, + "id": 18121, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -81063,10 +80924,10 @@ } }, { - "id": 18302, + "id": 18122, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -81074,10 +80935,10 @@ } }, { - "id": 18303, + "id": 18123, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -81085,10 +80946,10 @@ } }, { - "id": 18304, + "id": 18124, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -81096,10 +80957,10 @@ } }, { - "id": 18305, + "id": 18125, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -81107,10 +80968,10 @@ } }, { - "id": 18306, + "id": 18126, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -81118,10 +80979,10 @@ } }, { - "id": 18307, + "id": 18127, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -81129,10 +80990,10 @@ } }, { - "id": 18308, + "id": 18128, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -81140,10 +81001,10 @@ } }, { - "id": 18309, + "id": 18129, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -81151,10 +81012,10 @@ } }, { - "id": 18310, + "id": 18130, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -81162,10 +81023,10 @@ } }, { - "id": 18311, + "id": 18131, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -81173,10 +81034,10 @@ } }, { - "id": 18312, + "id": 18132, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -81184,10 +81045,10 @@ } }, { - "id": 18313, + "id": 18133, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -81195,10 +81056,10 @@ } }, { - "id": 18314, + "id": 18134, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -81206,10 +81067,10 @@ } }, { - "id": 18315, + "id": 18135, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -81217,10 +81078,10 @@ } }, { - "id": 18316, + "id": 18136, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -81228,10 +81089,10 @@ } }, { - "id": 18317, + "id": 18137, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -81239,10 +81100,10 @@ } }, { - "id": 18318, + "id": 18138, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -81250,10 +81111,10 @@ } }, { - "id": 18319, + "id": 18139, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -81261,10 +81122,10 @@ } }, { - "id": 18320, + "id": 18140, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -81272,10 +81133,10 @@ } }, { - "id": 18321, + "id": 18141, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -81283,10 +81144,10 @@ } }, { - "id": 18322, + "id": 18142, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -81294,10 +81155,10 @@ } }, { - "id": 18323, + "id": 18143, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -81305,10 +81166,10 @@ } }, { - "id": 18324, + "id": 18144, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -81316,10 +81177,10 @@ } }, { - "id": 18325, + "id": 18145, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -81327,10 +81188,10 @@ } }, { - "id": 18326, + "id": 18146, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -81338,10 +81199,10 @@ } }, { - "id": 18327, + "id": 18147, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -81349,10 +81210,10 @@ } }, { - "id": 18328, + "id": 18148, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -81360,10 +81221,10 @@ } }, { - "id": 18329, + "id": 18149, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -81371,10 +81232,10 @@ } }, { - "id": 18330, + "id": 18150, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -81382,10 +81243,10 @@ } }, { - "id": 18331, + "id": 18151, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -81393,10 +81254,10 @@ } }, { - "id": 18332, + "id": 18152, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -81404,10 +81265,10 @@ } }, { - "id": 18333, + "id": 18153, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -81415,10 +81276,10 @@ } }, { - "id": 18334, + "id": 18154, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -81426,10 +81287,10 @@ } }, { - "id": 18335, + "id": 18155, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -81437,10 +81298,10 @@ } }, { - "id": 18336, + "id": 18156, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -81448,10 +81309,10 @@ } }, { - "id": 18337, + "id": 18157, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -81459,10 +81320,10 @@ } }, { - "id": 18338, + "id": 18158, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "true", @@ -81470,10 +81331,10 @@ } }, { - "id": 18339, + "id": 18159, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -81481,10 +81342,10 @@ } }, { - "id": 18340, + "id": 18160, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -81492,10 +81353,10 @@ } }, { - "id": 18341, + "id": 18161, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "true", "waterlogged": "false", @@ -81503,10 +81364,10 @@ } }, { - "id": 18342, + "id": 18162, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -81514,10 +81375,10 @@ } }, { - "id": 18343, + "id": 18163, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -81525,10 +81386,10 @@ } }, { - "id": 18344, + "id": 18164, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -81536,10 +81397,10 @@ } }, { - "id": 18345, + "id": 18165, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -81547,10 +81408,10 @@ } }, { - "id": 18346, + "id": 18166, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -81558,10 +81419,10 @@ } }, { - "id": 18347, + "id": 18167, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -81569,10 +81430,10 @@ } }, { - "id": 18348, + "id": 18168, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -81580,10 +81441,10 @@ } }, { - "id": 18349, + "id": 18169, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -81591,10 +81452,10 @@ } }, { - "id": 18350, + "id": 18170, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -81602,10 +81463,10 @@ } }, { - "id": 18351, + "id": 18171, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -81613,10 +81474,10 @@ } }, { - "id": 18352, + "id": 18172, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -81624,10 +81485,10 @@ } }, { - "id": 18353, + "id": 18173, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -81635,10 +81496,10 @@ } }, { - "id": 18354, + "id": 18174, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -81646,10 +81507,10 @@ } }, { - "id": 18355, + "id": 18175, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -81657,10 +81518,10 @@ } }, { - "id": 18356, + "id": 18176, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -81668,10 +81529,10 @@ } }, { - "id": 18357, + "id": 18177, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -81679,10 +81540,10 @@ } }, { - "id": 18358, + "id": 18178, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -81690,10 +81551,10 @@ } }, { - "id": 18359, + "id": 18179, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -81701,10 +81562,10 @@ } }, { - "id": 18360, + "id": 18180, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -81712,10 +81573,10 @@ } }, { - "id": 18361, + "id": 18181, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -81723,10 +81584,10 @@ } }, { - "id": 18362, + "id": 18182, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -81734,10 +81595,10 @@ } }, { - "id": 18363, + "id": 18183, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -81745,10 +81606,10 @@ } }, { - "id": 18364, + "id": 18184, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -81756,10 +81617,10 @@ } }, { - "id": 18365, + "id": 18185, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -81767,10 +81628,10 @@ } }, { - "id": 18366, + "id": 18186, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -81778,10 +81639,10 @@ } }, { - "id": 18367, + "id": 18187, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -81789,10 +81650,10 @@ } }, { - "id": 18368, + "id": 18188, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -81800,10 +81661,10 @@ } }, { - "id": 18369, + "id": 18189, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -81811,10 +81672,10 @@ } }, { - "id": 18370, + "id": 18190, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -81822,1605 +81683,1605 @@ } }, { - "id": 18371, + "id": 18191, "properties": { - "east": "tall", - "north": "tall", + "east": "low", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:dirt": { - "states": [ - { - "default": true, - "id": 10 - } - ] - }, - "minecraft:dirt_path": { - "states": [ - { - "default": true, - "id": 12513 - } - ] - }, - "minecraft:dispenser": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 523, + "id": 18192, "properties": { - "facing": "north", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 524, + "id": 18193, "properties": { - "facing": "north", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 525, + "id": 18194, "properties": { - "facing": "east", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 526, + "id": 18195, "properties": { - "facing": "east", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 527, + "id": 18196, "properties": { - "facing": "south", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 528, + "id": 18197, "properties": { - "facing": "south", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 529, + "id": 18198, "properties": { - "facing": "west", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 530, + "id": 18199, "properties": { - "facing": "west", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 531, + "id": 18200, "properties": { - "facing": "up", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 532, + "id": 18201, "properties": { - "facing": "up", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 533, + "id": 18202, "properties": { - "facing": "down", - "triggered": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 534, + "id": 18203, "properties": { - "facing": "down", - "triggered": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:dragon_egg": { - "states": [ - { - "default": true, - "id": 7416 - } - ] - }, - "minecraft:dragon_head": { - "properties": { - "powered": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "id": 9027, + "id": 18204, "properties": { - "powered": "true", - "rotation": "0" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9028, + "id": 18205, "properties": { - "powered": "true", - "rotation": "1" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9029, + "id": 18206, "properties": { - "powered": "true", - "rotation": "2" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9030, + "id": 18207, "properties": { - "powered": "true", - "rotation": "3" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9031, + "id": 18208, "properties": { - "powered": "true", - "rotation": "4" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 9032, + "id": 18209, "properties": { - "powered": "true", - "rotation": "5" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9033, + "id": 18210, "properties": { - "powered": "true", - "rotation": "6" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9034, + "id": 18211, "properties": { - "powered": "true", - "rotation": "7" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9035, + "id": 18212, "properties": { - "powered": "true", - "rotation": "8" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9036, + "id": 18213, "properties": { - "powered": "true", - "rotation": "9" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9037, + "id": 18214, "properties": { - "powered": "true", - "rotation": "10" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9038, + "id": 18215, "properties": { - "powered": "true", - "rotation": "11" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9039, + "id": 18216, "properties": { - "powered": "true", - "rotation": "12" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9040, + "id": 18217, "properties": { - "powered": "true", - "rotation": "13" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9041, + "id": 18218, "properties": { - "powered": "true", - "rotation": "14" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9042, + "id": 18219, "properties": { - "powered": "true", - "rotation": "15" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 9043, + "id": 18220, "properties": { - "powered": "false", - "rotation": "0" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 9044, + "id": 18221, "properties": { - "powered": "false", - "rotation": "1" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9045, + "id": 18222, "properties": { - "powered": "false", - "rotation": "2" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9046, + "id": 18223, "properties": { - "powered": "false", - "rotation": "3" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9047, + "id": 18224, "properties": { - "powered": "false", - "rotation": "4" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9048, + "id": 18225, "properties": { - "powered": "false", - "rotation": "5" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9049, + "id": 18226, "properties": { - "powered": "false", - "rotation": "6" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9050, + "id": 18227, "properties": { - "powered": "false", - "rotation": "7" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9051, + "id": 18228, "properties": { - "powered": "false", - "rotation": "8" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9052, + "id": 18229, "properties": { - "powered": "false", - "rotation": "9" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9053, + "id": 18230, "properties": { - "powered": "false", - "rotation": "10" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9054, + "id": 18231, "properties": { - "powered": "false", - "rotation": "11" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9055, + "id": 18232, "properties": { - "powered": "false", - "rotation": "12" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 9056, + "id": 18233, "properties": { - "powered": "false", - "rotation": "13" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9057, + "id": 18234, "properties": { - "powered": "false", - "rotation": "14" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9058, + "id": 18235, "properties": { - "powered": "false", - "rotation": "15" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:dragon_wall_head": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9059, + "id": 18236, "properties": { - "facing": "north", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 9060, + "id": 18237, "properties": { - "facing": "north", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9061, + "id": 18238, "properties": { - "facing": "south", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9062, + "id": 18239, "properties": { - "facing": "south", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9063, + "id": 18240, "properties": { - "facing": "west", - "powered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9064, + "id": 18241, "properties": { - "facing": "west", - "powered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9065, + "id": 18242, "properties": { - "facing": "east", - "powered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9066, + "id": 18243, "properties": { - "facing": "east", - "powered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:dried_kelp_block": { - "states": [ - { - "default": true, - "id": 12787 - } - ] - }, - "minecraft:dripstone_block": { - "states": [ - { - "default": true, - "id": 22454 - } - ] - }, - "minecraft:dropper": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "triggered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9344, + "id": 18244, "properties": { - "facing": "north", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 9345, + "id": 18245, "properties": { - "facing": "north", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9346, + "id": 18246, "properties": { - "facing": "east", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9347, + "id": 18247, "properties": { - "facing": "east", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9348, + "id": 18248, "properties": { - "facing": "south", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9349, + "id": 18249, "properties": { - "facing": "south", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9350, + "id": 18250, "properties": { - "facing": "west", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9351, + "id": 18251, "properties": { - "facing": "west", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9352, + "id": 18252, "properties": { - "facing": "up", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9353, + "id": 18253, "properties": { - "facing": "up", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9354, + "id": 18254, "properties": { - "facing": "down", - "triggered": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9355, + "id": 18255, "properties": { - "facing": "down", - "triggered": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:emerald_block": { - "states": [ + }, { - "default": true, - "id": 7665 - } - ] - }, - "minecraft:emerald_ore": { - "states": [ + "id": 18256, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, { - "default": true, - "id": 7511 - } - ] - }, - "minecraft:enchanting_table": { - "states": [ - { - "default": true, - "id": 7389 - } - ] - }, - "minecraft:end_gateway": { - "states": [ - { - "default": true, - "id": 12514 - } - ] - }, - "minecraft:end_portal": { - "states": [ - { - "default": true, - "id": 7406 - } - ] - }, - "minecraft:end_portal_frame": { - "properties": { - "eye": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "id": 7407, + "id": 18257, "properties": { - "eye": "true", - "facing": "north" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7408, + "id": 18258, "properties": { - "eye": "true", - "facing": "south" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7409, + "id": 18259, "properties": { - "eye": "true", - "facing": "west" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7410, + "id": 18260, "properties": { - "eye": "true", - "facing": "east" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 7411, + "id": 18261, "properties": { - "eye": "false", - "facing": "north" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7412, + "id": 18262, "properties": { - "eye": "false", - "facing": "south" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7413, + "id": 18263, "properties": { - "eye": "false", - "facing": "west" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7414, + "id": 18264, "properties": { - "eye": "false", - "facing": "east" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:end_rod": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12334, + "id": 18265, "properties": { - "facing": "north" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 12335, + "id": 18266, "properties": { - "facing": "east" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 12336, + "id": 18267, "properties": { - "facing": "south" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 12337, + "id": 18268, "properties": { - "facing": "west" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 12338, + "id": 18269, "properties": { - "facing": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 12339, + "id": 18270, "properties": { - "facing": "down" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:end_stone": { - "states": [ - { - "default": true, - "id": 7415 - } - ] - }, - "minecraft:end_stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 14112, + "id": 18271, "properties": { - "type": "top", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 14113, + "id": 18272, "properties": { - "type": "top", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 14114, + "id": 18273, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 14115, + "id": 18274, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 14116, + "id": 18275, "properties": { - "type": "double", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 14117, + "id": 18276, "properties": { - "type": "double", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:end_stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 13362, + "id": 18277, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13363, + "id": 18278, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13364, + "id": 18279, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13365, + "id": 18280, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13366, + "id": 18281, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13367, + "id": 18282, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13368, + "id": 18283, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13369, + "id": 18284, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13370, + "id": 18285, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13371, + "id": 18286, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13372, + "id": 18287, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 13373, + "id": 18288, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13374, + "id": 18289, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13375, + "id": 18290, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13376, + "id": 18291, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13377, + "id": 18292, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13378, + "id": 18293, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13379, + "id": 18294, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13380, + "id": 18295, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13381, + "id": 18296, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13382, + "id": 18297, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13383, + "id": 18298, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13384, + "id": 18299, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13385, + "id": 18300, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13386, + "id": 18301, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13387, + "id": 18302, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13388, + "id": 18303, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13389, + "id": 18304, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13390, + "id": 18305, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13391, + "id": 18306, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13392, + "id": 18307, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13393, + "id": 18308, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13394, + "id": 18309, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13395, + "id": 18310, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13396, + "id": 18311, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13397, + "id": 18312, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13398, + "id": 18313, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13399, + "id": 18314, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13400, + "id": 18315, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13401, + "id": 18316, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13402, + "id": 18317, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13403, + "id": 18318, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13404, + "id": 18319, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13405, + "id": 18320, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13406, + "id": 18321, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13407, + "id": 18322, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13408, + "id": 18323, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13409, + "id": 18324, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13410, + "id": 18325, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13411, + "id": 18326, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13412, + "id": 18327, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13413, + "id": 18328, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13414, + "id": 18329, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13415, + "id": 18330, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13416, + "id": 18331, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13417, + "id": 18332, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13418, + "id": 18333, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13419, + "id": 18334, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13420, + "id": 18335, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13421, + "id": 18336, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13422, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13423, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13424, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13425, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13426, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13427, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13428, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13429, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13430, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13431, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13432, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13433, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13434, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13435, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13436, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13437, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13438, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13439, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13440, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13441, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:end_stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17724, - "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -83428,10 +83289,10 @@ } }, { - "id": 17725, + "id": 18337, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -83439,10 +83300,10 @@ } }, { - "id": 17726, + "id": 18338, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "true", @@ -83450,11 +83311,10 @@ } }, { - "default": true, - "id": 17727, + "id": 18339, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -83462,10 +83322,10 @@ } }, { - "id": 17728, + "id": 18340, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -83473,10 +83333,10 @@ } }, { - "id": 17729, + "id": 18341, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "true", "waterlogged": "false", @@ -83484,10 +83344,10 @@ } }, { - "id": 17730, + "id": 18342, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -83495,10 +83355,10 @@ } }, { - "id": 17731, + "id": 18343, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -83506,10 +83366,10 @@ } }, { - "id": 17732, + "id": 18344, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "true", @@ -83517,10 +83377,10 @@ } }, { - "id": 17733, + "id": 18345, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -83528,10 +83388,10 @@ } }, { - "id": 17734, + "id": 18346, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -83539,10 +83399,10 @@ } }, { - "id": 17735, + "id": 18347, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "none", "up": "false", "waterlogged": "false", @@ -83550,10 +83410,10 @@ } }, { - "id": 17736, + "id": 18348, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -83561,10 +83421,10 @@ } }, { - "id": 17737, + "id": 18349, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -83572,10 +83432,10 @@ } }, { - "id": 17738, + "id": 18350, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "true", @@ -83583,10 +83443,10 @@ } }, { - "id": 17739, + "id": 18351, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -83594,10 +83454,10 @@ } }, { - "id": 17740, + "id": 18352, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -83605,10 +83465,10 @@ } }, { - "id": 17741, + "id": 18353, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "true", "waterlogged": "false", @@ -83616,10 +83476,10 @@ } }, { - "id": 17742, + "id": 18354, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -83627,10 +83487,10 @@ } }, { - "id": 17743, + "id": 18355, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -83638,10 +83498,10 @@ } }, { - "id": 17744, + "id": 18356, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "true", @@ -83649,10 +83509,10 @@ } }, { - "id": 17745, + "id": 18357, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -83660,10 +83520,10 @@ } }, { - "id": 17746, + "id": 18358, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -83671,10 +83531,10 @@ } }, { - "id": 17747, + "id": 18359, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "low", "up": "false", "waterlogged": "false", @@ -83682,10 +83542,10 @@ } }, { - "id": 17748, + "id": 18360, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -83693,10 +83553,10 @@ } }, { - "id": 17749, + "id": 18361, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -83704,10 +83564,10 @@ } }, { - "id": 17750, + "id": 18362, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "true", @@ -83715,10 +83575,10 @@ } }, { - "id": 17751, + "id": 18363, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -83726,10 +83586,10 @@ } }, { - "id": 17752, + "id": 18364, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -83737,10 +83597,10 @@ } }, { - "id": 17753, + "id": 18365, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "true", "waterlogged": "false", @@ -83748,10 +83608,10 @@ } }, { - "id": 17754, + "id": 18366, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -83759,10 +83619,10 @@ } }, { - "id": 17755, + "id": 18367, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -83770,10 +83630,10 @@ } }, { - "id": 17756, + "id": 18368, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "true", @@ -83781,10 +83641,10 @@ } }, { - "id": 17757, + "id": 18369, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -83792,10 +83652,10 @@ } }, { - "id": 17758, + "id": 18370, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", @@ -83803,2000 +83663,1604 @@ } }, { - "id": 17759, + "id": 18371, "properties": { - "east": "none", - "north": "none", + "east": "tall", + "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - }, + } + ] + }, + "minecraft:dirt": { + "states": [ { - "id": 17760, + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "states": [ + { + "default": true, + "id": 12513 + } + ] + }, + "minecraft:dispenser": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 523, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "triggered": "true" } }, { - "id": 17761, + "default": true, + "id": 524, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "triggered": "false" } }, { - "id": 17762, + "id": 525, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "triggered": "true" } }, { - "id": 17763, + "id": 526, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "triggered": "false" } }, { - "id": 17764, + "id": 527, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "triggered": "true" } }, { - "id": 17765, + "id": 528, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "triggered": "false" } }, { - "id": 17766, + "id": 529, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "triggered": "true" } }, { - "id": 17767, + "id": 530, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "triggered": "false" } }, { - "id": 17768, + "id": 531, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "up", + "triggered": "true" } }, { - "id": 17769, + "id": 532, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "up", + "triggered": "false" } }, { - "id": 17770, + "id": 533, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "down", + "triggered": "true" } }, { - "id": 17771, + "id": 534, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "down", + "triggered": "false" } - }, + } + ] + }, + "minecraft:dragon_egg": { + "states": [ { - "id": 17772, + "default": true, + "id": 7416 + } + ] + }, + "minecraft:dragon_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9027, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "powered": "true", + "rotation": "0" } }, { - "id": 17773, + "id": 9028, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "powered": "true", + "rotation": "1" } }, { - "id": 17774, + "id": 9029, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "powered": "true", + "rotation": "2" } }, { - "id": 17775, + "id": 9030, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "powered": "true", + "rotation": "3" } }, { - "id": 17776, + "id": 9031, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "powered": "true", + "rotation": "4" } }, { - "id": 17777, + "id": 9032, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "powered": "true", + "rotation": "5" } }, { - "id": 17778, + "id": 9033, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "powered": "true", + "rotation": "6" } }, { - "id": 17779, + "id": 9034, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "powered": "true", + "rotation": "7" } }, { - "id": 17780, + "id": 9035, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "powered": "true", + "rotation": "8" } }, { - "id": 17781, + "id": 9036, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "powered": "true", + "rotation": "9" } }, { - "id": 17782, + "id": 9037, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "powered": "true", + "rotation": "10" } }, { - "id": 17783, + "id": 9038, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "powered": "true", + "rotation": "11" } }, { - "id": 17784, + "id": 9039, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "powered": "true", + "rotation": "12" } }, { - "id": 17785, + "id": 9040, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "powered": "true", + "rotation": "13" } }, { - "id": 17786, + "id": 9041, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "powered": "true", + "rotation": "14" } }, { - "id": 17787, + "id": 9042, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "powered": "true", + "rotation": "15" } }, { - "id": 17788, + "default": true, + "id": 9043, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "powered": "false", + "rotation": "0" } }, { - "id": 17789, + "id": 9044, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "powered": "false", + "rotation": "1" } }, { - "id": 17790, + "id": 9045, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "powered": "false", + "rotation": "2" } }, { - "id": 17791, + "id": 9046, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "powered": "false", + "rotation": "3" } }, { - "id": 17792, + "id": 9047, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "powered": "false", + "rotation": "4" } }, { - "id": 17793, + "id": 9048, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "powered": "false", + "rotation": "5" } }, { - "id": 17794, + "id": 9049, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "powered": "false", + "rotation": "6" } }, { - "id": 17795, + "id": 9050, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "powered": "false", + "rotation": "7" } }, { - "id": 17796, + "id": 9051, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "powered": "false", + "rotation": "8" } }, { - "id": 17797, + "id": 9052, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "powered": "false", + "rotation": "9" } }, { - "id": 17798, + "id": 9053, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "powered": "false", + "rotation": "10" } }, { - "id": 17799, + "id": 9054, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "powered": "false", + "rotation": "11" } }, { - "id": 17800, + "id": 9055, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "powered": "false", + "rotation": "12" } }, { - "id": 17801, + "id": 9056, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "powered": "false", + "rotation": "13" } }, { - "id": 17802, + "id": 9057, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "powered": "false", + "rotation": "14" } }, { - "id": 17803, + "id": 9058, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "powered": "false", + "rotation": "15" } - }, + } + ] + }, + "minecraft:dragon_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 17804, + "id": 9059, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "powered": "true" } }, { - "id": 17805, + "default": true, + "id": 9060, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "powered": "false" } }, { - "id": 17806, + "id": 9061, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "powered": "true" } }, { - "id": 17807, + "id": 9062, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "powered": "false" } }, { - "id": 17808, + "id": 9063, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "powered": "true" } }, { - "id": 17809, + "id": 9064, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "powered": "false" } }, { - "id": 17810, + "id": 9065, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "powered": "true" } }, { - "id": 17811, + "id": 9066, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "powered": "false" } - }, + } + ] + }, + "minecraft:dried_kelp_block": { + "states": [ { - "id": 17812, - "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, + "default": true, + "id": 12787 + } + ] + }, + "minecraft:dripstone_block": { + "states": [ { - "id": 17813, + "default": true, + "id": 24768 + } + ] + }, + "minecraft:dropper": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9344, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "triggered": "true" } }, { - "id": 17814, + "default": true, + "id": 9345, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "triggered": "false" } }, { - "id": 17815, + "id": 9346, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "triggered": "true" } }, { - "id": 17816, + "id": 9347, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "triggered": "false" } }, { - "id": 17817, + "id": 9348, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "triggered": "true" } }, { - "id": 17818, + "id": 9349, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "triggered": "false" } }, { - "id": 17819, + "id": 9350, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "triggered": "true" } }, { - "id": 17820, + "id": 9351, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "triggered": "false" } }, { - "id": 17821, + "id": 9352, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "up", + "triggered": "true" } }, { - "id": 17822, + "id": 9353, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "up", + "triggered": "false" } }, { - "id": 17823, + "id": 9354, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "down", + "triggered": "true" } }, { - "id": 17824, + "id": 9355, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "down", + "triggered": "false" } - }, + } + ] + }, + "minecraft:emerald_block": { + "states": [ { - "id": 17825, + "default": true, + "id": 7665 + } + ] + }, + "minecraft:emerald_ore": { + "states": [ + { + "default": true, + "id": 7511 + } + ] + }, + "minecraft:enchanting_table": { + "states": [ + { + "default": true, + "id": 7389 + } + ] + }, + "minecraft:end_gateway": { + "states": [ + { + "default": true, + "id": 12514 + } + ] + }, + "minecraft:end_portal": { + "states": [ + { + "default": true, + "id": 7406 + } + ] + }, + "minecraft:end_portal_frame": { + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 7407, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "eye": "true", + "facing": "north" } }, { - "id": 17826, + "id": 7408, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "eye": "true", + "facing": "south" } }, { - "id": 17827, + "id": 7409, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "eye": "true", + "facing": "west" } }, { - "id": 17828, + "id": 7410, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "eye": "true", + "facing": "east" } }, { - "id": 17829, + "default": true, + "id": 7411, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "eye": "false", + "facing": "north" } }, { - "id": 17830, + "id": 7412, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "eye": "false", + "facing": "south" } }, { - "id": 17831, + "id": 7413, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "eye": "false", + "facing": "west" } }, { - "id": 17832, + "id": 7414, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "eye": "false", + "facing": "east" } - }, + } + ] + }, + "minecraft:end_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 17833, + "id": 12334, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north" } }, { - "id": 17834, + "id": 12335, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east" } }, { - "id": 17835, + "id": 12336, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south" } }, { - "id": 17836, + "id": 12337, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west" } }, { - "id": 17837, + "default": true, + "id": 12338, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "up" } }, { - "id": 17838, + "id": 12339, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "down" } - }, + } + ] + }, + "minecraft:end_stone": { + "states": [ { - "id": 17839, + "default": true, + "id": 7415 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14112, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "type": "top", + "waterlogged": "true" } }, { - "id": 17840, + "id": 14113, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "type": "top", + "waterlogged": "false" } }, { - "id": 17841, + "id": 14114, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 17842, + "default": true, + "id": 14115, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 17843, + "id": 14116, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "type": "double", + "waterlogged": "true" } }, { - "id": 17844, + "id": 14117, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 17845, + "id": 13362, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17846, + "id": 13363, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17847, + "id": 13364, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17848, + "id": 13365, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17849, + "id": 13366, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17850, + "id": 13367, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17851, + "id": 13368, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17852, + "id": 13369, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17853, + "id": 13370, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17854, + "id": 13371, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17855, + "id": 13372, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17856, + "default": true, + "id": 13373, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17857, + "id": 13374, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17858, + "id": 13375, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17859, + "id": 13376, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17860, + "id": 13377, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17861, + "id": 13378, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17862, + "id": 13379, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17863, + "id": 13380, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17864, + "id": 13381, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17865, + "id": 13382, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17866, + "id": 13383, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17867, + "id": 13384, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17868, + "id": 13385, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17869, + "id": 13386, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17870, + "id": 13387, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17871, + "id": 13388, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17872, + "id": 13389, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17873, + "id": 13390, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17874, + "id": 13391, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17875, + "id": 13392, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17876, + "id": 13393, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17877, + "id": 13394, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17878, + "id": 13395, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17879, + "id": 13396, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17880, + "id": 13397, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17881, + "id": 13398, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17882, + "id": 13399, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17883, + "id": 13400, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17884, + "id": 13401, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17885, + "id": 13402, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17886, + "id": 13403, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17887, + "id": 13404, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17888, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17889, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17890, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17891, - "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17892, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17893, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17894, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17895, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17896, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17897, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17898, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17899, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17900, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17901, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17902, - "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17903, + "id": 13405, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17904, + "id": 13406, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17905, + "id": 13407, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17906, + "id": 13408, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17907, + "id": 13409, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17908, + "id": 13410, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17909, + "id": 13411, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17910, + "id": 13412, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17911, + "id": 13413, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17912, + "id": 13414, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17913, + "id": 13415, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17914, + "id": 13416, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17915, + "id": 13417, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17916, + "id": 13418, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17917, + "id": 13419, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17918, + "id": 13420, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17919, + "id": 13421, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17920, + "id": 13422, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17921, + "id": 13423, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17922, + "id": 13424, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17923, + "id": 13425, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17924, + "id": 13426, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17925, + "id": 13427, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17926, + "id": 13428, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17927, + "id": 13429, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17928, + "id": 13430, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17929, + "id": 13431, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17930, + "id": 13432, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17931, + "id": 13433, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17932, + "id": 13434, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17933, + "id": 13435, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17934, + "id": 13436, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17935, + "id": 13437, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17936, + "id": 13438, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17937, + "id": 13439, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17938, + "id": 13440, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17939, + "id": 13441, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:end_stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ { - "id": 17940, + "id": 17724, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85805,9 +85269,9 @@ } }, { - "id": 17941, + "id": 17725, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85816,9 +85280,9 @@ } }, { - "id": 17942, + "id": 17726, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85827,9 +85291,10 @@ } }, { - "id": 17943, + "default": true, + "id": 17727, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85838,9 +85303,9 @@ } }, { - "id": 17944, + "id": 17728, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85849,9 +85314,9 @@ } }, { - "id": 17945, + "id": 17729, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -85860,9 +85325,9 @@ } }, { - "id": 17946, + "id": 17730, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85871,9 +85336,9 @@ } }, { - "id": 17947, + "id": 17731, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85882,9 +85347,9 @@ } }, { - "id": 17948, + "id": 17732, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85893,9 +85358,9 @@ } }, { - "id": 17949, + "id": 17733, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85904,9 +85369,9 @@ } }, { - "id": 17950, + "id": 17734, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85915,9 +85380,9 @@ } }, { - "id": 17951, + "id": 17735, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -85926,9 +85391,9 @@ } }, { - "id": 17952, + "id": 17736, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85937,9 +85402,9 @@ } }, { - "id": 17953, + "id": 17737, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85948,9 +85413,9 @@ } }, { - "id": 17954, + "id": 17738, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85959,9 +85424,9 @@ } }, { - "id": 17955, + "id": 17739, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85970,9 +85435,9 @@ } }, { - "id": 17956, + "id": 17740, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85981,9 +85446,9 @@ } }, { - "id": 17957, + "id": 17741, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -85992,9 +85457,9 @@ } }, { - "id": 17958, + "id": 17742, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86003,9 +85468,9 @@ } }, { - "id": 17959, + "id": 17743, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86014,9 +85479,9 @@ } }, { - "id": 17960, + "id": 17744, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86025,9 +85490,9 @@ } }, { - "id": 17961, + "id": 17745, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86036,9 +85501,9 @@ } }, { - "id": 17962, + "id": 17746, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86047,9 +85512,9 @@ } }, { - "id": 17963, + "id": 17747, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -86058,9 +85523,9 @@ } }, { - "id": 17964, + "id": 17748, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86069,9 +85534,9 @@ } }, { - "id": 17965, + "id": 17749, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86080,9 +85545,9 @@ } }, { - "id": 17966, + "id": 17750, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86091,9 +85556,9 @@ } }, { - "id": 17967, + "id": 17751, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86102,9 +85567,9 @@ } }, { - "id": 17968, + "id": 17752, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86113,9 +85578,9 @@ } }, { - "id": 17969, + "id": 17753, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -86124,9 +85589,9 @@ } }, { - "id": 17970, + "id": 17754, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86135,9 +85600,9 @@ } }, { - "id": 17971, + "id": 17755, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86146,9 +85611,9 @@ } }, { - "id": 17972, + "id": 17756, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86157,9 +85622,9 @@ } }, { - "id": 17973, + "id": 17757, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86168,9 +85633,9 @@ } }, { - "id": 17974, + "id": 17758, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86179,9 +85644,9 @@ } }, { - "id": 17975, + "id": 17759, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -86190,9 +85655,9 @@ } }, { - "id": 17976, + "id": 17760, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86201,9 +85666,9 @@ } }, { - "id": 17977, + "id": 17761, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86212,9 +85677,9 @@ } }, { - "id": 17978, + "id": 17762, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86223,9 +85688,9 @@ } }, { - "id": 17979, + "id": 17763, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86234,9 +85699,9 @@ } }, { - "id": 17980, + "id": 17764, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86245,9 +85710,9 @@ } }, { - "id": 17981, + "id": 17765, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -86256,9 +85721,9 @@ } }, { - "id": 17982, + "id": 17766, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86267,9 +85732,9 @@ } }, { - "id": 17983, + "id": 17767, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86278,9 +85743,9 @@ } }, { - "id": 17984, + "id": 17768, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86289,9 +85754,9 @@ } }, { - "id": 17985, + "id": 17769, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86300,9 +85765,9 @@ } }, { - "id": 17986, + "id": 17770, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86311,9 +85776,9 @@ } }, { - "id": 17987, + "id": 17771, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -86322,9 +85787,9 @@ } }, { - "id": 17988, + "id": 17772, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86333,9 +85798,9 @@ } }, { - "id": 17989, + "id": 17773, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86344,9 +85809,9 @@ } }, { - "id": 17990, + "id": 17774, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86355,9 +85820,9 @@ } }, { - "id": 17991, + "id": 17775, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86366,9 +85831,9 @@ } }, { - "id": 17992, + "id": 17776, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86377,9 +85842,9 @@ } }, { - "id": 17993, + "id": 17777, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -86388,9 +85853,9 @@ } }, { - "id": 17994, + "id": 17778, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86399,9 +85864,9 @@ } }, { - "id": 17995, + "id": 17779, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86410,9 +85875,9 @@ } }, { - "id": 17996, + "id": 17780, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86421,9 +85886,9 @@ } }, { - "id": 17997, + "id": 17781, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86432,9 +85897,9 @@ } }, { - "id": 17998, + "id": 17782, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86443,9 +85908,9 @@ } }, { - "id": 17999, + "id": 17783, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -86454,9 +85919,9 @@ } }, { - "id": 18000, + "id": 17784, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86465,9 +85930,9 @@ } }, { - "id": 18001, + "id": 17785, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86476,9 +85941,9 @@ } }, { - "id": 18002, + "id": 17786, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86487,9 +85952,9 @@ } }, { - "id": 18003, + "id": 17787, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86498,9 +85963,9 @@ } }, { - "id": 18004, + "id": 17788, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86509,9 +85974,9 @@ } }, { - "id": 18005, + "id": 17789, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -86520,9 +85985,9 @@ } }, { - "id": 18006, + "id": 17790, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86531,9 +85996,9 @@ } }, { - "id": 18007, + "id": 17791, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86542,9 +86007,9 @@ } }, { - "id": 18008, + "id": 17792, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86553,9 +86018,9 @@ } }, { - "id": 18009, + "id": 17793, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86564,9 +86029,9 @@ } }, { - "id": 18010, + "id": 17794, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86575,9 +86040,9 @@ } }, { - "id": 18011, + "id": 17795, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -86586,9 +86051,9 @@ } }, { - "id": 18012, + "id": 17796, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86597,9 +86062,9 @@ } }, { - "id": 18013, + "id": 17797, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86608,9 +86073,9 @@ } }, { - "id": 18014, + "id": 17798, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86619,9 +86084,9 @@ } }, { - "id": 18015, + "id": 17799, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86630,9 +86095,9 @@ } }, { - "id": 18016, + "id": 17800, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86641,9 +86106,9 @@ } }, { - "id": 18017, + "id": 17801, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -86652,9 +86117,9 @@ } }, { - "id": 18018, + "id": 17802, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86663,9 +86128,9 @@ } }, { - "id": 18019, + "id": 17803, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86674,9 +86139,9 @@ } }, { - "id": 18020, + "id": 17804, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86685,9 +86150,9 @@ } }, { - "id": 18021, + "id": 17805, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86696,9 +86161,9 @@ } }, { - "id": 18022, + "id": 17806, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86707,9 +86172,9 @@ } }, { - "id": 18023, + "id": 17807, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -86718,9 +86183,9 @@ } }, { - "id": 18024, + "id": 17808, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86729,9 +86194,9 @@ } }, { - "id": 18025, + "id": 17809, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86740,9 +86205,9 @@ } }, { - "id": 18026, + "id": 17810, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86751,9 +86216,9 @@ } }, { - "id": 18027, + "id": 17811, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86762,9 +86227,9 @@ } }, { - "id": 18028, + "id": 17812, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86773,9 +86238,9 @@ } }, { - "id": 18029, + "id": 17813, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -86784,9 +86249,9 @@ } }, { - "id": 18030, + "id": 17814, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86795,9 +86260,9 @@ } }, { - "id": 18031, + "id": 17815, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86806,9 +86271,9 @@ } }, { - "id": 18032, + "id": 17816, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86817,9 +86282,9 @@ } }, { - "id": 18033, + "id": 17817, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86828,9 +86293,9 @@ } }, { - "id": 18034, + "id": 17818, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86839,9 +86304,9 @@ } }, { - "id": 18035, + "id": 17819, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -86850,9 +86315,9 @@ } }, { - "id": 18036, + "id": 17820, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86861,9 +86326,9 @@ } }, { - "id": 18037, + "id": 17821, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86872,9 +86337,9 @@ } }, { - "id": 18038, + "id": 17822, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86883,9 +86348,9 @@ } }, { - "id": 18039, + "id": 17823, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86894,9 +86359,9 @@ } }, { - "id": 18040, + "id": 17824, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86905,9 +86370,9 @@ } }, { - "id": 18041, + "id": 17825, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -86916,9 +86381,9 @@ } }, { - "id": 18042, + "id": 17826, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -86927,9 +86392,9 @@ } }, { - "id": 18043, + "id": 17827, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -86938,9 +86403,9 @@ } }, { - "id": 18044, + "id": 17828, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -86949,9 +86414,9 @@ } }, { - "id": 18045, + "id": 17829, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -86960,9 +86425,9 @@ } }, { - "id": 18046, + "id": 17830, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -86971,4209 +86436,4828 @@ } }, { - "id": 18047, + "id": 17831, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:end_stone_bricks": { - "states": [ - { - "default": true, - "id": 12494 - } - ] - }, - "minecraft:ender_chest": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 7513, + "id": 17832, "properties": { - "facing": "north", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 7514, + "id": 17833, "properties": { - "facing": "north", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7515, + "id": 17834, "properties": { - "facing": "south", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7516, + "id": 17835, "properties": { - "facing": "south", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7517, + "id": 17836, "properties": { - "facing": "west", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7518, + "id": 17837, "properties": { - "facing": "west", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7519, + "id": 17838, "properties": { - "facing": "east", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7520, + "id": 17839, "properties": { - "facing": "east", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:exposed_copper": { - "states": [ - { - "default": true, - "id": 21706 - } - ] - }, - "minecraft:exposed_cut_copper": { - "states": [ - { - "default": true, - "id": 21712 - } - ] - }, - "minecraft:exposed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 22046, + "id": 17840, "properties": { - "type": "top", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 22047, + "id": 17841, "properties": { - "type": "top", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 22048, + "id": 17842, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 22049, + "id": 17843, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 22050, + "id": 17844, "properties": { - "type": "double", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 22051, + "id": 17845, "properties": { - "type": "double", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:exposed_cut_copper_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21874, + "id": 17846, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21875, + "id": 17847, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21876, + "id": 17848, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21877, + "id": 17849, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21878, + "id": 17850, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21879, + "id": 17851, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21880, + "id": 17852, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21881, + "id": 17853, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21882, + "id": 17854, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21883, + "id": 17855, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21884, + "id": 17856, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 21885, + "id": 17857, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21886, + "id": 17858, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21887, + "id": 17859, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21888, + "id": 17860, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21889, + "id": 17861, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21890, + "id": 17862, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21891, + "id": 17863, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21892, + "id": 17864, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21893, + "id": 17865, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21894, + "id": 17866, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21895, + "id": 17867, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21896, + "id": 17868, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 21897, + "id": 17869, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21898, + "id": 17870, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21899, + "id": 17871, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21900, + "id": 17872, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21901, + "id": 17873, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21902, + "id": 17874, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21903, + "id": 17875, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21904, + "id": 17876, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21905, + "id": 17877, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21906, + "id": 17878, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21907, + "id": 17879, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21908, + "id": 17880, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 21909, + "id": 17881, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21910, + "id": 17882, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21911, + "id": 17883, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21912, + "id": 17884, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21913, + "id": 17885, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21914, + "id": 17886, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21915, + "id": 17887, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21916, + "id": 17888, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21917, + "id": 17889, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21918, + "id": 17890, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21919, + "id": 17891, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21920, + "id": 17892, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 21921, + "id": 17893, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21922, + "id": 17894, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21923, + "id": 17895, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21924, + "id": 17896, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21925, + "id": 17897, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21926, + "id": 17898, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21927, + "id": 17899, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21928, + "id": 17900, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21929, + "id": 17901, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21930, + "id": 17902, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21931, + "id": 17903, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21932, + "id": 17904, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 21933, + "id": 17905, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21934, + "id": 17906, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21935, + "id": 17907, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21936, + "id": 17908, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21937, + "id": 17909, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21938, + "id": 17910, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21939, + "id": 17911, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21940, + "id": 17912, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21941, + "id": 17913, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 21942, + "id": 17914, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 21943, + "id": 17915, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21944, + "id": 17916, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 21945, + "id": 17917, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 21946, + "id": 17918, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21947, + "id": 17919, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 21948, + "id": 17920, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 21949, + "id": 17921, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 21950, + "id": 17922, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 21951, + "id": 17923, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 21952, + "id": 17924, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 21953, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:farmland": { - "properties": { - "moisture": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 4286, + "id": 17925, "properties": { - "moisture": "0" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4287, + "id": 17926, "properties": { - "moisture": "1" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4288, + "id": 17927, "properties": { - "moisture": "2" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4289, + "id": 17928, "properties": { - "moisture": "3" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4290, + "id": 17929, "properties": { - "moisture": "4" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4291, + "id": 17930, "properties": { - "moisture": "5" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4292, + "id": 17931, "properties": { - "moisture": "6" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4293, - "properties": { - "moisture": "7" - } - } - ] - }, - "minecraft:fern": { - "states": [ - { - "default": true, - "id": 2006 - } - ] - }, - "minecraft:fire": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 2360, + "id": 17932, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2361, + "id": 17933, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2362, + "id": 17934, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2363, + "id": 17935, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2364, + "id": 17936, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2365, + "id": 17937, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2366, + "id": 17938, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2367, + "id": 17939, "properties": { - "age": "0", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2368, + "id": 17940, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2369, + "id": 17941, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2370, + "id": 17942, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2371, + "id": 17943, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2372, + "id": 17944, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2373, + "id": 17945, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2374, + "id": 17946, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2375, + "id": 17947, "properties": { - "age": "0", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2376, + "id": 17948, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2377, + "id": 17949, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2378, + "id": 17950, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2379, + "id": 17951, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2380, + "id": 17952, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2381, + "id": 17953, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2382, + "id": 17954, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2383, + "id": 17955, "properties": { - "age": "0", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2384, + "id": 17956, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2385, + "id": 17957, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2386, + "id": 17958, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2387, + "id": 17959, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2388, + "id": 17960, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2389, + "id": 17961, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2390, + "id": 17962, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 2391, + "id": 17963, "properties": { - "age": "0", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2392, + "id": 17964, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2393, + "id": 17965, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2394, + "id": 17966, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2395, + "id": 17967, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2396, + "id": 17968, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2397, + "id": 17969, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2398, + "id": 17970, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2399, + "id": 17971, "properties": { - "age": "1", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2400, + "id": 17972, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2401, + "id": 17973, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2402, + "id": 17974, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2403, + "id": 17975, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2404, + "id": 17976, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2405, + "id": 17977, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2406, + "id": 17978, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2407, + "id": 17979, "properties": { - "age": "1", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2408, + "id": 17980, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2409, + "id": 17981, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2410, + "id": 17982, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2411, + "id": 17983, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2412, + "id": 17984, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2413, + "id": 17985, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2414, + "id": 17986, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2415, + "id": 17987, "properties": { - "age": "1", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2416, + "id": 17988, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2417, + "id": 17989, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2418, + "id": 17990, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2419, + "id": 17991, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2420, + "id": 17992, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2421, + "id": 17993, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2422, + "id": 17994, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2423, + "id": 17995, "properties": { - "age": "1", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2424, + "id": 17996, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2425, + "id": 17997, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2426, + "id": 17998, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2427, + "id": 17999, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "low", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2428, + "id": 18000, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2429, + "id": 18001, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2430, + "id": 18002, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2431, + "id": 18003, "properties": { - "age": "2", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2432, + "id": 18004, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2433, + "id": 18005, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2434, + "id": 18006, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2435, + "id": 18007, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2436, + "id": 18008, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2437, + "id": 18009, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2438, + "id": 18010, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2439, + "id": 18011, "properties": { - "age": "2", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2440, + "id": 18012, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2441, + "id": 18013, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2442, + "id": 18014, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2443, + "id": 18015, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2444, + "id": 18016, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2445, + "id": 18017, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2446, + "id": 18018, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2447, + "id": 18019, "properties": { - "age": "2", - "east": "false", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2448, + "id": 18020, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2449, + "id": 18021, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2450, + "id": 18022, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2451, + "id": 18023, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2452, + "id": 18024, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2453, + "id": 18025, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2454, + "id": 18026, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2455, + "id": 18027, "properties": { - "age": "2", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2456, + "id": 18028, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2457, + "id": 18029, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2458, + "id": 18030, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2459, + "id": 18031, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2460, + "id": 18032, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2461, + "id": 18033, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2462, + "id": 18034, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2463, + "id": 18035, "properties": { - "age": "3", - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "tall", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2464, + "id": 18036, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2465, + "id": 18037, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2466, + "id": 18038, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2467, + "id": 18039, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 2468, + "id": 18040, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2469, + "id": 18041, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 2470, + "id": 18042, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 2471, + "id": 18043, "properties": { - "age": "3", - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 2472, + "id": 18044, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2473, + "id": 18045, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 2474, + "id": 18046, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 2475, + "id": 18047, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } - }, + } + ] + }, + "minecraft:end_stone_bricks": { + "states": [ { - "id": 2476, + "default": true, + "id": 12494 + } + ] + }, + "minecraft:ender_chest": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7513, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "waterlogged": "true" } }, { - "id": 2477, + "default": true, + "id": 7514, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "waterlogged": "false" } }, { - "id": 2478, + "id": 7515, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "waterlogged": "true" } }, { - "id": 2479, + "id": 7516, "properties": { - "age": "3", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "waterlogged": "false" } }, { - "id": 2480, + "id": 7517, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "waterlogged": "true" } }, { - "id": 2481, + "id": 7518, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "waterlogged": "false" } }, { - "id": 2482, + "id": 7519, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "east", + "waterlogged": "true" } }, { - "id": 2483, + "id": 7520, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:exposed_chiseled_copper": { + "states": [ { - "id": 2484, + "default": true, + "id": 22950 + } + ] + }, + "minecraft:exposed_copper": { + "states": [ + { + "default": true, + "id": 22939 + } + ] + }, + "minecraft:exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24696, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "lit": "true", + "powered": "true" } }, { - "id": 2485, + "id": 24697, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "lit": "true", + "powered": "false" } }, { - "id": 2486, + "id": 24698, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "lit": "false", + "powered": "true" } }, { - "id": 2487, + "default": true, + "id": 24699, "properties": { - "age": "3", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "lit": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:exposed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 2488, + "id": 23716, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2489, + "id": 23717, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2490, + "id": 23718, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2491, + "id": 23719, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2492, + "id": 23720, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2493, + "id": 23721, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2494, + "id": 23722, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2495, + "id": 23723, "properties": { - "age": "4", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2496, + "id": 23724, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2497, + "id": 23725, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2498, + "id": 23726, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2499, + "default": true, + "id": 23727, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2500, + "id": 23728, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2501, + "id": 23729, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2502, + "id": 23730, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2503, + "id": 23731, "properties": { - "age": "4", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2504, + "id": 23732, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2505, + "id": 23733, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2506, + "id": 23734, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2507, + "id": 23735, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2508, + "id": 23736, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2509, + "id": 23737, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2510, + "id": 23738, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2511, + "id": 23739, "properties": { - "age": "4", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2512, + "id": 23740, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2513, + "id": 23741, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2514, + "id": 23742, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2515, + "id": 23743, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2516, + "id": 23744, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2517, + "id": 23745, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2518, + "id": 23746, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2519, + "id": 23747, "properties": { - "age": "4", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2520, + "id": 23748, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2521, + "id": 23749, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2522, + "id": 23750, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2523, + "id": 23751, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2524, + "id": 23752, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2525, + "id": 23753, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2526, + "id": 23754, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2527, + "id": 23755, "properties": { - "age": "5", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2528, + "id": 23756, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2529, + "id": 23757, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2530, + "id": 23758, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2531, + "id": 23759, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2532, + "id": 23760, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2533, + "id": 23761, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2534, + "id": 23762, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2535, + "id": 23763, "properties": { - "age": "5", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2536, + "id": 23764, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2537, + "id": 23765, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2538, + "id": 23766, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2539, + "id": 23767, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2540, + "id": 23768, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2541, + "id": 23769, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2542, + "id": 23770, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2543, + "id": 23771, "properties": { - "age": "5", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 2544, + "id": 23772, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 2545, + "id": 23773, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 2546, + "id": 23774, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 2547, + "id": 23775, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 2548, + "id": 23776, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 2549, + "id": 23777, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 2550, + "id": 23778, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 2551, + "id": 23779, "properties": { - "age": "5", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:exposed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 2552, + "id": 24678, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "waterlogged": "true" } }, { - "id": 2553, + "default": true, + "id": 24679, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24228, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2554, + "id": 24229, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2555, + "id": 24230, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2556, + "id": 24231, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2557, + "id": 24232, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2558, + "id": 24233, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2559, + "id": 24234, "properties": { - "age": "6", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2560, + "id": 24235, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2561, + "id": 24236, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2562, + "id": 24237, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2563, + "id": 24238, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2564, + "id": 24239, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2565, + "id": 24240, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2566, + "id": 24241, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2567, + "id": 24242, "properties": { - "age": "6", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2568, + "default": true, + "id": 24243, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2569, + "id": 24244, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2570, + "id": 24245, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2571, + "id": 24246, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2572, + "id": 24247, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2573, + "id": 24248, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2574, + "id": 24249, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2575, + "id": 24250, "properties": { - "age": "6", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2576, + "id": 24251, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2577, + "id": 24252, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2578, + "id": 24253, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2579, + "id": 24254, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2580, + "id": 24255, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2581, + "id": 24256, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2582, + "id": 24257, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2583, + "id": 24258, "properties": { - "age": "6", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2584, + "id": 24259, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2585, + "id": 24260, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2586, + "id": 24261, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2587, + "id": 24262, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2588, + "id": 24263, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2589, + "id": 24264, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2590, + "id": 24265, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2591, + "id": 24266, "properties": { - "age": "7", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2592, + "id": 24267, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2593, + "id": 24268, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2594, + "id": 24269, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2595, + "id": 24270, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2596, + "id": 24271, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2597, + "id": 24272, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2598, + "id": 24273, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2599, + "id": 24274, "properties": { - "age": "7", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2600, + "id": 24275, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2601, + "id": 24276, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2602, + "id": 24277, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2603, + "id": 24278, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2604, + "id": 24279, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2605, + "id": 24280, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2606, + "id": 24281, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2607, + "id": 24282, "properties": { - "age": "7", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2608, + "id": 24283, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2609, + "id": 24284, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2610, + "id": 24285, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2611, + "id": 24286, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2612, + "id": 24287, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 2613, + "id": 24288, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 2614, + "id": 24289, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 2615, + "id": 24290, "properties": { - "age": "7", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 2616, + "id": 24291, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:exposed_cut_copper": { + "states": [ { - "id": 2617, + "default": true, + "id": 22946 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23288, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "type": "top", + "waterlogged": "true" } }, { - "id": 2618, + "id": 23289, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "type": "top", + "waterlogged": "false" } }, { - "id": 2619, + "id": 23290, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 2620, + "default": true, + "id": 23291, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 2621, + "id": 23292, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "type": "double", + "waterlogged": "true" } }, { - "id": 2622, + "id": 23293, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 2623, + "id": 23116, "properties": { - "age": "8", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 2624, + "id": 23117, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 2625, + "id": 23118, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 2626, + "id": 23119, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 2627, + "id": 23120, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 2628, + "id": 23121, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 2629, + "id": 23122, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 2630, + "id": 23123, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 2631, + "id": 23124, "properties": { - "age": "8", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 2632, + "id": 23125, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 2633, + "id": 23126, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 2634, + "default": true, + "id": 23127, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 2635, + "id": 23128, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 2636, + "id": 23129, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 2637, + "id": 23130, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 2638, + "id": 23131, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 2639, + "id": 23132, "properties": { - "age": "8", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 2640, + "id": 23133, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 2641, + "id": 23134, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 2642, + "id": 23135, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 2643, + "id": 23136, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 2644, + "id": 23137, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 2645, + "id": 23138, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 2646, + "id": 23139, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 2647, + "id": 23140, "properties": { - "age": "8", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 2648, + "id": 23141, "properties": { - "age": "9", + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23142, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23143, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23144, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23145, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23150, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23151, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23156, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23157, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23158, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23159, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23160, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23161, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23162, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23163, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23164, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23165, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23170, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23171, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23176, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23177, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23178, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23179, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23180, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23181, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23182, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23183, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23184, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23185, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23190, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23191, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23192, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23193, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4286, + "properties": { + "moisture": "0" + } + }, + { + "id": 4287, + "properties": { + "moisture": "1" + } + }, + { + "id": 4288, + "properties": { + "moisture": "2" + } + }, + { + "id": 4289, + "properties": { + "moisture": "3" + } + }, + { + "id": 4290, + "properties": { + "moisture": "4" + } + }, + { + "id": 4291, + "properties": { + "moisture": "5" + } + }, + { + "id": 4292, + "properties": { + "moisture": "6" + } + }, + { + "id": 4293, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "states": [ + { + "default": true, + "id": 2006 + } + ] + }, + "minecraft:fire": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2360, + "properties": { + "age": "0", "east": "true", "north": "true", "south": "true", @@ -91182,9 +91266,9 @@ } }, { - "id": 2649, + "id": 2361, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "true", @@ -91193,9 +91277,9 @@ } }, { - "id": 2650, + "id": 2362, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "true", @@ -91204,9 +91288,9 @@ } }, { - "id": 2651, + "id": 2363, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "true", @@ -91215,9 +91299,9 @@ } }, { - "id": 2652, + "id": 2364, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "false", @@ -91226,9 +91310,9 @@ } }, { - "id": 2653, + "id": 2365, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "false", @@ -91237,9 +91321,9 @@ } }, { - "id": 2654, + "id": 2366, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "false", @@ -91248,9 +91332,9 @@ } }, { - "id": 2655, + "id": 2367, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "true", "south": "false", @@ -91259,9 +91343,9 @@ } }, { - "id": 2656, + "id": 2368, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "true", @@ -91270,9 +91354,9 @@ } }, { - "id": 2657, + "id": 2369, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "true", @@ -91281,9 +91365,9 @@ } }, { - "id": 2658, + "id": 2370, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "true", @@ -91292,9 +91376,9 @@ } }, { - "id": 2659, + "id": 2371, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "true", @@ -91303,9 +91387,9 @@ } }, { - "id": 2660, + "id": 2372, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "false", @@ -91314,9 +91398,9 @@ } }, { - "id": 2661, + "id": 2373, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "false", @@ -91325,9 +91409,9 @@ } }, { - "id": 2662, + "id": 2374, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "false", @@ -91336,9 +91420,9 @@ } }, { - "id": 2663, + "id": 2375, "properties": { - "age": "9", + "age": "0", "east": "true", "north": "false", "south": "false", @@ -91347,9 +91431,9 @@ } }, { - "id": 2664, + "id": 2376, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "true", @@ -91358,9 +91442,9 @@ } }, { - "id": 2665, + "id": 2377, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "true", @@ -91369,9 +91453,9 @@ } }, { - "id": 2666, + "id": 2378, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "true", @@ -91380,9 +91464,9 @@ } }, { - "id": 2667, + "id": 2379, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "true", @@ -91391,9 +91475,9 @@ } }, { - "id": 2668, + "id": 2380, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "false", @@ -91402,9 +91486,9 @@ } }, { - "id": 2669, + "id": 2381, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "false", @@ -91413,9 +91497,9 @@ } }, { - "id": 2670, + "id": 2382, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "false", @@ -91424,9 +91508,9 @@ } }, { - "id": 2671, + "id": 2383, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "true", "south": "false", @@ -91435,9 +91519,9 @@ } }, { - "id": 2672, + "id": 2384, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "true", @@ -91446,9 +91530,9 @@ } }, { - "id": 2673, + "id": 2385, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "true", @@ -91457,9 +91541,9 @@ } }, { - "id": 2674, + "id": 2386, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "true", @@ -91468,9 +91552,9 @@ } }, { - "id": 2675, + "id": 2387, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "true", @@ -91479,9 +91563,9 @@ } }, { - "id": 2676, + "id": 2388, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "false", @@ -91490,9 +91574,9 @@ } }, { - "id": 2677, + "id": 2389, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "false", @@ -91501,9 +91585,9 @@ } }, { - "id": 2678, + "id": 2390, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "false", @@ -91512,9 +91596,10 @@ } }, { - "id": 2679, + "default": true, + "id": 2391, "properties": { - "age": "9", + "age": "0", "east": "false", "north": "false", "south": "false", @@ -91523,9 +91608,9 @@ } }, { - "id": 2680, + "id": 2392, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "true", @@ -91534,9 +91619,9 @@ } }, { - "id": 2681, + "id": 2393, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "true", @@ -91545,9 +91630,9 @@ } }, { - "id": 2682, + "id": 2394, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "true", @@ -91556,9 +91641,9 @@ } }, { - "id": 2683, + "id": 2395, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "true", @@ -91567,9 +91652,9 @@ } }, { - "id": 2684, + "id": 2396, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "false", @@ -91578,9 +91663,9 @@ } }, { - "id": 2685, + "id": 2397, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "false", @@ -91589,9 +91674,9 @@ } }, { - "id": 2686, + "id": 2398, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "false", @@ -91600,9 +91685,9 @@ } }, { - "id": 2687, + "id": 2399, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "true", "south": "false", @@ -91611,9 +91696,9 @@ } }, { - "id": 2688, + "id": 2400, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "true", @@ -91622,9 +91707,9 @@ } }, { - "id": 2689, + "id": 2401, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "true", @@ -91633,9 +91718,9 @@ } }, { - "id": 2690, + "id": 2402, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "true", @@ -91644,9 +91729,9 @@ } }, { - "id": 2691, + "id": 2403, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "true", @@ -91655,9 +91740,9 @@ } }, { - "id": 2692, + "id": 2404, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "false", @@ -91666,9 +91751,9 @@ } }, { - "id": 2693, + "id": 2405, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "false", @@ -91677,9 +91762,9 @@ } }, { - "id": 2694, + "id": 2406, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "false", @@ -91688,9 +91773,9 @@ } }, { - "id": 2695, + "id": 2407, "properties": { - "age": "10", + "age": "1", "east": "true", "north": "false", "south": "false", @@ -91699,9 +91784,9 @@ } }, { - "id": 2696, + "id": 2408, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "true", @@ -91710,9 +91795,9 @@ } }, { - "id": 2697, + "id": 2409, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "true", @@ -91721,9 +91806,9 @@ } }, { - "id": 2698, + "id": 2410, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "true", @@ -91732,9 +91817,9 @@ } }, { - "id": 2699, + "id": 2411, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "true", @@ -91743,9 +91828,9 @@ } }, { - "id": 2700, + "id": 2412, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "false", @@ -91754,9 +91839,9 @@ } }, { - "id": 2701, + "id": 2413, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "false", @@ -91765,9 +91850,9 @@ } }, { - "id": 2702, + "id": 2414, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "false", @@ -91776,9 +91861,9 @@ } }, { - "id": 2703, + "id": 2415, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "true", "south": "false", @@ -91787,9 +91872,9 @@ } }, { - "id": 2704, + "id": 2416, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "true", @@ -91798,9 +91883,9 @@ } }, { - "id": 2705, + "id": 2417, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "true", @@ -91809,9 +91894,9 @@ } }, { - "id": 2706, + "id": 2418, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "true", @@ -91820,9 +91905,9 @@ } }, { - "id": 2707, + "id": 2419, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "true", @@ -91831,9 +91916,9 @@ } }, { - "id": 2708, + "id": 2420, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "false", @@ -91842,9 +91927,9 @@ } }, { - "id": 2709, + "id": 2421, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "false", @@ -91853,9 +91938,9 @@ } }, { - "id": 2710, + "id": 2422, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "false", @@ -91864,9 +91949,9 @@ } }, { - "id": 2711, + "id": 2423, "properties": { - "age": "10", + "age": "1", "east": "false", "north": "false", "south": "false", @@ -91875,9 +91960,9 @@ } }, { - "id": 2712, + "id": 2424, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "true", @@ -91886,9 +91971,9 @@ } }, { - "id": 2713, + "id": 2425, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "true", @@ -91897,9 +91982,9 @@ } }, { - "id": 2714, + "id": 2426, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "true", @@ -91908,9 +91993,9 @@ } }, { - "id": 2715, + "id": 2427, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "true", @@ -91919,9 +92004,9 @@ } }, { - "id": 2716, + "id": 2428, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "false", @@ -91930,9 +92015,9 @@ } }, { - "id": 2717, + "id": 2429, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "false", @@ -91941,9 +92026,9 @@ } }, { - "id": 2718, + "id": 2430, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "false", @@ -91952,9 +92037,9 @@ } }, { - "id": 2719, + "id": 2431, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "true", "south": "false", @@ -91963,9 +92048,9 @@ } }, { - "id": 2720, + "id": 2432, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "true", @@ -91974,9 +92059,9 @@ } }, { - "id": 2721, + "id": 2433, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "true", @@ -91985,9 +92070,9 @@ } }, { - "id": 2722, + "id": 2434, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "true", @@ -91996,9 +92081,9 @@ } }, { - "id": 2723, + "id": 2435, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "true", @@ -92007,9 +92092,9 @@ } }, { - "id": 2724, + "id": 2436, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "false", @@ -92018,9 +92103,9 @@ } }, { - "id": 2725, + "id": 2437, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "false", @@ -92029,9 +92114,9 @@ } }, { - "id": 2726, + "id": 2438, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "false", @@ -92040,9 +92125,9 @@ } }, { - "id": 2727, + "id": 2439, "properties": { - "age": "11", + "age": "2", "east": "true", "north": "false", "south": "false", @@ -92051,9 +92136,9 @@ } }, { - "id": 2728, + "id": 2440, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "true", @@ -92062,9 +92147,9 @@ } }, { - "id": 2729, + "id": 2441, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "true", @@ -92073,9 +92158,9 @@ } }, { - "id": 2730, + "id": 2442, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "true", @@ -92084,9 +92169,9 @@ } }, { - "id": 2731, + "id": 2443, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "true", @@ -92095,9 +92180,9 @@ } }, { - "id": 2732, + "id": 2444, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "false", @@ -92106,9 +92191,9 @@ } }, { - "id": 2733, + "id": 2445, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "false", @@ -92117,9 +92202,9 @@ } }, { - "id": 2734, + "id": 2446, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "false", @@ -92128,9 +92213,9 @@ } }, { - "id": 2735, + "id": 2447, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "true", "south": "false", @@ -92139,9 +92224,9 @@ } }, { - "id": 2736, + "id": 2448, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "true", @@ -92150,9 +92235,9 @@ } }, { - "id": 2737, + "id": 2449, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "true", @@ -92161,9 +92246,9 @@ } }, { - "id": 2738, + "id": 2450, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "true", @@ -92172,9 +92257,9 @@ } }, { - "id": 2739, + "id": 2451, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "true", @@ -92183,9 +92268,9 @@ } }, { - "id": 2740, + "id": 2452, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "false", @@ -92194,9 +92279,9 @@ } }, { - "id": 2741, + "id": 2453, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "false", @@ -92205,9 +92290,9 @@ } }, { - "id": 2742, + "id": 2454, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "false", @@ -92216,9 +92301,9 @@ } }, { - "id": 2743, + "id": 2455, "properties": { - "age": "11", + "age": "2", "east": "false", "north": "false", "south": "false", @@ -92227,9 +92312,9 @@ } }, { - "id": 2744, + "id": 2456, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "true", @@ -92238,9 +92323,9 @@ } }, { - "id": 2745, + "id": 2457, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "true", @@ -92249,9 +92334,9 @@ } }, { - "id": 2746, + "id": 2458, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "true", @@ -92260,9 +92345,9 @@ } }, { - "id": 2747, + "id": 2459, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "true", @@ -92271,9 +92356,9 @@ } }, { - "id": 2748, + "id": 2460, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "false", @@ -92282,9 +92367,9 @@ } }, { - "id": 2749, + "id": 2461, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "false", @@ -92293,9 +92378,9 @@ } }, { - "id": 2750, + "id": 2462, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "false", @@ -92304,9 +92389,9 @@ } }, { - "id": 2751, + "id": 2463, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "true", "south": "false", @@ -92315,9 +92400,9 @@ } }, { - "id": 2752, + "id": 2464, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "true", @@ -92326,9 +92411,9 @@ } }, { - "id": 2753, + "id": 2465, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "true", @@ -92337,9 +92422,9 @@ } }, { - "id": 2754, + "id": 2466, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "true", @@ -92348,9 +92433,9 @@ } }, { - "id": 2755, + "id": 2467, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "true", @@ -92359,9 +92444,9 @@ } }, { - "id": 2756, + "id": 2468, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "false", @@ -92370,9 +92455,9 @@ } }, { - "id": 2757, + "id": 2469, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "false", @@ -92381,9 +92466,9 @@ } }, { - "id": 2758, + "id": 2470, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "false", @@ -92392,9 +92477,9 @@ } }, { - "id": 2759, + "id": 2471, "properties": { - "age": "12", + "age": "3", "east": "true", "north": "false", "south": "false", @@ -92403,9 +92488,9 @@ } }, { - "id": 2760, + "id": 2472, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "true", @@ -92414,9 +92499,9 @@ } }, { - "id": 2761, + "id": 2473, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "true", @@ -92425,9 +92510,9 @@ } }, { - "id": 2762, + "id": 2474, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "true", @@ -92436,9 +92521,9 @@ } }, { - "id": 2763, + "id": 2475, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "true", @@ -92447,9 +92532,9 @@ } }, { - "id": 2764, + "id": 2476, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "false", @@ -92458,9 +92543,9 @@ } }, { - "id": 2765, + "id": 2477, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "false", @@ -92469,9 +92554,9 @@ } }, { - "id": 2766, + "id": 2478, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "false", @@ -92480,9 +92565,9 @@ } }, { - "id": 2767, + "id": 2479, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "true", "south": "false", @@ -92491,9 +92576,9 @@ } }, { - "id": 2768, + "id": 2480, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "true", @@ -92502,9 +92587,9 @@ } }, { - "id": 2769, + "id": 2481, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "true", @@ -92513,9 +92598,9 @@ } }, { - "id": 2770, + "id": 2482, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "true", @@ -92524,9 +92609,9 @@ } }, { - "id": 2771, + "id": 2483, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "true", @@ -92535,9 +92620,9 @@ } }, { - "id": 2772, + "id": 2484, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "false", @@ -92546,9 +92631,9 @@ } }, { - "id": 2773, + "id": 2485, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "false", @@ -92557,9 +92642,9 @@ } }, { - "id": 2774, + "id": 2486, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "false", @@ -92568,9 +92653,9 @@ } }, { - "id": 2775, + "id": 2487, "properties": { - "age": "12", + "age": "3", "east": "false", "north": "false", "south": "false", @@ -92579,9 +92664,9 @@ } }, { - "id": 2776, + "id": 2488, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "true", @@ -92590,9 +92675,9 @@ } }, { - "id": 2777, + "id": 2489, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "true", @@ -92601,9 +92686,9 @@ } }, { - "id": 2778, + "id": 2490, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "true", @@ -92612,9 +92697,9 @@ } }, { - "id": 2779, + "id": 2491, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "true", @@ -92623,9 +92708,9 @@ } }, { - "id": 2780, + "id": 2492, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "false", @@ -92634,9 +92719,9 @@ } }, { - "id": 2781, + "id": 2493, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "false", @@ -92645,9 +92730,9 @@ } }, { - "id": 2782, + "id": 2494, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "false", @@ -92656,9 +92741,9 @@ } }, { - "id": 2783, + "id": 2495, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "true", "south": "false", @@ -92667,9 +92752,9 @@ } }, { - "id": 2784, + "id": 2496, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "true", @@ -92678,9 +92763,9 @@ } }, { - "id": 2785, + "id": 2497, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "true", @@ -92689,9 +92774,9 @@ } }, { - "id": 2786, + "id": 2498, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "true", @@ -92700,9 +92785,9 @@ } }, { - "id": 2787, + "id": 2499, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "true", @@ -92711,9 +92796,9 @@ } }, { - "id": 2788, + "id": 2500, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "false", @@ -92722,9 +92807,9 @@ } }, { - "id": 2789, + "id": 2501, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "false", @@ -92733,9 +92818,9 @@ } }, { - "id": 2790, + "id": 2502, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "false", @@ -92744,9 +92829,9 @@ } }, { - "id": 2791, + "id": 2503, "properties": { - "age": "13", + "age": "4", "east": "true", "north": "false", "south": "false", @@ -92755,9 +92840,9 @@ } }, { - "id": 2792, + "id": 2504, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "true", @@ -92766,9 +92851,9 @@ } }, { - "id": 2793, + "id": 2505, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "true", @@ -92777,9 +92862,9 @@ } }, { - "id": 2794, + "id": 2506, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "true", @@ -92788,9 +92873,9 @@ } }, { - "id": 2795, + "id": 2507, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "true", @@ -92799,9 +92884,9 @@ } }, { - "id": 2796, + "id": 2508, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "false", @@ -92810,9 +92895,9 @@ } }, { - "id": 2797, + "id": 2509, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "false", @@ -92821,9 +92906,9 @@ } }, { - "id": 2798, + "id": 2510, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "false", @@ -92832,9 +92917,9 @@ } }, { - "id": 2799, + "id": 2511, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "true", "south": "false", @@ -92843,9 +92928,9 @@ } }, { - "id": 2800, + "id": 2512, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "true", @@ -92854,9 +92939,9 @@ } }, { - "id": 2801, + "id": 2513, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "true", @@ -92865,9 +92950,9 @@ } }, { - "id": 2802, + "id": 2514, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "true", @@ -92876,9 +92961,9 @@ } }, { - "id": 2803, + "id": 2515, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "true", @@ -92887,9 +92972,9 @@ } }, { - "id": 2804, + "id": 2516, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "false", @@ -92898,9 +92983,9 @@ } }, { - "id": 2805, + "id": 2517, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "false", @@ -92909,9 +92994,9 @@ } }, { - "id": 2806, + "id": 2518, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "false", @@ -92920,9 +93005,9 @@ } }, { - "id": 2807, + "id": 2519, "properties": { - "age": "13", + "age": "4", "east": "false", "north": "false", "south": "false", @@ -92931,9 +93016,9 @@ } }, { - "id": 2808, + "id": 2520, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "true", @@ -92942,9 +93027,9 @@ } }, { - "id": 2809, + "id": 2521, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "true", @@ -92953,9 +93038,9 @@ } }, { - "id": 2810, + "id": 2522, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "true", @@ -92964,9 +93049,9 @@ } }, { - "id": 2811, + "id": 2523, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "true", @@ -92975,9 +93060,9 @@ } }, { - "id": 2812, + "id": 2524, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "false", @@ -92986,9 +93071,9 @@ } }, { - "id": 2813, + "id": 2525, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "false", @@ -92997,9 +93082,9 @@ } }, { - "id": 2814, + "id": 2526, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "false", @@ -93008,9 +93093,9 @@ } }, { - "id": 2815, + "id": 2527, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "true", "south": "false", @@ -93019,9 +93104,9 @@ } }, { - "id": 2816, + "id": 2528, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "true", @@ -93030,9 +93115,9 @@ } }, { - "id": 2817, + "id": 2529, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "true", @@ -93041,9 +93126,9 @@ } }, { - "id": 2818, + "id": 2530, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "true", @@ -93052,9 +93137,9 @@ } }, { - "id": 2819, + "id": 2531, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "true", @@ -93063,9 +93148,9 @@ } }, { - "id": 2820, + "id": 2532, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "false", @@ -93074,9 +93159,9 @@ } }, { - "id": 2821, + "id": 2533, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "false", @@ -93085,9 +93170,9 @@ } }, { - "id": 2822, + "id": 2534, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "false", @@ -93096,9 +93181,9 @@ } }, { - "id": 2823, + "id": 2535, "properties": { - "age": "14", + "age": "5", "east": "true", "north": "false", "south": "false", @@ -93107,9 +93192,9 @@ } }, { - "id": 2824, + "id": 2536, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "true", @@ -93118,9 +93203,9 @@ } }, { - "id": 2825, + "id": 2537, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "true", @@ -93129,9 +93214,9 @@ } }, { - "id": 2826, + "id": 2538, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "true", @@ -93140,9 +93225,9 @@ } }, { - "id": 2827, + "id": 2539, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "true", @@ -93151,9 +93236,9 @@ } }, { - "id": 2828, + "id": 2540, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "false", @@ -93162,9 +93247,9 @@ } }, { - "id": 2829, + "id": 2541, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "false", @@ -93173,9 +93258,9 @@ } }, { - "id": 2830, + "id": 2542, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "false", @@ -93184,9 +93269,9 @@ } }, { - "id": 2831, + "id": 2543, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "true", "south": "false", @@ -93195,9 +93280,9 @@ } }, { - "id": 2832, + "id": 2544, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "true", @@ -93206,9 +93291,9 @@ } }, { - "id": 2833, + "id": 2545, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "true", @@ -93217,9 +93302,9 @@ } }, { - "id": 2834, + "id": 2546, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "true", @@ -93228,9 +93313,9 @@ } }, { - "id": 2835, + "id": 2547, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "true", @@ -93239,9 +93324,9 @@ } }, { - "id": 2836, + "id": 2548, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "false", @@ -93250,9 +93335,9 @@ } }, { - "id": 2837, + "id": 2549, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "false", @@ -93261,9 +93346,9 @@ } }, { - "id": 2838, + "id": 2550, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "false", @@ -93272,9 +93357,9 @@ } }, { - "id": 2839, + "id": 2551, "properties": { - "age": "14", + "age": "5", "east": "false", "north": "false", "south": "false", @@ -93283,9 +93368,9 @@ } }, { - "id": 2840, + "id": 2552, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "true", @@ -93294,9 +93379,9 @@ } }, { - "id": 2841, + "id": 2553, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "true", @@ -93305,9 +93390,9 @@ } }, { - "id": 2842, + "id": 2554, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "true", @@ -93316,9 +93401,9 @@ } }, { - "id": 2843, + "id": 2555, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "true", @@ -93327,9 +93412,9 @@ } }, { - "id": 2844, + "id": 2556, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "false", @@ -93338,9 +93423,9 @@ } }, { - "id": 2845, + "id": 2557, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "false", @@ -93349,9 +93434,9 @@ } }, { - "id": 2846, + "id": 2558, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "false", @@ -93360,9 +93445,9 @@ } }, { - "id": 2847, + "id": 2559, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "true", "south": "false", @@ -93371,9 +93456,9 @@ } }, { - "id": 2848, + "id": 2560, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "true", @@ -93382,9 +93467,9 @@ } }, { - "id": 2849, + "id": 2561, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "true", @@ -93393,9 +93478,9 @@ } }, { - "id": 2850, + "id": 2562, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "true", @@ -93404,9 +93489,9 @@ } }, { - "id": 2851, + "id": 2563, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "true", @@ -93415,9 +93500,9 @@ } }, { - "id": 2852, + "id": 2564, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "false", @@ -93426,9 +93511,9 @@ } }, { - "id": 2853, + "id": 2565, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "false", @@ -93437,9 +93522,9 @@ } }, { - "id": 2854, + "id": 2566, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "false", @@ -93448,9 +93533,9 @@ } }, { - "id": 2855, + "id": 2567, "properties": { - "age": "15", + "age": "6", "east": "true", "north": "false", "south": "false", @@ -93459,9 +93544,9 @@ } }, { - "id": 2856, + "id": 2568, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "true", @@ -93470,9 +93555,9 @@ } }, { - "id": 2857, + "id": 2569, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "true", @@ -93481,9 +93566,9 @@ } }, { - "id": 2858, + "id": 2570, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "true", @@ -93492,9 +93577,9 @@ } }, { - "id": 2859, + "id": 2571, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "true", @@ -93503,9 +93588,9 @@ } }, { - "id": 2860, + "id": 2572, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "false", @@ -93514,9 +93599,9 @@ } }, { - "id": 2861, + "id": 2573, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "false", @@ -93525,9 +93610,9 @@ } }, { - "id": 2862, + "id": 2574, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "false", @@ -93536,9 +93621,9 @@ } }, { - "id": 2863, + "id": 2575, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "true", "south": "false", @@ -93547,9 +93632,9 @@ } }, { - "id": 2864, + "id": 2576, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "true", @@ -93558,9 +93643,9 @@ } }, { - "id": 2865, + "id": 2577, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "true", @@ -93569,9 +93654,9 @@ } }, { - "id": 2866, + "id": 2578, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "true", @@ -93580,9 +93665,9 @@ } }, { - "id": 2867, + "id": 2579, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "true", @@ -93591,9 +93676,9 @@ } }, { - "id": 2868, + "id": 2580, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "false", @@ -93602,9 +93687,9 @@ } }, { - "id": 2869, + "id": 2581, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "false", @@ -93613,9 +93698,9 @@ } }, { - "id": 2870, + "id": 2582, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "false", @@ -93624,6205 +93709,6601 @@ } }, { - "id": 2871, + "id": 2583, "properties": { - "age": "15", + "age": "6", "east": "false", "north": "false", "south": "false", "up": "false", "west": "false" } - } - ] - }, - "minecraft:fire_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12829, + "id": 2584, "properties": { - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 12830, + "id": 2585, "properties": { - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } - } - ] - }, - "minecraft:fire_coral_block": { - "states": [ - { - "default": true, - "id": 12811 - } - ] - }, - "minecraft:fire_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12849, + "id": 2586, "properties": { - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 12850, + "id": 2587, "properties": { - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } - } - ] - }, - "minecraft:fire_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12917, + "id": 2588, "properties": { - "facing": "north", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 12918, + "id": 2589, "properties": { - "facing": "north", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 12919, + "id": 2590, "properties": { - "facing": "south", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 12920, + "id": 2591, "properties": { - "facing": "south", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 12921, + "id": 2592, "properties": { - "facing": "west", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 12922, + "id": 2593, "properties": { - "facing": "west", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 12923, + "id": 2594, "properties": { - "facing": "east", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 12924, + "id": 2595, "properties": { - "facing": "east", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } - } - ] - }, - "minecraft:fletching_table": { - "states": [ - { - "default": true, - "id": 18437 - } - ] - }, - "minecraft:flower_pot": { - "states": [ - { - "default": true, - "id": 8567 - } - ] - }, - "minecraft:flowering_azalea": { - "states": [ - { - "default": true, - "id": 22511 - } - ] - }, - "minecraft:flowering_azalea_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 489, + "id": 2596, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 490, + "id": 2597, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 491, + "id": 2598, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 492, + "id": 2599, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 493, + "id": 2600, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 494, + "id": 2601, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 495, + "id": 2602, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 496, + "id": 2603, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 497, + "id": 2604, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 498, + "id": 2605, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 499, + "id": 2606, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 500, + "id": 2607, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 501, + "id": 2608, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 502, + "id": 2609, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 503, + "id": 2610, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 504, + "id": 2611, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 505, + "id": 2612, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 506, + "id": 2613, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 507, + "id": 2614, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 508, + "id": 2615, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 509, + "id": 2616, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 510, + "id": 2617, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 511, + "id": 2618, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 512, + "id": 2619, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 513, + "id": 2620, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 514, - "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" - } - }, - { - "id": 515, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 516, - "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:frogspawn": { - "states": [ - { - "default": true, - "id": 24258 - } - ] - }, - "minecraft:frosted_ice": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 12539, - "properties": { - "age": "0" - } - }, - { - "id": 12540, - "properties": { - "age": "1" - } - }, - { - "id": 12541, - "properties": { - "age": "2" - } - }, - { - "id": 12542, - "properties": { - "age": "3" - } - } - ] - }, - "minecraft:furnace": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4294, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 4295, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 4296, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 4297, - "properties": { - "facing": "south", - "lit": "false" - } - }, - { - "id": 4298, - "properties": { - "facing": "west", - "lit": "true" - } - }, - { - "id": 4299, - "properties": { - "facing": "west", - "lit": "false" - } - }, - { - "id": 4300, - "properties": { - "facing": "east", - "lit": "true" - } - }, - { - "id": 4301, - "properties": { - "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:gilded_blackstone": { - "states": [ - { - "default": true, - "id": 20285 - } - ] - }, - "minecraft:glass": { - "states": [ - { - "default": true, - "id": 519 - } - ] - }, - "minecraft:glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 6780, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6781, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 6782, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 6783, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 6784, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 6785, + "id": 2621, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6786, + "id": 2622, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6787, + "id": 2623, "properties": { + "age": "8", "east": "true", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6788, + "id": 2624, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6789, + "id": 2625, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6790, + "id": 2626, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6791, + "id": 2627, "properties": { + "age": "8", "east": "true", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6792, + "id": 2628, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6793, + "id": 2629, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6794, + "id": 2630, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6795, + "id": 2631, "properties": { + "age": "8", "east": "true", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6796, + "id": 2632, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6797, + "id": 2633, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6798, + "id": 2634, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6799, + "id": 2635, "properties": { + "age": "8", "east": "false", "north": "true", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6800, + "id": 2636, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6801, + "id": 2637, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6802, + "id": 2638, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6803, + "id": 2639, "properties": { + "age": "8", "east": "false", "north": "true", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6804, + "id": 2640, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6805, + "id": 2641, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6806, + "id": 2642, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6807, + "id": 2643, "properties": { + "age": "8", "east": "false", "north": "false", "south": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6808, + "id": 2644, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6809, + "id": 2645, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6810, + "id": 2646, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "default": true, - "id": 6811, + "id": 2647, "properties": { + "age": "8", "east": "false", "north": "false", "south": "false", - "waterlogged": "false", + "up": "false", "west": "false" } - } - ] - }, - "minecraft:glow_lichen": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 6869, + "id": 2648, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6870, + "id": 2649, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6871, + "id": 2650, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6872, + "id": 2651, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6873, + "id": 2652, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "true" } }, { - "id": 6874, + "id": 2653, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "false" } }, { - "id": 6875, + "id": 2654, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6876, + "id": 2655, "properties": { - "down": "true", + "age": "9", "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6877, + "id": 2656, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", - "south": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6878, + "id": 2657, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", - "south": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6879, + "id": 2658, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6880, + "id": 2659, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6881, + "id": 2660, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6882, + "id": 2661, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6883, + "id": 2662, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6884, + "id": 2663, "properties": { - "down": "true", + "age": "9", "east": "true", - "north": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6885, + "id": 2664, "properties": { - "down": "true", - "east": "true", - "north": "false", + "age": "9", + "east": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6886, + "id": 2665, "properties": { - "down": "true", - "east": "true", - "north": "false", + "age": "9", + "east": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6887, + "id": 2666, "properties": { - "down": "true", - "east": "true", - "north": "false", + "age": "9", + "east": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6888, + "id": 2667, "properties": { - "down": "true", - "east": "true", - "north": "false", + "age": "9", + "east": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6889, + "id": 2668, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "west": "true" } }, { - "id": 6890, + "id": 2669, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", "west": "false" } }, { - "id": 6891, + "id": 2670, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", + "age": "9", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6892, + "id": 2671, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", + "age": "9", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6893, + "id": 2672, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6894, + "id": 2673, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6895, + "id": 2674, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6896, + "id": 2675, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6897, + "id": 2676, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6898, + "id": 2677, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6899, + "id": 2678, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6900, + "id": 2679, "properties": { - "down": "true", - "east": "true", + "age": "9", + "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6901, + "id": 2680, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6902, + "id": 2681, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6903, + "id": 2682, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6904, + "id": 2683, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6905, + "id": 2684, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "true" } }, { - "id": 6906, + "id": 2685, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "false" } }, { - "id": 6907, + "id": 2686, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6908, + "id": 2687, "properties": { - "down": "true", - "east": "false", + "age": "10", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6909, + "id": 2688, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", + "age": "10", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6910, + "id": 2689, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", + "age": "10", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6911, + "id": 2690, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6912, + "id": 2691, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6913, + "id": 2692, "properties": { - "down": "true", - "east": "false", - "north": "true", + "age": "10", + "east": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6914, + "id": 2693, "properties": { - "down": "true", - "east": "false", - "north": "true", + "age": "10", + "east": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6915, + "id": 2694, "properties": { - "down": "true", - "east": "false", - "north": "true", + "age": "10", + "east": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6916, + "id": 2695, "properties": { - "down": "true", - "east": "false", - "north": "true", + "age": "10", + "east": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6917, + "id": 2696, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6918, + "id": 2697, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6919, + "id": 2698, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6920, + "id": 2699, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6921, + "id": 2700, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", "west": "true" } }, { - "id": 6922, + "id": 2701, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", + "north": "true", + "south": "false", + "up": "true", "west": "false" } }, { - "id": 6923, + "id": 2702, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6924, + "id": 2703, "properties": { - "down": "true", + "age": "10", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6925, + "id": 2704, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6926, + "id": 2705, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", - "south": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6927, + "id": 2706, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6928, + "id": 2707, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6929, + "id": 2708, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6930, + "id": 2709, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6931, + "id": 2710, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6932, + "id": 2711, "properties": { - "down": "true", + "age": "10", "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6933, + "id": 2712, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6934, + "id": 2713, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6935, + "id": 2714, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6936, + "id": 2715, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "false" } }, { - "id": 6937, + "id": 2716, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "true" } }, { - "id": 6938, + "id": 2717, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", + "south": "false", + "up": "true", "west": "false" } }, { - "id": 6939, + "id": 2718, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6940, + "id": 2719, "properties": { - "down": "false", + "age": "11", "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6941, + "id": 2720, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", - "south": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6942, + "id": 2721, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", - "south": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6943, + "id": 2722, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6944, + "id": 2723, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6945, + "id": 2724, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "true" } }, { - "id": 6946, + "id": 2725, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", + "north": "false", "south": "false", - "up": "false", - "waterlogged": "true", + "up": "true", "west": "false" } }, { - "id": 6947, + "id": 2726, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "true" } }, { - "id": 6948, + "id": 2727, "properties": { - "down": "false", + "age": "11", "east": "true", - "north": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "false", "west": "false" } }, { - "id": 6949, + "id": 2728, "properties": { - "down": "false", - "east": "true", - "north": "false", + "age": "11", + "east": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "true" } }, { - "id": 6950, + "id": 2729, "properties": { - "down": "false", - "east": "true", - "north": "false", + "age": "11", + "east": "false", + "north": "true", "south": "true", "up": "true", - "waterlogged": "true", "west": "false" } }, { - "id": 6951, + "id": 2730, "properties": { - "down": "false", - "east": "true", - "north": "false", + "age": "11", + "east": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "false", + "up": "false", "west": "true" } }, { - "id": 6952, + "id": 2731, "properties": { - "down": "false", - "east": "true", - "north": "false", + "age": "11", + "east": "false", + "north": "true", "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2732, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2733, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6953, + "id": 2734, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", + "age": "11", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6954, + "id": 2735, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", + "age": "11", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6955, + "id": 2736, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "true" } }, { - "id": 6956, + "id": 2737, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "false" } }, { - "id": 6957, + "id": 2738, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6958, + "id": 2739, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6959, + "id": 2740, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "true" } }, { - "id": 6960, + "id": 2741, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6961, + "id": 2742, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6962, + "id": 2743, "properties": { - "down": "false", - "east": "true", + "age": "11", + "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6963, + "id": 2744, "properties": { - "down": "false", + "age": "12", "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", + "north": "true", + "south": "true", + "up": "true", "west": "true" } }, { - "id": 6964, + "id": 2745, "properties": { - "down": "false", + "age": "12", "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", + "north": "true", + "south": "true", + "up": "true", "west": "false" } }, { - "id": 6965, + "id": 2746, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", "west": "true" } }, { - "id": 6966, + "id": 2747, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", "west": "false" } }, { - "id": 6967, + "id": 2748, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "true", - "waterlogged": "false", "west": "true" } }, { - "id": 6968, + "id": 2749, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6969, + "id": 2750, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6970, + "id": 2751, "properties": { - "down": "false", - "east": "false", + "age": "12", + "east": "true", "north": "true", - "south": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6971, + "id": 2752, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "true" } }, { - "id": 6972, + "id": 2753, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "false" } }, { - "id": 6973, + "id": 2754, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6974, + "id": 2755, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6975, + "id": 2756, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "true" } }, { - "id": 6976, + "id": 2757, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6977, + "id": 2758, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6978, + "id": 2759, "properties": { - "down": "false", - "east": "false", - "north": "true", + "age": "12", + "east": "true", + "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6979, + "id": 2760, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", + "south": "true", + "up": "true", "west": "true" } }, { - "id": 6980, + "id": 2761, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", + "south": "true", + "up": "true", "west": "false" } }, { - "id": 6981, + "id": 2762, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", "west": "true" } }, { - "id": 6982, + "id": 2763, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", + "north": "true", "south": "true", - "up": "true", - "waterlogged": "true", + "up": "false", "west": "false" } }, { - "id": 6983, + "id": 2764, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", "west": "true" } }, { - "id": 6984, + "id": 2765, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6985, + "id": 2766, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6986, + "id": 2767, "properties": { - "down": "false", + "age": "12", "east": "false", - "north": "false", - "south": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6987, + "id": 2768, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "true" } }, { - "id": 6988, + "id": 2769, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "true", - "up": "false", - "waterlogged": "false", + "up": "true", "west": "false" } }, { - "id": 6989, + "id": 2770, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", + "south": "true", + "up": "false", "west": "true" } }, { - "id": 6990, + "id": 2771, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", + "south": "true", + "up": "false", "west": "false" } }, { - "id": 6991, + "id": 2772, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "true" } }, { - "id": 6992, + "id": 2773, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "false", "up": "true", - "waterlogged": "false", "west": "false" } }, { - "id": 6993, + "id": 2774, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "true" } }, { - "id": 6994, + "id": 2775, "properties": { - "down": "false", + "age": "12", "east": "false", "north": "false", "south": "false", "up": "false", - "waterlogged": "true", "west": "false" } }, { - "id": 6995, + "id": 2776, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", "west": "true" } }, { - "default": true, - "id": 6996, + "id": 2777, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", "west": "false" } - } - ] - }, - "minecraft:glowstone": { - "states": [ - { - "default": true, - "id": 5864 - } - ] - }, - "minecraft:gold_block": { - "states": [ - { - "default": true, - "id": 2091 - } - ] - }, - "minecraft:gold_ore": { - "states": [ - { - "default": true, - "id": 123 - } - ] - }, - "minecraft:granite": { - "states": [ - { - "default": true, - "id": 2 - } - ] - }, - "minecraft:granite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14130, - "properties": { - "type": "top", - "waterlogged": "true" - } }, { - "id": 14131, + "id": 2778, "properties": { - "type": "top", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 14132, + "id": 2779, "properties": { - "type": "bottom", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "default": true, - "id": 14133, + "id": 2780, "properties": { - "type": "bottom", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 14134, + "id": 2781, "properties": { - "type": "double", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 14135, + "id": 2782, "properties": { - "type": "double", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } - } - ] - }, - "minecraft:granite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 13682, + "id": 2783, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13683, + "id": 2784, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13684, + "id": 2785, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13685, + "id": 2786, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13686, + "id": 2787, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13687, + "id": 2788, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13688, + "id": 2789, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13689, + "id": 2790, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13690, + "id": 2791, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13691, + "id": 2792, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13692, + "id": 2793, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "default": true, - "id": 13693, + "id": 2794, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13694, + "id": 2795, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13695, + "id": 2796, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13696, + "id": 2797, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13697, + "id": 2798, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13698, + "id": 2799, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13699, + "id": 2800, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13700, + "id": 2801, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13701, + "id": 2802, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13702, + "id": 2803, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13703, + "id": 2804, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13704, + "id": 2805, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13705, + "id": 2806, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13706, + "id": 2807, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13707, + "id": 2808, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13708, + "id": 2809, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13709, + "id": 2810, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13710, + "id": 2811, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13711, + "id": 2812, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13712, + "id": 2813, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13713, + "id": 2814, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13714, + "id": 2815, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13715, + "id": 2816, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13716, + "id": 2817, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13717, + "id": 2818, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13718, + "id": 2819, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13719, + "id": 2820, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13720, + "id": 2821, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13721, + "id": 2822, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13722, + "id": 2823, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13723, + "id": 2824, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13724, + "id": 2825, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13725, + "id": 2826, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13726, + "id": 2827, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13727, + "id": 2828, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13728, + "id": 2829, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13729, + "id": 2830, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13730, + "id": 2831, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13731, + "id": 2832, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13732, + "id": 2833, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13733, + "id": 2834, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13734, + "id": 2835, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13735, + "id": 2836, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13736, + "id": 2837, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13737, + "id": 2838, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13738, + "id": 2839, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13739, + "id": 2840, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13740, + "id": 2841, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13741, + "id": 2842, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13742, + "id": 2843, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13743, + "id": 2844, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13744, + "id": 2845, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13745, + "id": 2846, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13746, + "id": 2847, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13747, + "id": 2848, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13748, + "id": 2849, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13749, + "id": 2850, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13750, + "id": 2851, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13751, + "id": 2852, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13752, + "id": 2853, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13753, + "id": 2854, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 13754, + "id": 2855, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 13755, + "id": 2856, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 13756, + "id": 2857, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 13757, + "id": 2858, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 13758, + "id": 2859, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 13759, + "id": 2860, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 13760, + "id": 2861, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 13761, + "id": 2862, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } - } - ] - }, - "minecraft:granite_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + }, { - "id": 15456, + "id": 2863, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 15457, + "id": 2864, "properties": { - "east": "none", - "north": "none", - "south": "none", + "age": "15", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15458, + "id": 2865, "properties": { - "east": "none", - "north": "none", - "south": "none", + "age": "15", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "default": true, - "id": 15459, + "id": 2866, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 15460, + "id": 2867, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 15461, + "id": 2868, "properties": { - "east": "none", - "north": "none", - "south": "none", + "age": "15", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15462, + "id": 2869, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 15463, + "id": 2870, "properties": { - "east": "none", - "north": "none", - "south": "none", + "age": "15", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15464, + "id": 2871, "properties": { - "east": "none", - "north": "none", - "south": "none", + "age": "15", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "tall" + "west": "false" } - }, + } + ] + }, + "minecraft:fire_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15465, + "default": true, + "id": 12829, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "true" } }, { - "id": 15466, + "id": 12830, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:fire_coral_block": { + "states": [ { - "id": 15467, + "default": true, + "id": 12811 + } + ] + }, + "minecraft:fire_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12849, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true" } }, { - "id": 15468, + "id": 12850, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15469, + "default": true, + "id": 12917, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "waterlogged": "true" } }, { - "id": 15470, + "id": 12918, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "waterlogged": "false" } }, { - "id": 15471, + "id": 12919, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "waterlogged": "true" } }, { - "id": 15472, + "id": 12920, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "waterlogged": "false" } }, { - "id": 15473, + "id": 12921, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "waterlogged": "true" } }, { - "id": 15474, + "id": 12922, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "waterlogged": "false" } }, { - "id": 15475, + "id": 12923, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "waterlogged": "true" } }, { - "id": 15476, + "id": 12924, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "states": [ + { + "default": true, + "id": 18437 + } + ] + }, + "minecraft:flower_pot": { + "states": [ + { + "default": true, + "id": 8567 + } + ] + }, + "minecraft:flowering_azalea": { + "states": [ + { + "default": true, + "id": 24825 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 489, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15477, + "id": 490, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "distance": "1", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15478, + "id": 491, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "distance": "1", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15479, + "id": 492, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "distance": "1", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15480, + "id": 493, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "distance": "2", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15481, + "id": 494, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "distance": "2", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15482, + "id": 495, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "distance": "2", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15483, + "id": 496, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "distance": "2", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15484, + "id": 497, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "distance": "3", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15485, + "id": 498, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "distance": "3", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15486, + "id": 499, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "distance": "3", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15487, + "id": 500, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "distance": "3", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15488, + "id": 501, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "distance": "4", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15489, + "id": 502, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "distance": "4", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15490, + "id": 503, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "distance": "4", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15491, + "id": 504, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "distance": "4", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15492, + "id": 505, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "distance": "5", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15493, + "id": 506, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "distance": "5", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15494, + "id": 507, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "distance": "5", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15495, + "id": 508, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "distance": "5", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15496, + "id": 509, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "distance": "6", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15497, + "id": 510, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "distance": "6", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15498, + "id": 511, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "distance": "6", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15499, + "id": 512, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "distance": "6", + "persistent": "false", + "waterlogged": "false" } }, { - "id": 15500, + "id": 513, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "distance": "7", + "persistent": "true", + "waterlogged": "true" } }, { - "id": 15501, + "id": 514, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "distance": "7", + "persistent": "true", + "waterlogged": "false" } }, { - "id": 15502, + "id": 515, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "distance": "7", + "persistent": "false", + "waterlogged": "true" } }, { - "id": 15503, + "default": true, + "id": 516, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "states": [ + { + "default": true, + "id": 26572 + } + ] + }, + "minecraft:frosted_ice": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12539, + "properties": { + "age": "0" } }, { - "id": 15504, + "id": 12540, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "age": "1" } }, { - "id": 15505, + "id": 12541, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "age": "2" } }, { - "id": 15506, + "id": 12542, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4294, + "properties": { + "facing": "north", + "lit": "true" } }, { - "id": 15507, + "default": true, + "id": 4295, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "lit": "false" } }, { - "id": 15508, + "id": 4296, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "lit": "true" } }, { - "id": 15509, + "id": 4297, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "lit": "false" } }, { - "id": 15510, + "id": 4298, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "lit": "true" } }, { - "id": 15511, + "id": 4299, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "lit": "false" } }, { - "id": 15512, + "id": 4300, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "lit": "true" } }, { - "id": 15513, + "id": 4301, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "states": [ + { + "default": true, + "id": 20285 + } + ] + }, + "minecraft:glass": { + "states": [ + { + "default": true, + "id": 519 + } + ] + }, + "minecraft:glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6779, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15514, + "id": 6780, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 15515, + "id": 6781, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15516, + "id": 6782, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15517, + "id": 6783, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15518, + "id": 6784, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15519, + "id": 6785, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15520, + "id": 6786, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15521, + "id": 6787, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15522, + "id": 6788, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15523, + "id": 6789, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 15524, + "id": 6790, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15525, + "id": 6791, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15526, + "id": 6792, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15527, + "id": 6793, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15528, + "id": 6794, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 15529, + "id": 6795, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15530, + "id": 6796, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15531, + "id": 6797, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15532, + "id": 6798, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15533, + "id": 6799, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15534, + "id": 6800, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15535, + "id": 6801, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15536, + "id": 6802, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6803, + "properties": { + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15537, + "id": 6804, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 15538, + "id": 6805, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15539, + "id": 6806, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15540, + "id": 6807, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15541, + "id": 6808, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15542, + "id": 6809, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15543, + "default": true, + "id": 6810, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "false" } - }, + } + ] + }, + "minecraft:glow_lichen": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15544, + "id": 6869, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "true" } }, { - "id": 15545, + "id": 6870, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "false" } }, { - "id": 15546, + "id": 6871, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 15547, + "id": 6872, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15548, + "id": 6873, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15549, + "id": 6874, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "true", + "west": "false" } }, { - "id": 15550, + "id": 6875, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15551, + "id": 6876, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "false", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15552, + "id": 6877, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15553, + "id": 6878, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15554, + "id": 6879, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "true" } }, { - "id": 15555, + "id": 6880, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15556, + "id": 6881, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15557, + "id": 6882, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15558, + "id": 6883, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "waterlogged": "false", + "west": "true" } }, { - "id": 15559, + "id": 6884, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "false" } }, { - "id": 15560, + "id": 6885, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15561, + "id": 6886, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 15562, + "id": 6887, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15563, + "id": 6888, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15564, + "id": 6889, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15565, + "id": 6890, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15566, + "id": 6891, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15567, + "id": 6892, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15568, + "id": 6893, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "true" } }, { - "id": 15569, + "id": 6894, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "false" } }, { - "id": 15570, + "id": 6895, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 15571, + "id": 6896, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15572, + "id": 6897, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15573, + "id": 6898, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "none" + "waterlogged": "true", + "west": "false" } }, { - "id": 15574, + "id": 6899, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15575, + "id": 6900, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "false", "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15576, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15577, + "id": 6901, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15578, + "id": 6902, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15579, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15580, + "id": 6903, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15581, + "id": 6904, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15582, - "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15583, + "id": 6905, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15584, + "id": 6906, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15585, + "id": 6907, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15586, + "id": 6908, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15587, + "id": 6909, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15588, + "id": 6910, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15589, + "id": 6911, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "true" } }, { - "id": 15590, + "id": 6912, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "false" } }, { - "id": 15591, + "id": 6913, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15592, + "id": 6914, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15593, + "id": 6915, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15594, + "id": 6916, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "waterlogged": "false", + "west": "false" } }, { - "id": 15595, + "id": 6917, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15596, + "id": 6918, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15597, + "id": 6919, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15598, + "id": 6920, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15599, + "id": 6921, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "true" } }, { - "id": 15600, + "id": 6922, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15601, + "id": 6923, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15602, + "id": 6924, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 15603, + "id": 6925, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "none" + "waterlogged": "true", + "west": "true" } }, { - "id": 15604, + "id": 6926, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "false" } }, { - "id": 15605, + "id": 6927, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15606, + "id": 6928, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15607, + "id": 6929, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15608, + "id": 6930, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15609, + "id": 6931, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15610, + "id": 6932, "properties": { - "east": "low", - "north": "low", - "south": "none", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15611, + "id": 6933, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15612, + "id": 6934, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15613, + "id": 6935, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "true" } }, { - "id": 15614, + "id": 6936, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "false" } }, { - "id": 15615, + "id": 6937, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15616, + "id": 6938, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15617, + "id": 6939, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15618, + "id": 6940, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" + "waterlogged": "false", + "west": "false" } }, { - "id": 15619, + "id": 6941, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15620, + "id": 6942, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15621, + "id": 6943, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15622, + "id": 6944, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15623, + "id": 6945, "properties": { - "east": "low", - "north": "low", - "south": "low", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "true" } }, { - "id": 15624, + "id": 6946, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15625, + "id": 6947, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15626, + "id": 6948, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 15627, + "id": 6949, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "none" + "waterlogged": "true", + "west": "true" } }, { - "id": 15628, + "id": 6950, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "false" } }, { - "id": 15629, + "id": 6951, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15630, + "id": 6952, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15631, + "id": 6953, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15632, + "id": 6954, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15633, + "id": 6955, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15634, + "id": 6956, "properties": { - "east": "low", - "north": "low", - "south": "tall", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15635, + "id": 6957, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15636, + "id": 6958, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15637, + "id": 6959, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" + "waterlogged": "false", + "west": "true" } }, { - "id": 15638, + "id": 6960, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "false" } }, { - "id": 15639, + "id": 6961, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15640, + "id": 6962, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15641, + "id": 6963, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15642, + "id": 6964, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "waterlogged": "false", + "west": "false" } }, { - "id": 15643, + "id": 6965, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15644, + "id": 6966, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", "waterlogged": "true", - "west": "tall" + "west": "false" } }, { - "id": 15645, + "id": 6967, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "none" + "west": "true" } }, { - "id": 15646, + "id": 6968, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", "waterlogged": "false", - "west": "low" + "west": "false" } }, { - "id": 15647, + "id": 6969, "properties": { - "east": "low", - "north": "tall", - "south": "none", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" + "waterlogged": "true", + "west": "true" } }, { - "id": 15648, + "id": 6970, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15649, + "id": 6971, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15650, + "id": 6972, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 15651, + "id": 6973, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "none" + "waterlogged": "true", + "west": "true" } }, { - "id": 15652, + "id": 6974, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "waterlogged": "true", + "west": "false" } }, { - "id": 15653, + "id": 6975, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", "waterlogged": "false", - "west": "tall" + "west": "true" } }, { - "id": 15654, + "id": 6976, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15655, + "id": 6977, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15656, + "id": 6978, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15657, - "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15658, + "id": 6979, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15659, + "id": 6980, "properties": { - "east": "low", - "north": "tall", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15660, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15661, + "id": 6981, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15662, + "id": 6982, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15663, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15664, + "id": 6983, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15665, + "id": 6984, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "true", "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15666, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15667, + "id": 6985, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15668, + "id": 6986, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15669, - "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15670, + "id": 6987, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15671, + "id": 6988, "properties": { - "east": "low", - "north": "tall", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 15672, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "west": "false" } }, { - "id": 15673, + "id": 6989, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", "waterlogged": "true", - "west": "low" + "west": "true" } }, { - "id": 15674, + "id": 6990, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 15675, - "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15676, + "id": 6991, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15677, + "id": 6992, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15678, + "id": 6993, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15679, + "id": 6994, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15680, + "id": 6995, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "tall" + "waterlogged": "false", + "west": "true" } }, { - "id": 15681, + "default": true, + "id": 6996, "properties": { - "east": "tall", - "north": "none", - "south": "none", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "false", "waterlogged": "false", - "west": "none" + "west": "false" } - }, + } + ] + }, + "minecraft:glowstone": { + "states": [ { - "id": 15682, + "default": true, + "id": 5863 + } + ] + }, + "minecraft:gold_block": { + "states": [ + { + "default": true, + "id": 2091 + } + ] + }, + "minecraft:gold_ore": { + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:granite": { + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14130, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "type": "top", + "waterlogged": "true" } }, { - "id": 15683, + "id": 14131, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "type": "top", + "waterlogged": "false" } }, { - "id": 15684, + "id": 14132, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 15685, + "default": true, + "id": 14133, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 15686, + "id": 14134, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "type": "double", + "waterlogged": "true" } }, { - "id": 15687, + "id": 14135, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15688, + "id": 13683, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15689, + "id": 13684, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15690, + "id": 13685, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15691, + "id": 13686, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 15692, + "id": 13687, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 15693, + "id": 13688, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 15694, + "id": 13689, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 15695, + "id": 13690, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 15696, + "id": 13691, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 15697, + "id": 13692, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15698, + "default": true, + "id": 13693, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15699, + "id": 13694, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15700, + "id": 13695, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15701, + "id": 13696, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 15702, + "id": 13697, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 15703, + "id": 13698, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 15704, + "id": 13699, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 15705, + "id": 13700, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 15706, + "id": 13701, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 15707, + "id": 13702, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15708, + "id": 13703, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15709, + "id": 13704, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15710, + "id": 13705, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15711, + "id": 13706, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 15712, + "id": 13707, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 15713, + "id": 13708, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 15714, + "id": 13709, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 15715, + "id": 13710, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 15716, + "id": 13711, "properties": { - "east": "tall", - "north": "low", + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15456, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15457, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15458, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15459, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15460, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15461, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15462, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15463, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15464, + "properties": { + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "true", @@ -99830,10 +100311,10 @@ } }, { - "id": 15717, + "id": 15465, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -99841,10 +100322,10 @@ } }, { - "id": 15718, + "id": 15466, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -99852,10 +100333,10 @@ } }, { - "id": 15719, + "id": 15467, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "none", "up": "false", "waterlogged": "false", @@ -99863,10 +100344,10 @@ } }, { - "id": 15720, + "id": 15468, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -99874,10 +100355,10 @@ } }, { - "id": 15721, + "id": 15469, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -99885,10 +100366,10 @@ } }, { - "id": 15722, + "id": 15470, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "true", @@ -99896,10 +100377,10 @@ } }, { - "id": 15723, + "id": 15471, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -99907,10 +100388,10 @@ } }, { - "id": 15724, + "id": 15472, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -99918,10 +100399,10 @@ } }, { - "id": 15725, + "id": 15473, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "true", "waterlogged": "false", @@ -99929,10 +100410,10 @@ } }, { - "id": 15726, + "id": 15474, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -99940,10 +100421,10 @@ } }, { - "id": 15727, + "id": 15475, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -99951,10 +100432,10 @@ } }, { - "id": 15728, + "id": 15476, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "true", @@ -99962,10 +100443,10 @@ } }, { - "id": 15729, + "id": 15477, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -99973,10 +100454,10 @@ } }, { - "id": 15730, + "id": 15478, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -99984,10 +100465,10 @@ } }, { - "id": 15731, + "id": 15479, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "low", "up": "false", "waterlogged": "false", @@ -99995,10 +100476,10 @@ } }, { - "id": 15732, + "id": 15480, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -100006,10 +100487,10 @@ } }, { - "id": 15733, + "id": 15481, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -100017,10 +100498,10 @@ } }, { - "id": 15734, + "id": 15482, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "true", @@ -100028,10 +100509,10 @@ } }, { - "id": 15735, + "id": 15483, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -100039,10 +100520,10 @@ } }, { - "id": 15736, + "id": 15484, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -100050,10 +100531,10 @@ } }, { - "id": 15737, + "id": 15485, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "true", "waterlogged": "false", @@ -100061,10 +100542,10 @@ } }, { - "id": 15738, + "id": 15486, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -100072,10 +100553,10 @@ } }, { - "id": 15739, + "id": 15487, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -100083,10 +100564,10 @@ } }, { - "id": 15740, + "id": 15488, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "true", @@ -100094,10 +100575,10 @@ } }, { - "id": 15741, + "id": 15489, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -100105,10 +100586,10 @@ } }, { - "id": 15742, + "id": 15490, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -100116,10 +100597,10 @@ } }, { - "id": 15743, + "id": 15491, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "none", "south": "tall", "up": "false", "waterlogged": "false", @@ -100127,10 +100608,10 @@ } }, { - "id": 15744, + "id": 15492, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -100138,10 +100619,10 @@ } }, { - "id": 15745, + "id": 15493, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -100149,10 +100630,10 @@ } }, { - "id": 15746, + "id": 15494, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "true", @@ -100160,10 +100641,10 @@ } }, { - "id": 15747, + "id": 15495, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -100171,10 +100652,10 @@ } }, { - "id": 15748, + "id": 15496, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -100182,10 +100663,10 @@ } }, { - "id": 15749, + "id": 15497, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "true", "waterlogged": "false", @@ -100193,10 +100674,10 @@ } }, { - "id": 15750, + "id": 15498, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -100204,10 +100685,10 @@ } }, { - "id": 15751, + "id": 15499, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -100215,10 +100696,10 @@ } }, { - "id": 15752, + "id": 15500, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "true", @@ -100226,10 +100707,10 @@ } }, { - "id": 15753, + "id": 15501, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -100237,10 +100718,10 @@ } }, { - "id": 15754, + "id": 15502, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -100248,10 +100729,10 @@ } }, { - "id": 15755, + "id": 15503, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "none", "up": "false", "waterlogged": "false", @@ -100259,10 +100740,10 @@ } }, { - "id": 15756, + "id": 15504, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -100270,10 +100751,10 @@ } }, { - "id": 15757, + "id": 15505, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -100281,10 +100762,10 @@ } }, { - "id": 15758, + "id": 15506, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "true", @@ -100292,10 +100773,10 @@ } }, { - "id": 15759, + "id": 15507, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -100303,10 +100784,10 @@ } }, { - "id": 15760, + "id": 15508, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -100314,10 +100795,10 @@ } }, { - "id": 15761, + "id": 15509, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "true", "waterlogged": "false", @@ -100325,10 +100806,10 @@ } }, { - "id": 15762, + "id": 15510, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -100336,10 +100817,10 @@ } }, { - "id": 15763, + "id": 15511, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -100347,10 +100828,10 @@ } }, { - "id": 15764, + "id": 15512, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "true", @@ -100358,10 +100839,10 @@ } }, { - "id": 15765, + "id": 15513, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -100369,10 +100850,10 @@ } }, { - "id": 15766, + "id": 15514, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -100380,10 +100861,10 @@ } }, { - "id": 15767, + "id": 15515, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "low", "up": "false", "waterlogged": "false", @@ -100391,10 +100872,10 @@ } }, { - "id": 15768, + "id": 15516, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -100402,10 +100883,10 @@ } }, { - "id": 15769, + "id": 15517, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -100413,10 +100894,10 @@ } }, { - "id": 15770, + "id": 15518, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "true", @@ -100424,10 +100905,10 @@ } }, { - "id": 15771, + "id": 15519, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -100435,10 +100916,10 @@ } }, { - "id": 15772, + "id": 15520, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -100446,10 +100927,10 @@ } }, { - "id": 15773, + "id": 15521, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "true", "waterlogged": "false", @@ -100457,10 +100938,10 @@ } }, { - "id": 15774, + "id": 15522, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -100468,10 +100949,10 @@ } }, { - "id": 15775, + "id": 15523, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -100479,10 +100960,10 @@ } }, { - "id": 15776, + "id": 15524, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "true", @@ -100490,10 +100971,10 @@ } }, { - "id": 15777, + "id": 15525, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -100501,10 +100982,10 @@ } }, { - "id": 15778, + "id": 15526, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", @@ -100512,2575 +100993,3384 @@ } }, { - "id": 15779, + "id": 15527, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "low", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:grass": { - "states": [ + }, { - "default": true, - "id": 2005 - } - ] - }, - "minecraft:grass_block": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, - "states": [ + "id": 15528, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { - "id": 8, + "id": 15529, "properties": { - "snowy": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "default": true, - "id": 9, + "id": 15530, "properties": { - "snowy": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:gravel": { - "states": [ + }, { - "default": true, - "id": 118 - } - ] - }, - "minecraft:gray_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ - { - "default": true, - "id": 10871, + "id": 15531, "properties": { - "rotation": "0" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 10872, + "id": 15532, "properties": { - "rotation": "1" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 10873, + "id": 15533, "properties": { - "rotation": "2" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10874, + "id": 15534, "properties": { - "rotation": "3" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 10875, + "id": 15535, "properties": { - "rotation": "4" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 10876, + "id": 15536, "properties": { - "rotation": "5" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10877, + "id": 15537, "properties": { - "rotation": "6" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 10878, + "id": 15538, "properties": { - "rotation": "7" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 10879, + "id": 15539, "properties": { - "rotation": "8" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10880, + "id": 15540, "properties": { - "rotation": "9" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 10881, + "id": 15541, "properties": { - "rotation": "10" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 10882, + "id": 15542, "properties": { - "rotation": "11" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10883, + "id": 15543, "properties": { - "rotation": "12" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 10884, + "id": 15544, "properties": { - "rotation": "13" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 10885, + "id": 15545, "properties": { - "rotation": "14" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10886, - "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:gray_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1800, + "id": 15546, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1801, + "id": 15547, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1802, + "id": 15548, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 1803, + "id": 15549, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 1804, + "id": 15550, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1805, + "id": 15551, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1806, + "id": 15552, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1807, + "id": 15553, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1808, + "id": 15554, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1809, + "id": 15555, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 1810, + "id": 15556, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1811, + "id": 15557, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1812, + "id": 15558, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1813, + "id": 15559, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1814, + "id": 15560, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1815, + "id": 15561, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:gray_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20853, + "id": 15562, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 20854, + "id": 15563, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20855, + "id": 15564, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 20856, + "id": 15565, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 20857, + "id": 15566, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20858, + "id": 15567, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 20859, + "id": 15568, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 20860, + "id": 15569, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20861, + "id": 15570, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 20862, + "id": 15571, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 20863, + "id": 15572, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20864, + "id": 15573, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 20865, + "id": 15574, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 20866, + "id": 15575, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20867, + "id": 15576, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 20868, + "id": 15577, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:gray_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21013, + "id": 15578, "properties": { - "lit": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 21014, + "id": 15579, "properties": { - "lit": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:gray_carpet": { - "states": [ - { - "default": true, - "id": 10735 - } - ] - }, - "minecraft:gray_concrete": { - "states": [ - { - "default": true, - "id": 12735 - } - ] - }, - "minecraft:gray_concrete_powder": { - "states": [ - { - "default": true, - "id": 12751 - } - ] - }, - "minecraft:gray_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 12692, + "id": 15580, "properties": { - "facing": "north" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 12693, + "id": 15581, "properties": { - "facing": "south" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 12694, + "id": 15582, "properties": { - "facing": "west" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 12695, + "id": 15583, "properties": { - "facing": "east" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:gray_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12610, + "id": 15584, "properties": { - "facing": "north" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 12611, + "id": 15585, "properties": { - "facing": "east" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 12612, + "id": 15586, "properties": { - "facing": "south" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 12613, + "id": 15587, "properties": { - "facing": "west" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 12614, + "id": 15588, "properties": { - "facing": "up" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 12615, + "id": 15589, "properties": { - "facing": "down" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:gray_stained_glass": { - "states": [ - { - "default": true, - "id": 5953 - } - ] - }, - "minecraft:gray_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9596, + "id": 15590, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9597, + "id": 15591, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9598, + "id": 15592, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9599, + "id": 15593, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9600, + "id": 15594, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9601, + "id": 15595, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9602, + "id": 15596, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9603, + "id": 15597, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } }, { - "id": 9604, + "id": 15598, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9605, + "id": 15599, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9606, + "id": 15600, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9607, + "id": 15601, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9608, + "id": 15602, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9609, + "id": 15603, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9610, + "id": 15604, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9611, + "id": 15605, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9612, + "id": 15606, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9613, + "id": 15607, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9614, + "id": 15608, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9615, + "id": 15609, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } }, { - "id": 9616, + "id": 15610, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9617, + "id": 15611, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9618, + "id": 15612, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9619, + "id": 15613, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9620, + "id": 15614, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9621, + "id": 15615, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9622, + "id": 15616, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9623, + "id": 15617, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9624, + "id": 15618, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9625, + "id": 15619, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9626, + "id": 15620, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 9627, + "id": 15621, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } - } - ] - }, - "minecraft:gray_terracotta": { - "states": [ - { - "default": true, - "id": 9363 - } - ] - }, - "minecraft:gray_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 11043, + "id": 15622, "properties": { - "facing": "north" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11044, + "id": 15623, "properties": { - "facing": "south" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11045, + "id": 15624, "properties": { - "facing": "west" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11046, + "id": 15625, "properties": { - "facing": "east" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:gray_wool": { - "states": [ - { - "default": true, - "id": 2054 - } - ] - }, - "minecraft:green_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 10967, + "id": 15626, "properties": { - "rotation": "0" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10968, + "id": 15627, "properties": { - "rotation": "1" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 10969, + "id": 15628, "properties": { - "rotation": "2" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 10970, + "id": 15629, "properties": { - "rotation": "3" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10971, + "id": 15630, "properties": { - "rotation": "4" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 10972, + "id": 15631, "properties": { - "rotation": "5" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 10973, + "id": 15632, "properties": { - "rotation": "6" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10974, + "id": 15633, "properties": { - "rotation": "7" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 10975, + "id": 15634, "properties": { - "rotation": "8" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 10976, + "id": 15635, "properties": { - "rotation": "9" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10977, + "id": 15636, "properties": { - "rotation": "10" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 10978, + "id": 15637, "properties": { - "rotation": "11" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 10979, + "id": 15638, "properties": { - "rotation": "12" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10980, + "id": 15639, "properties": { - "rotation": "13" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 10981, + "id": 15640, "properties": { - "rotation": "14" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 10982, + "id": 15641, "properties": { - "rotation": "15" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:green_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + }, { - "id": 1896, + "id": 15642, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1897, + "id": 15643, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1898, + "id": 15644, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 1899, + "id": 15645, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 1900, + "id": 15646, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1901, + "id": 15647, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1902, + "id": 15648, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1903, + "id": 15649, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1904, + "id": 15650, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1905, + "id": 15651, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 1906, + "id": 15652, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1907, + "id": 15653, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1908, + "id": 15654, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1909, + "id": 15655, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1910, + "id": 15656, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1911, + "id": 15657, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:green_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20949, + "id": 15658, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 20950, + "id": 15659, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20951, + "id": 15660, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 20952, + "id": 15661, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 20953, + "id": 15662, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20954, + "id": 15663, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 20955, + "id": 15664, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 20956, + "id": 15665, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20957, + "id": 15666, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 20958, + "id": 15667, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 20959, + "id": 15668, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20960, + "id": 15669, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 20961, + "id": 15670, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 20962, + "id": 15671, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20963, + "id": 15672, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 20964, + "id": 15673, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:green_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21025, + "id": 15674, "properties": { - "lit": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 21026, + "id": 15675, "properties": { - "lit": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:green_carpet": { - "states": [ - { - "default": true, - "id": 10741 - } - ] - }, - "minecraft:green_concrete": { - "states": [ - { - "default": true, - "id": 12741 - } - ] - }, - "minecraft:green_concrete_powder": { - "states": [ - { - "default": true, - "id": 12757 - } - ] - }, - "minecraft:green_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 12716, + "id": 15676, "properties": { - "facing": "north" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 12717, + "id": 15677, "properties": { - "facing": "south" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 12718, + "id": 15678, "properties": { - "facing": "west" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 12719, + "id": 15679, "properties": { - "facing": "east" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:green_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12646, + "id": 15680, "properties": { - "facing": "north" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 12647, + "id": 15681, "properties": { - "facing": "east" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 12648, + "id": 15682, "properties": { - "facing": "south" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 12649, + "id": 15683, "properties": { - "facing": "west" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 12650, + "id": 15684, "properties": { - "facing": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 12651, + "id": 15685, "properties": { - "facing": "down" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:green_stained_glass": { - "states": [ - { - "default": true, - "id": 5959 - } - ] - }, - "minecraft:green_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9788, + "id": 15686, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9789, + "id": 15687, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9790, + "id": 15688, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9791, + "id": 15689, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9792, + "id": 15690, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9793, + "id": 15691, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9794, + "id": 15692, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9795, + "id": 15693, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } }, { - "id": 9796, + "id": 15694, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9797, + "id": 15695, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9798, + "id": 15696, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9799, + "id": 15697, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9800, + "id": 15698, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9801, + "id": 15699, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9802, + "id": 15700, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9803, + "id": 15701, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9804, + "id": 15702, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9805, + "id": 15703, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9806, + "id": 15704, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9807, + "id": 15705, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } }, { - "id": 9808, + "id": 15706, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9809, + "id": 15707, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9810, + "id": 15708, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9811, + "id": 15709, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9812, + "id": 15710, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "tall" } }, { - "id": 9813, + "id": 15711, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9814, + "id": 15712, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "low" } }, { - "id": 9815, + "id": 15713, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "tall" } }, { - "id": 9816, + "id": 15714, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9817, + "id": 15715, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9818, + "id": 15716, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 9819, + "id": 15717, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "none" } - } - ] - }, - "minecraft:green_terracotta": { - "states": [ - { - "default": true, - "id": 9369 - } - ] - }, - "minecraft:green_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 11067, + "id": 15718, "properties": { - "facing": "north" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11068, + "id": 15719, "properties": { - "facing": "south" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11069, + "id": 15720, "properties": { - "facing": "west" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11070, + "id": 15721, "properties": { - "facing": "east" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:green_wool": { - "states": [ - { - "default": true, - "id": 2060 - } - ] - }, - "minecraft:grindstone": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "id": 18438, + "id": 15722, "properties": { - "face": "floor", - "facing": "north" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18439, + "id": 15723, "properties": { - "face": "floor", - "facing": "south" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 18440, + "id": 15724, "properties": { - "face": "floor", - "facing": "west" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 18441, + "id": 15725, "properties": { - "face": "floor", - "facing": "east" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 18442, + "id": 15726, "properties": { - "face": "wall", - "facing": "north" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 18443, + "id": 15727, "properties": { - "face": "wall", - "facing": "south" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 18444, + "id": 15728, "properties": { - "face": "wall", - "facing": "west" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18445, + "id": 15729, "properties": { - "face": "wall", - "facing": "east" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 18446, + "id": 15730, "properties": { - "face": "ceiling", - "facing": "north" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 18447, + "id": 15731, "properties": { - "face": "ceiling", - "facing": "south" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18448, + "id": 15732, "properties": { - "face": "ceiling", - "facing": "west" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 18449, + "id": 15733, "properties": { - "face": "ceiling", - "facing": "east" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:hanging_roots": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 22586, + "id": 15734, "properties": { - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 22587, + "id": 15735, "properties": { - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:hay_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 10725, + "id": 15736, "properties": { - "axis": "x" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 10726, + "id": 15737, "properties": { - "axis": "y" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10727, + "id": 15738, "properties": { - "axis": "z" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:heavy_weighted_pressure_plate": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 9159, + "id": 15739, "properties": { - "power": "0" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9160, + "id": 15740, "properties": { - "power": "1" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9161, + "id": 15741, "properties": { - "power": "2" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9162, + "id": 15742, "properties": { - "power": "3" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9163, + "id": 15743, "properties": { - "power": "4" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9164, + "id": 15744, "properties": { - "power": "5" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9165, + "id": 15745, "properties": { - "power": "6" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9166, + "id": 15746, "properties": { - "power": "7" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9167, + "id": 15747, "properties": { - "power": "8" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9168, + "id": 15748, "properties": { - "power": "9" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 9169, + "id": 15749, "properties": { - "power": "10" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9170, + "id": 15750, "properties": { - "power": "11" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9171, + "id": 15751, "properties": { - "power": "12" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9172, + "id": 15752, "properties": { - "power": "13" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9173, + "id": 15753, "properties": { - "power": "14" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9174, + "id": 15754, "properties": { - "power": "15" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:honey_block": { - "states": [ - { - "default": true, - "id": 19445 - } - ] - }, - "minecraft:honeycomb_block": { - "states": [ - { - "default": true, - "id": 19446 - } - ] - }, - "minecraft:hopper": { - "properties": { - "enabled": [ - "true", - "false" - ], - "facing": [ - "down", - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 9225, + "id": 15755, "properties": { - "enabled": "true", - "facing": "down" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9226, + "id": 15756, "properties": { - "enabled": "true", - "facing": "north" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9227, + "id": 15757, "properties": { - "enabled": "true", - "facing": "south" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 9228, + "id": 15758, "properties": { - "enabled": "true", - "facing": "west" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9229, + "id": 15759, "properties": { - "enabled": "true", - "facing": "east" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 9230, + "id": 15760, "properties": { - "enabled": "false", - "facing": "down" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 9231, + "id": 15761, "properties": { - "enabled": "false", - "facing": "north" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9232, + "id": 15762, "properties": { - "enabled": "false", - "facing": "south" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 9233, + "id": 15763, "properties": { - "enabled": "false", - "facing": "west" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9234, + "id": 15764, "properties": { - "enabled": "false", - "facing": "east" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:horn_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12831, + "id": 15765, "properties": { - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 12832, + "id": 15766, "properties": { - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:horn_coral_block": { - "states": [ - { - "default": true, - "id": 12812 - } - ] - }, - "minecraft:horn_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12851, + "id": 15767, "properties": { - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 12852, + "id": 15768, "properties": { - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:horn_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12925, + "id": 15769, "properties": { - "facing": "north", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 12926, + "id": 15770, "properties": { - "facing": "north", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 12927, + "id": 15771, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15772, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15773, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15774, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15775, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15776, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15777, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15778, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15779, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass_block": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "states": [ + { + "default": true, + "id": 118 + } + ] + }, + "minecraft:gray_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10871, + "properties": { + "rotation": "0" + } + }, + { + "id": 10872, + "properties": { + "rotation": "1" + } + }, + { + "id": 10873, + "properties": { + "rotation": "2" + } + }, + { + "id": 10874, + "properties": { + "rotation": "3" + } + }, + { + "id": 10875, + "properties": { + "rotation": "4" + } + }, + { + "id": 10876, + "properties": { + "rotation": "5" + } + }, + { + "id": 10877, + "properties": { + "rotation": "6" + } + }, + { + "id": 10878, + "properties": { + "rotation": "7" + } + }, + { + "id": 10879, + "properties": { + "rotation": "8" + } + }, + { + "id": 10880, + "properties": { + "rotation": "9" + } + }, + { + "id": 10881, + "properties": { + "rotation": "10" + } + }, + { + "id": 10882, + "properties": { + "rotation": "11" + } + }, + { + "id": 10883, + "properties": { + "rotation": "12" + } + }, + { + "id": 10884, + "properties": { + "rotation": "13" + } + }, + { + "id": 10885, + "properties": { + "rotation": "14" + } + }, + { + "id": 10886, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1800, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1801, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1802, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1803, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1804, "properties": { "facing": "south", - "waterlogged": "true" + "occupied": "true", + "part": "head" } }, { - "id": 12928, + "id": 1805, "properties": { "facing": "south", - "waterlogged": "false" + "occupied": "true", + "part": "foot" } }, { - "id": 12929, + "id": 1806, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1807, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1808, "properties": { "facing": "west", - "waterlogged": "true" + "occupied": "true", + "part": "head" } }, { - "id": 12930, + "id": 1809, "properties": { "facing": "west", - "waterlogged": "false" + "occupied": "true", + "part": "foot" } }, { - "id": 12931, + "id": 1810, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1811, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1812, "properties": { "facing": "east", - "waterlogged": "true" + "occupied": "true", + "part": "head" } }, { - "id": 12932, + "id": 1813, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1814, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1815, "properties": { "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20853, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20854, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20855, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20856, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20857, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20858, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20859, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20860, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20861, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20862, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20863, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20864, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20865, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20866, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20867, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20868, + "properties": { + "candles": "4", + "lit": "false", "waterlogged": "false" } } ] }, - "minecraft:ice": { + "minecraft:gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, "states": [ + { + "id": 21013, + "properties": { + "lit": "true" + } + }, { "default": true, - "id": 5780 + "id": 21014, + "properties": { + "lit": "false" + } } ] }, - "minecraft:infested_chiseled_stone_bricks": { + "minecraft:gray_carpet": { "states": [ { "default": true, - "id": 6549 + "id": 10735 } ] }, - "minecraft:infested_cobblestone": { + "minecraft:gray_concrete": { "states": [ { "default": true, - "id": 6545 + "id": 12735 } ] }, - "minecraft:infested_cracked_stone_bricks": { + "minecraft:gray_concrete_powder": { "states": [ { "default": true, - "id": 6548 + "id": 12751 } ] }, - "minecraft:infested_deepslate": { + "minecraft:gray_glazed_terracotta": { "properties": { - "axis": [ - "x", - "y", - "z" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { - "id": 24240, + "default": true, + "id": 12692, "properties": { - "axis": "x" + "facing": "north" } }, { - "default": true, - "id": 24241, + "id": 12693, "properties": { - "axis": "y" + "facing": "south" } }, { - "id": 24242, + "id": 12694, "properties": { - "axis": "z" + "facing": "west" } - } - ] - }, - "minecraft:infested_mossy_stone_bricks": { - "states": [ + }, { - "default": true, - "id": 6547 + "id": 12695, + "properties": { + "facing": "east" + } } ] }, - "minecraft:infested_stone": { + "minecraft:gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, "states": [ + { + "id": 12610, + "properties": { + "facing": "north" + } + }, + { + "id": 12611, + "properties": { + "facing": "east" + } + }, + { + "id": 12612, + "properties": { + "facing": "south" + } + }, + { + "id": 12613, + "properties": { + "facing": "west" + } + }, { "default": true, - "id": 6544 + "id": 12614, + "properties": { + "facing": "up" + } + }, + { + "id": 12615, + "properties": { + "facing": "down" + } } ] }, - "minecraft:infested_stone_bricks": { + "minecraft:gray_stained_glass": { "states": [ { "default": true, - "id": 6546 + "id": 5952 } ] }, - "minecraft:iron_bars": { + "minecraft:gray_stained_glass_pane": { "properties": { "east": [ "true", @@ -103105,7 +104395,7 @@ }, "states": [ { - "id": 6742, + "id": 9596, "properties": { "east": "true", "north": "true", @@ -103115,7 +104405,7 @@ } }, { - "id": 6743, + "id": 9597, "properties": { "east": "true", "north": "true", @@ -103125,7 +104415,7 @@ } }, { - "id": 6744, + "id": 9598, "properties": { "east": "true", "north": "true", @@ -103135,7 +104425,7 @@ } }, { - "id": 6745, + "id": 9599, "properties": { "east": "true", "north": "true", @@ -103145,7 +104435,7 @@ } }, { - "id": 6746, + "id": 9600, "properties": { "east": "true", "north": "true", @@ -103155,7 +104445,7 @@ } }, { - "id": 6747, + "id": 9601, "properties": { "east": "true", "north": "true", @@ -103165,7 +104455,7 @@ } }, { - "id": 6748, + "id": 9602, "properties": { "east": "true", "north": "true", @@ -103175,7 +104465,7 @@ } }, { - "id": 6749, + "id": 9603, "properties": { "east": "true", "north": "true", @@ -103185,7 +104475,7 @@ } }, { - "id": 6750, + "id": 9604, "properties": { "east": "true", "north": "false", @@ -103195,7 +104485,7 @@ } }, { - "id": 6751, + "id": 9605, "properties": { "east": "true", "north": "false", @@ -103205,7 +104495,7 @@ } }, { - "id": 6752, + "id": 9606, "properties": { "east": "true", "north": "false", @@ -103215,7 +104505,7 @@ } }, { - "id": 6753, + "id": 9607, "properties": { "east": "true", "north": "false", @@ -103225,7 +104515,7 @@ } }, { - "id": 6754, + "id": 9608, "properties": { "east": "true", "north": "false", @@ -103235,7 +104525,7 @@ } }, { - "id": 6755, + "id": 9609, "properties": { "east": "true", "north": "false", @@ -103245,7 +104535,7 @@ } }, { - "id": 6756, + "id": 9610, "properties": { "east": "true", "north": "false", @@ -103255,7 +104545,7 @@ } }, { - "id": 6757, + "id": 9611, "properties": { "east": "true", "north": "false", @@ -103265,7 +104555,7 @@ } }, { - "id": 6758, + "id": 9612, "properties": { "east": "false", "north": "true", @@ -103275,7 +104565,7 @@ } }, { - "id": 6759, + "id": 9613, "properties": { "east": "false", "north": "true", @@ -103285,7 +104575,7 @@ } }, { - "id": 6760, + "id": 9614, "properties": { "east": "false", "north": "true", @@ -103295,7 +104585,7 @@ } }, { - "id": 6761, + "id": 9615, "properties": { "east": "false", "north": "true", @@ -103305,7 +104595,7 @@ } }, { - "id": 6762, + "id": 9616, "properties": { "east": "false", "north": "true", @@ -103315,7 +104605,7 @@ } }, { - "id": 6763, + "id": 9617, "properties": { "east": "false", "north": "true", @@ -103325,7 +104615,7 @@ } }, { - "id": 6764, + "id": 9618, "properties": { "east": "false", "north": "true", @@ -103335,7 +104625,7 @@ } }, { - "id": 6765, + "id": 9619, "properties": { "east": "false", "north": "true", @@ -103345,7 +104635,7 @@ } }, { - "id": 6766, + "id": 9620, "properties": { "east": "false", "north": "false", @@ -103355,7 +104645,7 @@ } }, { - "id": 6767, + "id": 9621, "properties": { "east": "false", "north": "false", @@ -103365,7 +104655,7 @@ } }, { - "id": 6768, + "id": 9622, "properties": { "east": "false", "north": "false", @@ -103375,7 +104665,7 @@ } }, { - "id": 6769, + "id": 9623, "properties": { "east": "false", "north": "false", @@ -103385,7 +104675,7 @@ } }, { - "id": 6770, + "id": 9624, "properties": { "east": "false", "north": "false", @@ -103395,7 +104685,7 @@ } }, { - "id": 6771, + "id": 9625, "properties": { "east": "false", "north": "false", @@ -103405,7 +104695,7 @@ } }, { - "id": 6772, + "id": 9626, "properties": { "east": "false", "north": "false", @@ -103416,7 +104706,7 @@ }, { "default": true, - "id": 6773, + "id": 9627, "properties": { "east": "false", "north": "false", @@ -103427,1363 +104717,1321 @@ } ] }, - "minecraft:iron_block": { + "minecraft:gray_terracotta": { "states": [ { "default": true, - "id": 2092 + "id": 9363 } ] }, - "minecraft:iron_door": { + "minecraft:gray_wall_banner": { "properties": { "facing": [ "north", "south", "west", "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" ] }, "states": [ { - "id": 5652, + "default": true, + "id": 11043, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "north" } }, { - "id": 5653, + "id": 11044, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "facing": "south" } }, { - "id": 5654, + "id": 11045, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "facing": "west" } }, { - "id": 5655, + "id": 11046, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "facing": "east" } - }, + } + ] + }, + "minecraft:gray_wool": { + "states": [ { - "id": 5656, + "default": true, + "id": 2054 + } + ] + }, + "minecraft:green_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10967, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "rotation": "0" } }, { - "id": 5657, + "id": 10968, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "rotation": "1" } }, { - "id": 5658, + "id": 10969, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "rotation": "2" } }, { - "id": 5659, + "id": 10970, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "rotation": "3" } }, { - "id": 5660, + "id": 10971, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "rotation": "4" } }, { - "id": 5661, + "id": 10972, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "rotation": "5" } }, { - "id": 5662, + "id": 10973, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "rotation": "6" } }, { - "default": true, - "id": 5663, + "id": 10974, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "rotation": "7" } }, { - "id": 5664, + "id": 10975, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "rotation": "8" } }, { - "id": 5665, + "id": 10976, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "rotation": "9" } }, { - "id": 5666, + "id": 10977, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "rotation": "10" } }, { - "id": 5667, + "id": 10978, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "rotation": "11" } }, { - "id": 5668, + "id": 10979, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "rotation": "12" } }, { - "id": 5669, + "id": 10980, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "rotation": "13" } }, { - "id": 5670, + "id": 10981, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "rotation": "14" } }, { - "id": 5671, + "id": 10982, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1896, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" } }, { - "id": 5672, + "id": 1897, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "facing": "north", + "occupied": "true", + "part": "foot" } }, { - "id": 5673, + "id": 1898, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "facing": "north", + "occupied": "false", + "part": "head" } }, { - "id": 5674, + "default": true, + "id": 1899, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "facing": "north", + "occupied": "false", + "part": "foot" } }, { - "id": 5675, + "id": 1900, "properties": { "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "occupied": "true", + "part": "head" } }, { - "id": 5676, + "id": 1901, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "occupied": "true", + "part": "foot" } }, { - "id": 5677, + "id": 1902, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "occupied": "false", + "part": "head" } }, { - "id": 5678, + "id": 1903, "properties": { "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "occupied": "false", + "part": "foot" } }, { - "id": 5679, + "id": 1904, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "facing": "west", + "occupied": "true", + "part": "head" } }, { - "id": 5680, + "id": 1905, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "facing": "west", + "occupied": "true", + "part": "foot" } }, { - "id": 5681, + "id": 1906, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "facing": "west", + "occupied": "false", + "part": "head" } }, { - "id": 5682, + "id": 1907, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "facing": "west", + "occupied": "false", + "part": "foot" } }, { - "id": 5683, + "id": 1908, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "east", + "occupied": "true", + "part": "head" } }, { - "id": 5684, + "id": 1909, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "east", + "occupied": "true", + "part": "foot" } }, { - "id": 5685, + "id": 1910, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "facing": "east", + "occupied": "false", + "part": "head" } }, { - "id": 5686, + "id": 1911, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "facing": "east", + "occupied": "false", + "part": "foot" } - }, + } + ] + }, + "minecraft:green_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5687, + "id": 20949, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "candles": "1", + "lit": "true", + "waterlogged": "true" } }, { - "id": 5688, + "id": 20950, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "candles": "1", + "lit": "true", + "waterlogged": "false" } }, { - "id": 5689, + "id": 20951, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "candles": "1", + "lit": "false", + "waterlogged": "true" } }, { - "id": 5690, + "default": true, + "id": 20952, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "candles": "1", + "lit": "false", + "waterlogged": "false" } }, { - "id": 5691, + "id": 20953, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "candles": "2", + "lit": "true", + "waterlogged": "true" } }, { - "id": 5692, + "id": 20954, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "candles": "2", + "lit": "true", + "waterlogged": "false" } }, { - "id": 5693, + "id": 20955, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "candles": "2", + "lit": "false", + "waterlogged": "true" } }, { - "id": 5694, + "id": 20956, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "candles": "2", + "lit": "false", + "waterlogged": "false" } }, { - "id": 5695, + "id": 20957, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "candles": "3", + "lit": "true", + "waterlogged": "true" } }, { - "id": 5696, + "id": 20958, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "candles": "3", + "lit": "true", + "waterlogged": "false" } }, { - "id": 5697, + "id": 20959, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "candles": "3", + "lit": "false", + "waterlogged": "true" } }, { - "id": 5698, + "id": 20960, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "candles": "3", + "lit": "false", + "waterlogged": "false" } }, { - "id": 5699, + "id": 20961, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "candles": "4", + "lit": "true", + "waterlogged": "true" } }, { - "id": 5700, + "id": 20962, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "candles": "4", + "lit": "true", + "waterlogged": "false" } }, { - "id": 5701, + "id": 20963, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "candles": "4", + "lit": "false", + "waterlogged": "true" } }, { - "id": 5702, + "id": 20964, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "candles": "4", + "lit": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:green_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5703, + "id": 21025, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "lit": "true" } }, { - "id": 5704, + "default": true, + "id": 21026, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "lit": "false" } - }, + } + ] + }, + "minecraft:green_carpet": { + "states": [ { - "id": 5705, - "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" - } - }, + "default": true, + "id": 10741 + } + ] + }, + "minecraft:green_concrete": { + "states": [ { - "id": 5706, + "default": true, + "id": 12741 + } + ] + }, + "minecraft:green_concrete_powder": { + "states": [ + { + "default": true, + "id": 12757 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12716, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "facing": "north" } }, { - "id": 5707, + "id": 12717, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "south" } }, { - "id": 5708, + "id": 12718, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "facing": "west" } }, { - "id": 5709, + "id": 12719, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "facing": "east" } - }, + } + ] + }, + "minecraft:green_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 5710, + "id": 12646, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "facing": "north" } }, { - "id": 5711, + "id": 12647, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "facing": "east" } }, { - "id": 5712, + "id": 12648, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "facing": "south" } }, { - "id": 5713, + "id": 12649, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "facing": "west" } }, { - "id": 5714, + "default": true, + "id": 12650, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "facing": "up" } }, { - "id": 5715, + "id": 12651, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "facing": "down" } } ] }, - "minecraft:iron_ore": { + "minecraft:green_stained_glass": { "states": [ { "default": true, - "id": 125 + "id": 5958 } ] }, - "minecraft:iron_trapdoor": { + "minecraft:green_stained_glass_pane": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" + "east": [ + "true", + "false" ], - "open": [ + "north": [ "true", "false" ], - "powered": [ + "south": [ "true", "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { - "id": 10399, + "id": 9788, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10400, + "id": 9789, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10401, + "id": 9790, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10402, + "id": 9791, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10403, + "id": 9792, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10404, + "id": 9793, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10405, + "id": 9794, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10406, + "id": 9795, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10407, + "id": 9796, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10408, + "id": 9797, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10409, + "id": 9798, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10410, + "id": 9799, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10411, + "id": 9800, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10412, + "id": 9801, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10413, + "id": 9802, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "default": true, - "id": 10414, + "id": 9803, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10415, + "id": 9804, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10416, + "id": 9805, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10417, + "id": 9806, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10418, + "id": 9807, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10419, + "id": 9808, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10420, + "id": 9809, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10421, + "id": 9810, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10422, + "id": 9811, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 10423, + "id": 9812, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 10424, + "id": 9813, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 10425, + "id": 9814, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 10426, + "id": 9815, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 10427, + "id": 9816, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 10428, + "id": 9817, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 10429, + "id": 9818, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 10430, + "default": true, + "id": 9819, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } - }, + } + ] + }, + "minecraft:green_terracotta": { + "states": [ { - "id": 10431, + "default": true, + "id": 9369 + } + ] + }, + "minecraft:green_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11067, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "facing": "north" } }, { - "id": 10432, + "id": 11068, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "facing": "south" } }, { - "id": 10433, + "id": 11069, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "facing": "west" } }, { - "id": 10434, + "id": 11070, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "states": [ + { + "default": true, + "id": 2060 + } + ] + }, + "minecraft:grindstone": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 18438, + "properties": { + "face": "floor", + "facing": "north" } }, { - "id": 10435, + "id": 18439, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "face": "floor", + "facing": "south" } }, { - "id": 10436, + "id": 18440, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "face": "floor", + "facing": "west" } }, { - "id": 10437, + "id": 18441, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "face": "floor", + "facing": "east" } }, { - "id": 10438, + "default": true, + "id": 18442, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "face": "wall", + "facing": "north" } }, { - "id": 10439, + "id": 18443, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "face": "wall", + "facing": "south" } }, { - "id": 10440, + "id": 18444, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "face": "wall", + "facing": "west" } }, { - "id": 10441, + "id": 18445, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "face": "wall", + "facing": "east" } }, { - "id": 10442, + "id": 18446, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "face": "ceiling", + "facing": "north" } }, { - "id": 10443, + "id": 18447, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "face": "ceiling", + "facing": "south" } }, { - "id": 10444, + "id": 18448, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "face": "ceiling", + "facing": "west" } }, { - "id": 10445, + "id": 18449, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24900, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", "waterlogged": "true" } }, { - "id": 10446, + "default": true, + "id": 24901, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", "waterlogged": "false" } + } + ] + }, + "minecraft:hay_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10725, + "properties": { + "axis": "x" + } }, { - "id": 10447, + "default": true, + "id": 10726, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "axis": "y" } }, { - "id": 10448, + "id": 10727, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "axis": "z" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9159, + "properties": { + "power": "0" } }, { - "id": 10449, + "id": 9160, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "power": "1" } }, { - "id": 10450, + "id": 9161, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "power": "2" } }, { - "id": 10451, + "id": 9162, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "power": "3" } }, { - "id": 10452, + "id": 9163, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "power": "4" } }, { - "id": 10453, + "id": 9164, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "power": "5" } }, { - "id": 10454, + "id": 9165, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "power": "6" } }, { - "id": 10455, + "id": 9166, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "power": "7" } }, { - "id": 10456, + "id": 9167, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "power": "8" } }, { - "id": 10457, + "id": 9168, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "power": "9" } }, { - "id": 10458, + "id": 9169, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "power": "10" } }, { - "id": 10459, + "id": 9170, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "power": "11" } }, { - "id": 10460, + "id": 9171, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "power": "12" } }, { - "id": 10461, + "id": 9172, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "power": "13" } }, { - "id": 10462, + "id": 9173, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "power": "14" + } + }, + { + "id": 9174, + "properties": { + "power": "15" } } ] }, - "minecraft:jack_o_lantern": { + "minecraft:honey_block": { + "states": [ + { + "default": true, + "id": 19445 + } + ] + }, + "minecraft:honeycomb_block": { + "states": [ + { + "default": true, + "id": 19446 + } + ] + }, + "minecraft:hopper": { "properties": { + "enabled": [ + "true", + "false" + ], "facing": [ + "down", "north", "south", "west", @@ -104793,362 +106041,646 @@ "states": [ { "default": true, - "id": 5871, + "id": 9225, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 9226, "properties": { + "enabled": "true", "facing": "north" } }, { - "id": 5872, + "id": 9227, "properties": { + "enabled": "true", "facing": "south" } }, { - "id": 5873, + "id": 9228, "properties": { + "enabled": "true", "facing": "west" } }, { - "id": 5874, + "id": 9229, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 9230, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 9231, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 9232, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 9233, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 9234, "properties": { + "enabled": "false", "facing": "east" } } ] }, - "minecraft:jigsaw": { + "minecraft:horn_coral": { "properties": { - "orientation": [ - "down_east", - "down_north", - "down_south", - "down_west", - "up_east", - "up_north", - "up_south", - "up_west", - "west_up", - "east_up", - "north_up", - "south_up" + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "id": 19360, + "default": true, + "id": 12831, "properties": { - "orientation": "down_east" + "waterlogged": "true" } }, { - "id": 19361, + "id": 12832, "properties": { - "orientation": "down_north" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:horn_coral_block": { + "states": [ { - "id": 19362, + "default": true, + "id": 12812 + } + ] + }, + "minecraft:horn_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12851, "properties": { - "orientation": "down_south" + "waterlogged": "true" } }, { - "id": 19363, + "id": 12852, "properties": { - "orientation": "down_west" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 19364, + "default": true, + "id": 12925, "properties": { - "orientation": "up_east" + "facing": "north", + "waterlogged": "true" } }, { - "id": 19365, + "id": 12926, "properties": { - "orientation": "up_north" + "facing": "north", + "waterlogged": "false" } }, { - "id": 19366, + "id": 12927, "properties": { - "orientation": "up_south" + "facing": "south", + "waterlogged": "true" } }, { - "id": 19367, + "id": 12928, "properties": { - "orientation": "up_west" + "facing": "south", + "waterlogged": "false" } }, { - "id": 19368, + "id": 12929, "properties": { - "orientation": "west_up" + "facing": "west", + "waterlogged": "true" } }, { - "id": 19369, + "id": 12930, "properties": { - "orientation": "east_up" + "facing": "west", + "waterlogged": "false" } }, { - "default": true, - "id": 19370, + "id": 12931, "properties": { - "orientation": "north_up" + "facing": "east", + "waterlogged": "true" } }, { - "id": 19371, + "id": 12932, "properties": { - "orientation": "south_up" + "facing": "east", + "waterlogged": "false" } } ] }, - "minecraft:jukebox": { + "minecraft:ice": { + "states": [ + { + "default": true, + "id": 5780 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "states": [ + { + "default": true, + "id": 6548 + } + ] + }, + "minecraft:infested_cobblestone": { + "states": [ + { + "default": true, + "id": 6544 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "states": [ + { + "default": true, + "id": 6547 + } + ] + }, + "minecraft:infested_deepslate": { "properties": { - "has_record": [ - "true", - "false" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { - "id": 5815, + "id": 26554, "properties": { - "has_record": "true" + "axis": "x" } }, { "default": true, - "id": 5816, + "id": 26555, "properties": { - "has_record": "false" + "axis": "y" + } + }, + { + "id": 26556, + "properties": { + "axis": "z" } } ] }, - "minecraft:jungle_button": { + "minecraft:infested_mossy_stone_bricks": { + "states": [ + { + "default": true, + "id": 6546 + } + ] + }, + "minecraft:infested_stone": { + "states": [ + { + "default": true, + "id": 6543 + } + ] + }, + "minecraft:infested_stone_bricks": { + "states": [ + { + "default": true, + "id": 6545 + } + ] + }, + "minecraft:iron_bars": { "properties": { - "face": [ - "floor", - "wall", - "ceiling" + "east": [ + "true", + "false" ], - "facing": [ - "north", - "south", - "west", - "east" + "north": [ + "true", + "false" ], - "powered": [ + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ "true", "false" ] }, "states": [ { - "id": 8683, + "id": 6741, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 8684, + "id": 6742, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 8685, + "id": 6743, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 8686, + "id": 6744, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 8687, + "id": 6745, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 8688, + "id": 6746, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 8689, + "id": 6747, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 8690, + "id": 6748, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 8691, + "id": 6749, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "default": true, - "id": 8692, + "id": 6750, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 8693, + "id": 6751, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 8694, + "id": 6752, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 8695, + "id": 6753, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 8696, + "id": 6754, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 8697, + "id": 6755, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 8698, + "id": 6756, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 8699, + "id": 6757, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 8700, + "id": 6758, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 8701, + "id": 6759, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 8702, + "id": 6760, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 8703, + "id": 6761, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 8704, + "id": 6762, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 8705, + "id": 6763, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 8706, + "id": 6764, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6765, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6766, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6767, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6768, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6769, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6770, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6771, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6772, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } } ] }, - "minecraft:jungle_door": { + "minecraft:iron_block": { + "states": [ + { + "default": true, + "id": 2092 + } + ] + }, + "minecraft:iron_door": { "properties": { "facing": [ "north", @@ -105175,7 +106707,7 @@ }, "states": [ { - "id": 11950, + "id": 5652, "properties": { "facing": "north", "half": "upper", @@ -105185,7 +106717,7 @@ } }, { - "id": 11951, + "id": 5653, "properties": { "facing": "north", "half": "upper", @@ -105195,7 +106727,7 @@ } }, { - "id": 11952, + "id": 5654, "properties": { "facing": "north", "half": "upper", @@ -105205,7 +106737,7 @@ } }, { - "id": 11953, + "id": 5655, "properties": { "facing": "north", "half": "upper", @@ -105215,7 +106747,7 @@ } }, { - "id": 11954, + "id": 5656, "properties": { "facing": "north", "half": "upper", @@ -105225,7 +106757,7 @@ } }, { - "id": 11955, + "id": 5657, "properties": { "facing": "north", "half": "upper", @@ -105235,7 +106767,7 @@ } }, { - "id": 11956, + "id": 5658, "properties": { "facing": "north", "half": "upper", @@ -105245,7 +106777,7 @@ } }, { - "id": 11957, + "id": 5659, "properties": { "facing": "north", "half": "upper", @@ -105255,7 +106787,7 @@ } }, { - "id": 11958, + "id": 5660, "properties": { "facing": "north", "half": "lower", @@ -105265,7 +106797,7 @@ } }, { - "id": 11959, + "id": 5661, "properties": { "facing": "north", "half": "lower", @@ -105275,7 +106807,7 @@ } }, { - "id": 11960, + "id": 5662, "properties": { "facing": "north", "half": "lower", @@ -105286,7 +106818,7 @@ }, { "default": true, - "id": 11961, + "id": 5663, "properties": { "facing": "north", "half": "lower", @@ -105296,7 +106828,7 @@ } }, { - "id": 11962, + "id": 5664, "properties": { "facing": "north", "half": "lower", @@ -105306,7 +106838,7 @@ } }, { - "id": 11963, + "id": 5665, "properties": { "facing": "north", "half": "lower", @@ -105316,7 +106848,7 @@ } }, { - "id": 11964, + "id": 5666, "properties": { "facing": "north", "half": "lower", @@ -105326,7 +106858,7 @@ } }, { - "id": 11965, + "id": 5667, "properties": { "facing": "north", "half": "lower", @@ -105336,7 +106868,7 @@ } }, { - "id": 11966, + "id": 5668, "properties": { "facing": "south", "half": "upper", @@ -105346,7 +106878,7 @@ } }, { - "id": 11967, + "id": 5669, "properties": { "facing": "south", "half": "upper", @@ -105356,7 +106888,7 @@ } }, { - "id": 11968, + "id": 5670, "properties": { "facing": "south", "half": "upper", @@ -105366,7 +106898,7 @@ } }, { - "id": 11969, + "id": 5671, "properties": { "facing": "south", "half": "upper", @@ -105376,7 +106908,7 @@ } }, { - "id": 11970, + "id": 5672, "properties": { "facing": "south", "half": "upper", @@ -105386,7 +106918,7 @@ } }, { - "id": 11971, + "id": 5673, "properties": { "facing": "south", "half": "upper", @@ -105396,7 +106928,7 @@ } }, { - "id": 11972, + "id": 5674, "properties": { "facing": "south", "half": "upper", @@ -105406,7 +106938,7 @@ } }, { - "id": 11973, + "id": 5675, "properties": { "facing": "south", "half": "upper", @@ -105416,7 +106948,7 @@ } }, { - "id": 11974, + "id": 5676, "properties": { "facing": "south", "half": "lower", @@ -105426,7 +106958,7 @@ } }, { - "id": 11975, + "id": 5677, "properties": { "facing": "south", "half": "lower", @@ -105436,7 +106968,7 @@ } }, { - "id": 11976, + "id": 5678, "properties": { "facing": "south", "half": "lower", @@ -105446,7 +106978,7 @@ } }, { - "id": 11977, + "id": 5679, "properties": { "facing": "south", "half": "lower", @@ -105456,7 +106988,7 @@ } }, { - "id": 11978, + "id": 5680, "properties": { "facing": "south", "half": "lower", @@ -105466,7 +106998,7 @@ } }, { - "id": 11979, + "id": 5681, "properties": { "facing": "south", "half": "lower", @@ -105476,7 +107008,7 @@ } }, { - "id": 11980, + "id": 5682, "properties": { "facing": "south", "half": "lower", @@ -105486,7 +107018,7 @@ } }, { - "id": 11981, + "id": 5683, "properties": { "facing": "south", "half": "lower", @@ -105496,7 +107028,7 @@ } }, { - "id": 11982, + "id": 5684, "properties": { "facing": "west", "half": "upper", @@ -105506,7 +107038,7 @@ } }, { - "id": 11983, + "id": 5685, "properties": { "facing": "west", "half": "upper", @@ -105516,7 +107048,7 @@ } }, { - "id": 11984, + "id": 5686, "properties": { "facing": "west", "half": "upper", @@ -105526,7 +107058,7 @@ } }, { - "id": 11985, + "id": 5687, "properties": { "facing": "west", "half": "upper", @@ -105536,7 +107068,7 @@ } }, { - "id": 11986, + "id": 5688, "properties": { "facing": "west", "half": "upper", @@ -105546,7 +107078,7 @@ } }, { - "id": 11987, + "id": 5689, "properties": { "facing": "west", "half": "upper", @@ -105556,7 +107088,7 @@ } }, { - "id": 11988, + "id": 5690, "properties": { "facing": "west", "half": "upper", @@ -105566,7 +107098,7 @@ } }, { - "id": 11989, + "id": 5691, "properties": { "facing": "west", "half": "upper", @@ -105576,7 +107108,7 @@ } }, { - "id": 11990, + "id": 5692, "properties": { "facing": "west", "half": "lower", @@ -105586,7 +107118,7 @@ } }, { - "id": 11991, + "id": 5693, "properties": { "facing": "west", "half": "lower", @@ -105596,7 +107128,7 @@ } }, { - "id": 11992, + "id": 5694, "properties": { "facing": "west", "half": "lower", @@ -105606,7 +107138,7 @@ } }, { - "id": 11993, + "id": 5695, "properties": { "facing": "west", "half": "lower", @@ -105616,7 +107148,7 @@ } }, { - "id": 11994, + "id": 5696, "properties": { "facing": "west", "half": "lower", @@ -105626,7 +107158,7 @@ } }, { - "id": 11995, + "id": 5697, "properties": { "facing": "west", "half": "lower", @@ -105636,7 +107168,7 @@ } }, { - "id": 11996, + "id": 5698, "properties": { "facing": "west", "half": "lower", @@ -105646,7 +107178,7 @@ } }, { - "id": 11997, + "id": 5699, "properties": { "facing": "west", "half": "lower", @@ -105656,7 +107188,7 @@ } }, { - "id": 11998, + "id": 5700, "properties": { "facing": "east", "half": "upper", @@ -105666,7 +107198,7 @@ } }, { - "id": 11999, + "id": 5701, "properties": { "facing": "east", "half": "upper", @@ -105676,7 +107208,7 @@ } }, { - "id": 12000, + "id": 5702, "properties": { "facing": "east", "half": "upper", @@ -105686,7 +107218,7 @@ } }, { - "id": 12001, + "id": 5703, "properties": { "facing": "east", "half": "upper", @@ -105696,7 +107228,7 @@ } }, { - "id": 12002, + "id": 5704, "properties": { "facing": "east", "half": "upper", @@ -105706,7 +107238,7 @@ } }, { - "id": 12003, + "id": 5705, "properties": { "facing": "east", "half": "upper", @@ -105716,7 +107248,7 @@ } }, { - "id": 12004, + "id": 5706, "properties": { "facing": "east", "half": "upper", @@ -105726,7 +107258,7 @@ } }, { - "id": 12005, + "id": 5707, "properties": { "facing": "east", "half": "upper", @@ -105736,7 +107268,7 @@ } }, { - "id": 12006, + "id": 5708, "properties": { "facing": "east", "half": "lower", @@ -105746,7 +107278,7 @@ } }, { - "id": 12007, + "id": 5709, "properties": { "facing": "east", "half": "lower", @@ -105756,7 +107288,7 @@ } }, { - "id": 12008, + "id": 5710, "properties": { "facing": "east", "half": "lower", @@ -105766,7 +107298,7 @@ } }, { - "id": 12009, + "id": 5711, "properties": { "facing": "east", "half": "lower", @@ -105776,7 +107308,7 @@ } }, { - "id": 12010, + "id": 5712, "properties": { "facing": "east", "half": "lower", @@ -105786,7 +107318,7 @@ } }, { - "id": 12011, + "id": 5713, "properties": { "facing": "east", "half": "lower", @@ -105796,7 +107328,7 @@ } }, { - "id": 12012, + "id": 5714, "properties": { "facing": "east", "half": "lower", @@ -105806,7 +107338,7 @@ } }, { - "id": 12013, + "id": 5715, "properties": { "facing": "east", "half": "lower", @@ -105817,1855 +107349,2067 @@ } ] }, - "minecraft:jungle_fence": { + "minecraft:iron_ore": { + "states": [ + { + "default": true, + "id": 125 + } + ] + }, + "minecraft:iron_trapdoor": { "properties": { - "east": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ + "open": [ "true", "false" ], - "waterlogged": [ + "powered": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 11630, + "id": 10399, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11631, + "id": 10400, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } }, { - "id": 11632, + "id": 10401, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11633, + "id": 10402, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11634, + "id": 10403, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11635, + "id": 10404, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11636, + "id": 10405, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11637, + "id": 10406, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11638, + "id": 10407, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11639, + "id": 10408, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11640, + "id": 10409, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11641, + "id": 10410, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11642, + "id": 10411, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11643, + "id": 10412, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11644, + "id": 10413, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11645, + "default": true, + "id": 10414, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11646, + "id": 10415, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11647, + "id": 10416, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11648, + "id": 10417, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11649, + "id": 10418, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11650, + "id": 10419, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11651, + "id": 10420, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11652, + "id": 10421, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11653, + "id": 10422, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11654, + "id": 10423, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11655, + "id": 10424, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11656, + "id": 10425, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11657, + "id": 10426, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11658, + "id": 10427, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11659, + "id": 10428, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11660, + "id": 10429, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 11661, + "id": 10430, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:jungle_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11374, + "id": 10431, "properties": { - "facing": "north", - "in_wall": "true", + "facing": "west", + "half": "top", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 11375, + "id": 10432, "properties": { - "facing": "north", - "in_wall": "true", + "facing": "west", + "half": "top", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 11376, + "id": 10433, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11377, + "id": 10434, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11378, + "id": 10435, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11379, + "id": 10436, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11380, + "id": 10437, "properties": { - "facing": "north", - "in_wall": "false", + "facing": "west", + "half": "top", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 11381, + "id": 10438, "properties": { - "facing": "north", - "in_wall": "false", + "facing": "west", + "half": "top", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 11382, + "id": 10439, "properties": { - "facing": "south", - "in_wall": "true", + "facing": "west", + "half": "bottom", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 11383, + "id": 10440, "properties": { - "facing": "south", - "in_wall": "true", + "facing": "west", + "half": "bottom", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 11384, + "id": 10441, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11385, + "id": 10442, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11386, + "id": 10443, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11387, + "id": 10444, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11388, + "id": 10445, "properties": { - "facing": "south", - "in_wall": "false", + "facing": "west", + "half": "bottom", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 11389, + "id": 10446, "properties": { - "facing": "south", - "in_wall": "false", + "facing": "west", + "half": "bottom", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 11390, + "id": 10447, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "east", + "half": "top", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 11391, + "id": 10448, "properties": { - "facing": "west", - "in_wall": "true", + "facing": "east", + "half": "top", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 11392, + "id": 10449, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11393, + "id": 10450, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11394, + "id": 10451, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11395, + "id": 10452, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11396, + "id": 10453, "properties": { - "facing": "west", - "in_wall": "false", + "facing": "east", + "half": "top", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 11397, + "id": 10454, "properties": { - "facing": "west", - "in_wall": "false", + "facing": "east", + "half": "top", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } }, { - "id": 11398, + "id": 10455, "properties": { "facing": "east", - "in_wall": "true", + "half": "bottom", "open": "true", - "powered": "true" + "powered": "true", + "waterlogged": "true" } }, { - "id": 11399, + "id": 10456, "properties": { "facing": "east", - "in_wall": "true", + "half": "bottom", "open": "true", - "powered": "false" + "powered": "true", + "waterlogged": "false" } }, { - "id": 11400, + "id": 10457, "properties": { "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 11401, + "id": 10458, "properties": { "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 11402, + "id": 10459, "properties": { "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 11403, + "id": 10460, "properties": { "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 11404, + "id": 10461, "properties": { "facing": "east", - "in_wall": "false", + "half": "bottom", "open": "false", - "powered": "true" + "powered": "false", + "waterlogged": "true" } }, { - "id": 11405, + "id": 10462, "properties": { "facing": "east", - "in_wall": "false", + "half": "bottom", "open": "false", - "powered": "false" + "powered": "false", + "waterlogged": "false" } } ] }, - "minecraft:jungle_hanging_sign": { + "minecraft:jack_o_lantern": { "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ] }, "states": [ { - "id": 5154, + "default": true, + "id": 5870, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" + "facing": "north" } }, { - "id": 5155, + "id": 5871, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" + "facing": "south" } }, { - "id": 5156, + "id": 5872, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" + "facing": "west" } }, { - "id": 5157, + "id": 5873, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" + "facing": "east" } - }, + } + ] + }, + "minecraft:jigsaw": { + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ { - "id": 5158, + "id": 19360, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" + "orientation": "down_east" } }, { - "id": 5159, + "id": 19361, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" + "orientation": "down_north" } }, { - "id": 5160, + "id": 19362, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" + "orientation": "down_south" } }, { - "id": 5161, + "id": 19363, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" + "orientation": "down_west" } }, { - "id": 5162, + "id": 19364, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" + "orientation": "up_east" } }, { - "id": 5163, + "id": 19365, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" + "orientation": "up_north" } }, { - "id": 5164, + "id": 19366, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" + "orientation": "up_south" } }, { - "id": 5165, + "id": 19367, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" + "orientation": "up_west" } }, { - "id": 5166, + "id": 19368, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" + "orientation": "west_up" } }, { - "id": 5167, + "id": 19369, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" + "orientation": "east_up" } }, { - "id": 5168, + "default": true, + "id": 19370, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" + "orientation": "north_up" } }, { - "id": 5169, + "id": 19371, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" + "orientation": "south_up" } - }, + } + ] + }, + "minecraft:jukebox": { + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5170, + "id": 5815, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" + "has_record": "true" } }, { - "id": 5171, + "default": true, + "id": 5816, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" + "has_record": "false" } - }, + } + ] + }, + "minecraft:jungle_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5172, + "id": 8683, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" + "face": "floor", + "facing": "north", + "powered": "true" } }, { - "id": 5173, + "id": 8684, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" + "face": "floor", + "facing": "north", + "powered": "false" } }, { - "id": 5174, + "id": 8685, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" + "face": "floor", + "facing": "south", + "powered": "true" } }, { - "id": 5175, + "id": 8686, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" + "face": "floor", + "facing": "south", + "powered": "false" } }, { - "id": 5176, + "id": 8687, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" + "face": "floor", + "facing": "west", + "powered": "true" } }, { - "id": 5177, + "id": 8688, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" + "face": "floor", + "facing": "west", + "powered": "false" } }, { - "id": 5178, + "id": 8689, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" + "face": "floor", + "facing": "east", + "powered": "true" } }, { - "id": 5179, + "id": 8690, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" + "face": "floor", + "facing": "east", + "powered": "false" } }, { - "id": 5180, + "id": 8691, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" + "face": "wall", + "facing": "north", + "powered": "true" } }, { - "id": 5181, + "default": true, + "id": 8692, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" + "face": "wall", + "facing": "north", + "powered": "false" } }, { - "id": 5182, + "id": 8693, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" + "face": "wall", + "facing": "south", + "powered": "true" } }, { - "id": 5183, + "id": 8694, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" + "face": "wall", + "facing": "south", + "powered": "false" } }, { - "id": 5184, + "id": 8695, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" + "face": "wall", + "facing": "west", + "powered": "true" } }, { - "id": 5185, + "id": 8696, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" + "face": "wall", + "facing": "west", + "powered": "false" } }, { - "id": 5186, + "id": 8697, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" + "face": "wall", + "facing": "east", + "powered": "true" } }, { - "default": true, - "id": 5187, + "id": 8698, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" + "face": "wall", + "facing": "east", + "powered": "false" } }, { - "id": 5188, + "id": 8699, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" + "face": "ceiling", + "facing": "north", + "powered": "true" } }, { - "id": 5189, + "id": 8700, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" + "face": "ceiling", + "facing": "north", + "powered": "false" } }, { - "id": 5190, + "id": 8701, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" + "face": "ceiling", + "facing": "south", + "powered": "true" } }, { - "id": 5191, + "id": 8702, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" + "face": "ceiling", + "facing": "south", + "powered": "false" } }, { - "id": 5192, + "id": 8703, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" + "face": "ceiling", + "facing": "west", + "powered": "true" } }, { - "id": 5193, + "id": 8704, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" + "face": "ceiling", + "facing": "west", + "powered": "false" } }, { - "id": 5194, + "id": 8705, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" + "face": "ceiling", + "facing": "east", + "powered": "true" } }, { - "id": 5195, + "id": 8706, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" + "face": "ceiling", + "facing": "east", + "powered": "false" } - }, + } + ] + }, + "minecraft:jungle_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5196, + "id": 11950, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5197, + "id": 11951, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5198, + "id": 11952, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5199, + "id": 11953, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5200, + "id": 11954, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5201, + "id": 11955, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5202, + "id": 11956, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5203, + "id": 11957, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 5204, + "id": 11958, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5205, + "id": 11959, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5206, + "id": 11960, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5207, + "default": true, + "id": 11961, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5208, + "id": 11962, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5209, + "id": 11963, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5210, + "id": 11964, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5211, + "id": 11965, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 5212, + "id": 11966, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5213, + "id": 11967, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5214, + "id": 11968, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5215, + "id": 11969, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5216, + "id": 11970, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5217, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:jungle_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 321, + "id": 11971, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 322, + "id": 11972, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 323, + "id": 11973, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 324, + "id": 11974, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 325, + "id": 11975, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 326, + "id": 11976, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 327, + "id": 11977, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 328, + "id": 11978, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 329, + "id": 11979, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 330, + "id": 11980, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 331, + "id": 11981, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 332, + "id": 11982, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 333, + "id": 11983, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 334, + "id": 11984, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 335, + "id": 11985, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 336, + "id": 11986, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 337, + "id": 11987, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 338, + "id": 11988, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 339, + "id": 11989, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 340, + "id": 11990, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 341, + "id": 11991, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 342, + "id": 11992, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 343, + "id": 11993, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 344, + "id": 11994, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 345, + "id": 11995, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 346, + "id": 11996, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 347, + "id": 11997, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "default": true, - "id": 348, + "id": 11998, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } - } - ] - }, - "minecraft:jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 139, + "id": 11999, "properties": { - "axis": "x" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "default": true, - "id": 140, + "id": 12000, "properties": { - "axis": "y" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 141, + "id": 12001, "properties": { - "axis": "z" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:jungle_planks": { - "states": [ - { - "default": true, - "id": 18 - } - ] - }, - "minecraft:jungle_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5722, + "id": 12002, "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", "powered": "true" } }, { - "default": true, - "id": 5723, + "id": 12003, "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", "powered": "false" } - } - ] - }, - "minecraft:jungle_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + }, { - "default": true, - "id": 31, + "id": 12004, "properties": { - "stage": "0" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 32, + "id": 12005, "properties": { - "stage": "1" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:jungle_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4462, + "id": 12006, "properties": { - "rotation": "0", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "default": true, - "id": 4463, + "id": 12007, "properties": { - "rotation": "0", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 4464, + "id": 12008, "properties": { - "rotation": "1", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 4465, + "id": 12009, "properties": { - "rotation": "1", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 4466, + "id": 12010, "properties": { - "rotation": "2", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 4467, + "id": 12011, "properties": { - "rotation": "2", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 4468, + "id": 12012, "properties": { - "rotation": "3", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 4469, + "id": 12013, "properties": { - "rotation": "3", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:jungle_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { - "id": 4470, + "id": 11630, "properties": { - "rotation": "4", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 4471, + "id": 11631, "properties": { - "rotation": "4", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 4472, + "id": 11632, "properties": { - "rotation": "5", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 4473, + "id": 11633, "properties": { - "rotation": "5", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 4474, + "id": 11634, "properties": { - "rotation": "6", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 4475, + "id": 11635, "properties": { - "rotation": "6", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 4476, + "id": 11636, "properties": { - "rotation": "7", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 4477, + "id": 11637, "properties": { - "rotation": "7", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 4478, + "id": 11638, "properties": { - "rotation": "8", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 4479, + "id": 11639, "properties": { - "rotation": "8", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 4480, + "id": 11640, "properties": { - "rotation": "9", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 4481, + "id": 11641, "properties": { - "rotation": "9", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 4482, + "id": 11642, "properties": { - "rotation": "10", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 4483, + "id": 11643, "properties": { - "rotation": "10", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 4484, + "id": 11644, "properties": { - "rotation": "11", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 4485, + "id": 11645, "properties": { - "rotation": "11", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 4486, + "id": 11646, "properties": { - "rotation": "12", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 4487, + "id": 11647, "properties": { - "rotation": "12", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 4488, + "id": 11648, "properties": { - "rotation": "13", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 4489, + "id": 11649, "properties": { - "rotation": "13", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 4490, + "id": 11650, "properties": { - "rotation": "14", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 4491, + "id": 11651, "properties": { - "rotation": "14", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 4492, + "id": 11652, "properties": { - "rotation": "15", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 4493, + "id": 11653, "properties": { - "rotation": "15", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } - } - ] - }, - "minecraft:jungle_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11180, + "id": 11654, "properties": { - "type": "top", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 11181, + "id": 11655, "properties": { - "type": "top", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 11182, + "id": 11656, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "default": true, - "id": 11183, + "id": 11657, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 11184, + "id": 11658, "properties": { - "type": "double", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 11185, + "id": 11659, "properties": { - "type": "double", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11660, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11661, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } } ] }, - "minecraft:jungle_stairs": { + "minecraft:jungle_fence_gate": { "properties": { "facing": [ "north", @@ -107673,2915 +109417,2990 @@ "west", "east" ], - "half": [ - "top", - "bottom" + "in_wall": [ + "true", + "false" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 7826, + "id": 11374, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 7827, + "id": 11375, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 7828, + "id": 11376, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 7829, + "id": 11377, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 7830, + "id": 11378, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 7831, + "id": 11379, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 7832, + "id": 11380, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 7833, + "default": true, + "id": 11381, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 7834, + "id": 11382, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 7835, + "id": 11383, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 7836, + "id": 11384, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "default": true, - "id": 7837, + "id": 11385, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 7838, + "id": 11386, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 7839, + "id": 11387, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 7840, + "id": 11388, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 7841, + "id": 11389, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 7842, + "id": 11390, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 7843, + "id": 11391, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 7844, + "id": 11392, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 7845, + "id": 11393, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 7846, + "id": 11394, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 7847, + "id": 11395, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 7848, + "id": 11396, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 7849, + "id": 11397, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 7850, + "id": 11398, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 7851, + "id": 11399, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 7852, + "id": 11400, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 7853, + "id": 11401, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 7854, + "id": 11402, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 7855, + "id": 11403, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 7856, + "id": 11404, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 7857, + "id": 11405, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:jungle_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7858, + "id": 5154, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "0", "waterlogged": "true" } }, { - "id": 7859, + "id": 5155, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "0", "waterlogged": "false" } }, { - "id": 7860, + "id": 5156, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "1", "waterlogged": "true" } }, { - "id": 7861, + "id": 5157, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "1", "waterlogged": "false" } }, { - "id": 7862, + "id": 5158, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "2", "waterlogged": "true" } }, { - "id": 7863, + "id": 5159, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "2", "waterlogged": "false" } }, { - "id": 7864, + "id": 5160, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "3", "waterlogged": "true" } }, { - "id": 7865, + "id": 5161, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "3", "waterlogged": "false" } }, { - "id": 7866, + "id": 5162, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "attached": "true", + "rotation": "4", "waterlogged": "true" } }, { - "id": 7867, + "id": 5163, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "attached": "true", + "rotation": "4", "waterlogged": "false" } }, { - "id": 7868, + "id": 5164, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "attached": "true", + "rotation": "5", "waterlogged": "true" } }, { - "id": 7869, + "id": 5165, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", + "attached": "true", + "rotation": "5", "waterlogged": "false" } }, { - "id": 7870, + "id": 5166, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "attached": "true", + "rotation": "6", "waterlogged": "true" } }, { - "id": 7871, + "id": 5167, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", + "attached": "true", + "rotation": "6", "waterlogged": "false" } }, { - "id": 7872, + "id": 5168, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "attached": "true", + "rotation": "7", "waterlogged": "true" } }, { - "id": 7873, + "id": 5169, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", + "attached": "true", + "rotation": "7", "waterlogged": "false" } }, { - "id": 7874, + "id": 5170, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "attached": "true", + "rotation": "8", "waterlogged": "true" } }, { - "id": 7875, + "id": 5171, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", + "attached": "true", + "rotation": "8", "waterlogged": "false" } }, { - "id": 7876, + "id": 5172, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "attached": "true", + "rotation": "9", "waterlogged": "true" } }, { - "id": 7877, + "id": 5173, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "attached": "true", + "rotation": "9", "waterlogged": "false" } }, { - "id": 7878, + "id": 5174, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "10", "waterlogged": "true" } }, { - "id": 7879, + "id": 5175, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", + "attached": "true", + "rotation": "10", "waterlogged": "false" } }, { - "id": 7880, + "id": 5176, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "11", "waterlogged": "true" } }, { - "id": 7881, + "id": 5177, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", + "attached": "true", + "rotation": "11", "waterlogged": "false" } }, { - "id": 7882, + "id": 5178, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "12", "waterlogged": "true" } }, { - "id": 7883, + "id": 5179, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", + "attached": "true", + "rotation": "12", "waterlogged": "false" } }, { - "id": 7884, + "id": 5180, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "13", "waterlogged": "true" } }, { - "id": 7885, + "id": 5181, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", + "attached": "true", + "rotation": "13", "waterlogged": "false" } }, { - "id": 7886, + "id": 5182, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "attached": "true", + "rotation": "14", "waterlogged": "true" } }, { - "id": 7887, + "id": 5183, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "attached": "true", + "rotation": "14", "waterlogged": "false" } }, { - "id": 7888, + "id": 5184, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "attached": "true", + "rotation": "15", "waterlogged": "true" } }, { - "id": 7889, + "id": 5185, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "attached": "true", + "rotation": "15", "waterlogged": "false" } }, { - "id": 7890, + "id": 5186, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "attached": "false", + "rotation": "0", "waterlogged": "true" } }, { - "id": 7891, + "default": true, + "id": 5187, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "attached": "false", + "rotation": "0", "waterlogged": "false" } }, { - "id": 7892, + "id": 5188, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "attached": "false", + "rotation": "1", "waterlogged": "true" } }, { - "id": 7893, + "id": 5189, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "attached": "false", + "rotation": "1", "waterlogged": "false" } }, { - "id": 7894, + "id": 5190, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "attached": "false", + "rotation": "2", "waterlogged": "true" } }, { - "id": 7895, + "id": 5191, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "attached": "false", + "rotation": "2", "waterlogged": "false" } }, { - "id": 7896, + "id": 5192, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "attached": "false", + "rotation": "3", "waterlogged": "true" } }, { - "id": 7897, + "id": 5193, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "attached": "false", + "rotation": "3", "waterlogged": "false" } }, { - "id": 7898, + "id": 5194, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "attached": "false", + "rotation": "4", "waterlogged": "true" } }, { - "id": 7899, + "id": 5195, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "attached": "false", + "rotation": "4", "waterlogged": "false" } }, { - "id": 7900, + "id": 5196, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "attached": "false", + "rotation": "5", "waterlogged": "true" } }, { - "id": 7901, + "id": 5197, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "attached": "false", + "rotation": "5", "waterlogged": "false" } }, { - "id": 7902, + "id": 5198, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "attached": "false", + "rotation": "6", "waterlogged": "true" } }, { - "id": 7903, + "id": 5199, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "attached": "false", + "rotation": "6", "waterlogged": "false" } }, { - "id": 7904, + "id": 5200, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "attached": "false", + "rotation": "7", "waterlogged": "true" } }, { - "id": 7905, + "id": 5201, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "attached": "false", + "rotation": "7", "waterlogged": "false" } - } - ] - }, - "minecraft:jungle_trapdoor": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 6154, + "id": 5202, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "8", "waterlogged": "true" } }, { - "id": 6155, + "id": 5203, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "8", "waterlogged": "false" } }, { - "id": 6156, + "id": 5204, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "9", "waterlogged": "true" } }, { - "id": 6157, + "id": 5205, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "9", "waterlogged": "false" } }, { - "id": 6158, + "id": 5206, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "10", "waterlogged": "true" } }, { - "id": 6159, + "id": 5207, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "10", "waterlogged": "false" } }, { - "id": 6160, + "id": 5208, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "11", "waterlogged": "true" } }, { - "id": 6161, + "id": 5209, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "11", "waterlogged": "false" } }, { - "id": 6162, + "id": 5210, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "12", "waterlogged": "true" } }, { - "id": 6163, + "id": 5211, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", + "attached": "false", + "rotation": "12", "waterlogged": "false" } }, { - "id": 6164, + "id": 5212, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "13", "waterlogged": "true" } }, { - "id": 6165, + "id": 5213, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", + "attached": "false", + "rotation": "13", "waterlogged": "false" } }, { - "id": 6166, + "id": 5214, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "14", "waterlogged": "true" } }, { - "id": 6167, + "id": 5215, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", + "attached": "false", + "rotation": "14", "waterlogged": "false" } }, { - "id": 6168, + "id": 5216, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "15", "waterlogged": "true" } }, { - "default": true, - "id": 6169, + "id": 5217, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", + "attached": "false", + "rotation": "15", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:jungle_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 6170, + "id": 321, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "distance": "1", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6171, + "id": 322, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", + "distance": "1", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6172, + "id": 323, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "distance": "1", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6173, + "id": 324, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", + "distance": "1", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6174, + "id": 325, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "distance": "2", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6175, + "id": 326, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", + "distance": "2", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6176, + "id": 327, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "distance": "2", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6177, + "id": 328, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", + "distance": "2", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6178, + "id": 329, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "3", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6179, + "id": 330, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "3", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6180, + "id": 331, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "3", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6181, + "id": 332, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "3", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6182, + "id": 333, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "4", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6183, + "id": 334, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", + "distance": "4", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6184, + "id": 335, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "4", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6185, + "id": 336, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "distance": "4", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6186, + "id": 337, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "distance": "5", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6187, + "id": 338, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", + "distance": "5", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6188, + "id": 339, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "distance": "5", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6189, + "id": 340, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", + "distance": "5", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6190, + "id": 341, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "distance": "6", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6191, + "id": 342, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", + "distance": "6", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6192, + "id": 343, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "distance": "6", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6193, + "id": 344, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", + "distance": "6", + "persistent": "false", "waterlogged": "false" } }, { - "id": 6194, + "id": 345, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "7", + "persistent": "true", "waterlogged": "true" } }, { - "id": 6195, + "id": 346, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", + "distance": "7", + "persistent": "true", "waterlogged": "false" } }, { - "id": 6196, + "id": 347, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "7", + "persistent": "false", "waterlogged": "true" } }, { - "id": 6197, + "default": true, + "id": 348, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", + "distance": "7", + "persistent": "false", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { - "id": 6198, + "id": 139, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "axis": "x" } }, { - "id": 6199, + "default": true, + "id": 140, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "axis": "y" } }, { - "id": 6200, + "id": 141, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5722, + "properties": { + "powered": "true" } }, { - "id": 6201, + "default": true, + "id": 5723, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 31, + "properties": { + "stage": "0" } }, { - "id": 6202, + "id": 32, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "stage": "1" + } + } + ] + }, + "minecraft:jungle_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4462, + "properties": { + "rotation": "0", "waterlogged": "true" } }, { - "id": 6203, + "default": true, + "id": 4463, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", + "rotation": "0", "waterlogged": "false" } }, { - "id": 6204, + "id": 4464, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "rotation": "1", "waterlogged": "true" } }, { - "id": 6205, + "id": 4465, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", + "rotation": "1", "waterlogged": "false" } }, { - "id": 6206, + "id": 4466, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "rotation": "2", "waterlogged": "true" } }, { - "id": 6207, + "id": 4467, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", + "rotation": "2", "waterlogged": "false" } }, { - "id": 6208, + "id": 4468, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "rotation": "3", "waterlogged": "true" } }, { - "id": 6209, + "id": 4469, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", + "rotation": "3", "waterlogged": "false" } }, { - "id": 6210, + "id": 4470, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "rotation": "4", "waterlogged": "true" } }, { - "id": 6211, + "id": 4471, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", + "rotation": "4", "waterlogged": "false" } }, { - "id": 6212, + "id": 4472, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "rotation": "5", "waterlogged": "true" } }, { - "id": 6213, + "id": 4473, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", + "rotation": "5", "waterlogged": "false" } }, { - "id": 6214, + "id": 4474, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "rotation": "6", "waterlogged": "true" } }, { - "id": 6215, + "id": 4475, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", + "rotation": "6", "waterlogged": "false" } }, { - "id": 6216, + "id": 4476, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "rotation": "7", "waterlogged": "true" } }, { - "id": 6217, + "id": 4477, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", + "rotation": "7", "waterlogged": "false" } - } - ] - }, - "minecraft:jungle_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5578, + "id": 4478, "properties": { - "facing": "north", + "rotation": "8", "waterlogged": "true" } }, { - "default": true, - "id": 5579, + "id": 4479, "properties": { - "facing": "north", + "rotation": "8", "waterlogged": "false" } }, { - "id": 5580, + "id": 4480, "properties": { - "facing": "south", + "rotation": "9", "waterlogged": "true" } }, { - "id": 5581, + "id": 4481, "properties": { - "facing": "south", + "rotation": "9", "waterlogged": "false" } }, { - "id": 5582, + "id": 4482, "properties": { - "facing": "west", + "rotation": "10", "waterlogged": "true" } }, { - "id": 5583, + "id": 4483, "properties": { - "facing": "west", + "rotation": "10", "waterlogged": "false" } }, { - "id": 5584, + "id": 4484, "properties": { - "facing": "east", + "rotation": "11", "waterlogged": "true" } }, { - "id": 5585, + "id": 4485, "properties": { - "facing": "east", + "rotation": "11", "waterlogged": "false" } - } - ] - }, - "minecraft:jungle_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4802, + "id": 4486, "properties": { - "facing": "north", + "rotation": "12", "waterlogged": "true" } }, { - "default": true, - "id": 4803, + "id": 4487, "properties": { - "facing": "north", + "rotation": "12", "waterlogged": "false" } }, { - "id": 4804, + "id": 4488, "properties": { - "facing": "south", + "rotation": "13", "waterlogged": "true" } }, { - "id": 4805, + "id": 4489, "properties": { - "facing": "south", + "rotation": "13", "waterlogged": "false" } }, { - "id": 4806, + "id": 4490, "properties": { - "facing": "west", + "rotation": "14", "waterlogged": "true" } }, { - "id": 4807, + "id": 4491, "properties": { - "facing": "west", + "rotation": "14", "waterlogged": "false" } }, { - "id": 4808, + "id": 4492, "properties": { - "facing": "east", + "rotation": "15", "waterlogged": "true" } }, { - "id": 4809, + "id": 4493, "properties": { - "facing": "east", + "rotation": "15", "waterlogged": "false" } } ] }, - "minecraft:jungle_wood": { + "minecraft:jungle_slab": { "properties": { - "axis": [ - "x", - "y", - "z" + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "id": 198, + "id": 11180, "properties": { - "axis": "x" + "type": "top", + "waterlogged": "true" } }, { - "default": true, - "id": 199, + "id": 11181, "properties": { - "axis": "y" + "type": "top", + "waterlogged": "false" } }, { - "id": 200, + "id": 11182, "properties": { - "axis": "z" + "type": "bottom", + "waterlogged": "true" } - } - ] - }, - "minecraft:kelp": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - }, - "states": [ + }, { "default": true, - "id": 12760, + "id": 11183, "properties": { - "age": "0" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 12761, + "id": 11184, "properties": { - "age": "1" + "type": "double", + "waterlogged": "true" } }, { - "id": 12762, + "id": 11185, "properties": { - "age": "2" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:jungle_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 12763, + "id": 7826, "properties": { - "age": "3" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12764, + "id": 7827, "properties": { - "age": "4" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12765, + "id": 7828, "properties": { - "age": "5" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12766, + "id": 7829, "properties": { - "age": "6" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12767, + "id": 7830, "properties": { - "age": "7" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12768, + "id": 7831, "properties": { - "age": "8" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12769, + "id": 7832, "properties": { - "age": "9" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12770, + "id": 7833, "properties": { - "age": "10" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12771, + "id": 7834, "properties": { - "age": "11" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12772, + "id": 7835, "properties": { - "age": "12" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12773, + "id": 7836, "properties": { - "age": "13" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12774, + "default": true, + "id": 7837, "properties": { - "age": "14" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12775, + "id": 7838, "properties": { - "age": "15" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 12776, + "id": 7839, "properties": { - "age": "16" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12777, + "id": 7840, "properties": { - "age": "17" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 12778, + "id": 7841, "properties": { - "age": "18" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 12779, + "id": 7842, "properties": { - "age": "19" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 12780, + "id": 7843, "properties": { - "age": "20" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 12781, + "id": 7844, "properties": { - "age": "21" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 12782, + "id": 7845, "properties": { - "age": "22" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12783, + "id": 7846, "properties": { - "age": "23" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12784, + "id": 7847, "properties": { - "age": "24" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12785, - "properties": { - "age": "25" - } - } - ] - }, - "minecraft:kelp_plant": { - "states": [ - { - "default": true, - "id": 12786 - } - ] - }, - "minecraft:ladder": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 4654, + "id": 7848, "properties": { - "facing": "north", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "true" } }, { - "default": true, - "id": 4655, + "id": 7849, "properties": { - "facing": "north", + "facing": "south", + "half": "top", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 4656, + "id": 7850, "properties": { "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 4657, + "id": 7851, "properties": { "facing": "south", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 4658, + "id": 7852, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 4659, + "id": 7853, "properties": { - "facing": "west", + "facing": "south", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 4660, + "id": 7854, "properties": { - "facing": "east", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 4661, + "id": 7855, "properties": { - "facing": "east", + "facing": "south", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } - } - ] - }, - "minecraft:lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18503, + "id": 7856, "properties": { - "hanging": "true", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18504, + "id": 7857, "properties": { - "hanging": "true", + "facing": "south", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18505, + "id": 7858, "properties": { - "hanging": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" } }, { - "default": true, - "id": 18506, + "id": 7859, "properties": { - "hanging": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } - } - ] - }, - "minecraft:lapis_block": { - "states": [ - { - "default": true, - "id": 522 - } - ] - }, - "minecraft:lapis_ore": { - "states": [ - { - "default": true, - "id": 520 - } - ] - }, - "minecraft:large_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21045, + "id": 7860, "properties": { - "facing": "north", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 21046, + "id": 7861, "properties": { - "facing": "north", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 21047, + "id": 7862, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 21048, + "id": 7863, "properties": { - "facing": "east", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 21049, + "id": 7864, "properties": { "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 21050, + "id": 7865, "properties": { "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 21051, + "id": 7866, "properties": { "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, { - "id": 21052, + "id": 7867, "properties": { "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { - "id": 21053, + "id": 7868, "properties": { - "facing": "up", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" } }, { - "default": true, - "id": 21054, + "id": 7869, "properties": { - "facing": "up", - "waterlogged": "false" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 21055, + "id": 7870, "properties": { - "facing": "down", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 21056, + "id": 7871, "properties": { - "facing": "down", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } - } - ] - }, - "minecraft:large_fern": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + }, { - "id": 10757, + "id": 7872, "properties": { - "half": "upper" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "default": true, - "id": 10758, + "id": 7873, "properties": { - "half": "lower" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:lava": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 96, + "id": 7874, "properties": { - "level": "0" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 97, + "id": 7875, "properties": { - "level": "1" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 98, + "id": 7876, "properties": { - "level": "2" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 99, + "id": 7877, "properties": { - "level": "3" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 100, + "id": 7878, "properties": { - "level": "4" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 101, + "id": 7879, "properties": { - "level": "5" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 102, + "id": 7880, "properties": { - "level": "6" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 103, + "id": 7881, "properties": { - "level": "7" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 104, + "id": 7882, "properties": { - "level": "8" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 105, + "id": 7883, "properties": { - "level": "9" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 106, + "id": 7884, "properties": { - "level": "10" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 107, + "id": 7885, "properties": { - "level": "11" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 108, + "id": 7886, "properties": { - "level": "12" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 109, + "id": 7887, "properties": { - "level": "13" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 110, + "id": 7888, "properties": { - "level": "14" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 111, + "id": 7889, "properties": { - "level": "15" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:lava_cauldron": { - "states": [ - { - "default": true, - "id": 7402 - } - ] - }, - "minecraft:lectern": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "has_book": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18450, + "id": 7890, "properties": { - "facing": "north", - "has_book": "true", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18451, + "id": 7891, "properties": { - "facing": "north", - "has_book": "true", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18452, + "id": 7892, "properties": { - "facing": "north", - "has_book": "false", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "default": true, - "id": 18453, + "id": 7893, "properties": { - "facing": "north", - "has_book": "false", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18454, + "id": 7894, "properties": { - "facing": "south", - "has_book": "true", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18455, + "id": 7895, "properties": { - "facing": "south", - "has_book": "true", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18456, + "id": 7896, "properties": { - "facing": "south", - "has_book": "false", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18457, + "id": 7897, "properties": { - "facing": "south", - "has_book": "false", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18458, + "id": 7898, "properties": { - "facing": "west", - "has_book": "true", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18459, + "id": 7899, "properties": { - "facing": "west", - "has_book": "true", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18460, + "id": 7900, "properties": { - "facing": "west", - "has_book": "false", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18461, + "id": 7901, "properties": { - "facing": "west", - "has_book": "false", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18462, + "id": 7902, "properties": { "facing": "east", - "has_book": "true", - "powered": "true" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18463, + "id": 7903, "properties": { "facing": "east", - "has_book": "true", - "powered": "false" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18464, + "id": 7904, "properties": { "facing": "east", - "has_book": "false", - "powered": "true" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18465, + "id": 7905, "properties": { "facing": "east", - "has_book": "false", - "powered": "false" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } } ] }, - "minecraft:lever": { + "minecraft:jungle_trapdoor": { "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], "facing": [ "north", "south", "west", "east" ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], "powered": [ "true", "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "id": 5626, + "id": 6153, "properties": { - "face": "floor", "facing": "north", - "powered": "true" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 5627, + "id": 6154, "properties": { - "face": "floor", "facing": "north", - "powered": "false" + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5628, + "id": 6155, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5629, + "id": 6156, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 5630, + "id": 6157, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 5631, + "id": 6158, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5632, + "id": 6159, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5633, + "id": 6160, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 5634, + "id": 6161, "properties": { - "face": "wall", "facing": "north", - "powered": "true" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "default": true, - "id": 5635, + "id": 6162, "properties": { - "face": "wall", "facing": "north", - "powered": "false" + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5636, + "id": 6163, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5637, + "id": 6164, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 5638, + "id": 6165, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 5639, + "id": 6166, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5640, + "id": 6167, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5641, + "default": true, + "id": 6168, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 5642, + "id": 6169, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 5643, + "id": 6170, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5644, + "id": 6171, "properties": { - "face": "ceiling", "facing": "south", - "powered": "true" + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5645, + "id": 6172, "properties": { - "face": "ceiling", "facing": "south", - "powered": "false" + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 5646, + "id": 6173, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 5647, + "id": 6174, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 5648, + "id": 6175, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 5649, + "id": 6176, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:light": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 10367, + "id": 6177, "properties": { - "level": "0", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 10368, + "id": 6178, "properties": { - "level": "0", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 10369, + "id": 6179, "properties": { - "level": "1", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 10370, + "id": 6180, "properties": { - "level": "1", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 10371, + "id": 6181, "properties": { - "level": "2", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 10372, + "id": 6182, "properties": { - "level": "2", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 10373, + "id": 6183, "properties": { - "level": "3", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 10374, + "id": 6184, "properties": { - "level": "3", + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 10375, + "id": 6185, "properties": { - "level": "4", + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 10376, + "id": 6186, "properties": { - "level": "4", + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 10377, + "id": 6187, "properties": { - "level": "5", + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 10378, + "id": 6188, "properties": { - "level": "5", + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 10379, + "id": 6189, "properties": { - "level": "6", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 10380, + "id": 6190, "properties": { - "level": "6", + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 10381, + "id": 6191, "properties": { - "level": "7", + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 10382, + "id": 6192, "properties": { - "level": "7", + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 10383, + "id": 6193, "properties": { - "level": "8", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 10384, + "id": 6194, "properties": { - "level": "8", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 10385, + "id": 6195, "properties": { - "level": "9", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 10386, + "id": 6196, "properties": { - "level": "9", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 10387, + "id": 6197, "properties": { - "level": "10", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 10388, + "id": 6198, "properties": { - "level": "10", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 10389, + "id": 6199, "properties": { - "level": "11", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 10390, + "id": 6200, "properties": { - "level": "11", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 10391, + "id": 6201, "properties": { - "level": "12", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 10392, + "id": 6202, "properties": { - "level": "12", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 10393, + "id": 6203, "properties": { - "level": "13", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 10394, + "id": 6204, "properties": { - "level": "13", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 10395, + "id": 6205, "properties": { - "level": "14", + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 10396, + "id": 6206, "properties": { - "level": "14", + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 10397, + "id": 6207, "properties": { - "level": "15", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "default": true, - "id": 10398, + "id": 6208, "properties": { - "level": "15", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:light_blue_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 10807, + "id": 6209, "properties": { - "rotation": "0" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 10808, + "id": 6210, "properties": { - "rotation": "1" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 10809, + "id": 6211, "properties": { - "rotation": "2" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 10810, + "id": 6212, "properties": { - "rotation": "3" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 10811, + "id": 6213, "properties": { - "rotation": "4" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 10812, + "id": 6214, "properties": { - "rotation": "5" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 10813, + "id": 6215, "properties": { - "rotation": "6" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 10814, + "id": 6216, "properties": { - "rotation": "7" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:jungle_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 10815, + "id": 5578, "properties": { - "rotation": "8" + "facing": "north", + "waterlogged": "true" } }, { - "id": 10816, + "default": true, + "id": 5579, "properties": { - "rotation": "9" + "facing": "north", + "waterlogged": "false" } }, { - "id": 10817, + "id": 5580, "properties": { - "rotation": "10" + "facing": "south", + "waterlogged": "true" } }, { - "id": 10818, + "id": 5581, "properties": { - "rotation": "11" + "facing": "south", + "waterlogged": "false" } }, { - "id": 10819, + "id": 5582, "properties": { - "rotation": "12" + "facing": "west", + "waterlogged": "true" } }, { - "id": 10820, + "id": 5583, "properties": { - "rotation": "13" + "facing": "west", + "waterlogged": "false" } }, { - "id": 10821, + "id": 5584, "properties": { - "rotation": "14" + "facing": "east", + "waterlogged": "true" } }, { - "id": 10822, + "id": 5585, "properties": { - "rotation": "15" + "facing": "east", + "waterlogged": "false" } } ] }, - "minecraft:light_blue_bed": { + "minecraft:jungle_wall_sign": { "properties": { "facing": [ "north", @@ -110589,842 +112408,561 @@ "west", "east" ], - "occupied": [ + "waterlogged": [ "true", "false" - ], - "part": [ - "head", - "foot" ] }, "states": [ { - "id": 1736, + "id": 4802, "properties": { "facing": "north", - "occupied": "true", - "part": "head" + "waterlogged": "true" } }, { - "id": 1737, + "default": true, + "id": 4803, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" + "waterlogged": "false" } }, { - "id": 1738, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1739, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1740, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1741, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1742, + "id": 4804, "properties": { "facing": "south", - "occupied": "false", - "part": "head" + "waterlogged": "true" } }, { - "id": 1743, + "id": 4805, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1744, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" + "waterlogged": "false" } }, { - "id": 1745, + "id": 4806, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" + "waterlogged": "true" } }, { - "id": 1746, + "id": 4807, "properties": { "facing": "west", - "occupied": "false", - "part": "head" + "waterlogged": "false" } }, { - "id": 1747, + "id": 4808, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" + "facing": "east", + "waterlogged": "true" } }, { - "id": 1748, + "id": 4809, "properties": { "facing": "east", - "occupied": "true", - "part": "head" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { - "id": 1749, + "id": 198, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" + "axis": "x" } }, { - "id": 1750, + "default": true, + "id": 199, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" + "axis": "y" } }, { - "id": 1751, + "id": 200, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" + "axis": "z" } } ] }, - "minecraft:light_blue_candle": { + "minecraft:kelp": { "properties": { - "candles": [ + "age": [ + "0", "1", "2", "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" ] }, "states": [ { - "id": 20789, + "default": true, + "id": 12760, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" + "age": "0" } }, { - "id": 20790, + "id": 12761, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" + "age": "1" } }, { - "id": 20791, + "id": 12762, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "age": "2" } }, { - "default": true, - "id": 20792, + "id": 12763, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" + "age": "3" } }, { - "id": 20793, + "id": 12764, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" + "age": "4" } }, { - "id": 20794, + "id": 12765, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" + "age": "5" } }, { - "id": 20795, + "id": 12766, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" + "age": "6" } }, { - "id": 20796, + "id": 12767, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" + "age": "7" } }, { - "id": 20797, + "id": 12768, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" + "age": "8" } }, { - "id": 20798, + "id": 12769, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" + "age": "9" } }, { - "id": 20799, + "id": 12770, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" + "age": "10" } }, { - "id": 20800, + "id": 12771, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" + "age": "11" } }, { - "id": 20801, + "id": 12772, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" + "age": "12" } }, { - "id": 20802, + "id": 12773, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" + "age": "13" } }, { - "id": 20803, + "id": 12774, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" + "age": "14" } }, { - "id": 20804, - "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" - } - } - ] - }, - "minecraft:light_blue_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21005, + "id": 12775, "properties": { - "lit": "true" + "age": "15" } }, { - "default": true, - "id": 21006, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:light_blue_carpet": { - "states": [ - { - "default": true, - "id": 10731 - } - ] - }, - "minecraft:light_blue_concrete": { - "states": [ - { - "default": true, - "id": 12731 - } - ] - }, - "minecraft:light_blue_concrete_powder": { - "states": [ - { - "default": true, - "id": 12747 - } - ] - }, - "minecraft:light_blue_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12676, + "id": 12776, "properties": { - "facing": "north" + "age": "16" } }, { - "id": 12677, + "id": 12777, "properties": { - "facing": "south" + "age": "17" } }, { - "id": 12678, + "id": 12778, "properties": { - "facing": "west" + "age": "18" } }, { - "id": 12679, + "id": 12779, "properties": { - "facing": "east" + "age": "19" } - } - ] - }, - "minecraft:light_blue_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12586, + "id": 12780, "properties": { - "facing": "north" + "age": "20" } }, { - "id": 12587, + "id": 12781, "properties": { - "facing": "east" + "age": "21" } }, { - "id": 12588, + "id": 12782, "properties": { - "facing": "south" + "age": "22" } }, { - "id": 12589, + "id": 12783, "properties": { - "facing": "west" + "age": "23" } }, { - "default": true, - "id": 12590, + "id": 12784, "properties": { - "facing": "up" + "age": "24" } }, { - "id": 12591, + "id": 12785, "properties": { - "facing": "down" + "age": "25" } } ] }, - "minecraft:light_blue_stained_glass": { + "minecraft:kelp_plant": { "states": [ { "default": true, - "id": 5949 + "id": 12786 } ] }, - "minecraft:light_blue_stained_glass_pane": { + "minecraft:ladder": { "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], "waterlogged": [ "true", "false" - ], - "west": [ - "true", - "false" ] }, "states": [ { - "id": 9468, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9469, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9470, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9471, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9472, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9473, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9474, + "id": 4654, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "waterlogged": "true" } }, { - "id": 9475, + "default": true, + "id": 4655, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "waterlogged": "false" } }, { - "id": 9476, + "id": 4656, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "waterlogged": "true" } }, { - "id": 9477, + "id": 4657, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "waterlogged": "false" } }, { - "id": 9478, + "id": 4658, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "west", + "waterlogged": "true" } }, { - "id": 9479, + "id": 4659, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "west", + "waterlogged": "false" } }, { - "id": 9480, + "id": 4660, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "east", + "waterlogged": "true" } }, { - "id": 9481, + "id": 4661, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 9482, + "id": 18503, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "hanging": "true", + "waterlogged": "true" } }, { - "id": 9483, + "id": 18504, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "hanging": "true", + "waterlogged": "false" } }, { - "id": 9484, + "id": 18505, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "hanging": "false", + "waterlogged": "true" } }, { - "id": 9485, + "default": true, + "id": 18506, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "hanging": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:lapis_block": { + "states": [ { - "id": 9486, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, + "default": true, + "id": 522 + } + ] + }, + "minecraft:lapis_ore": { + "states": [ { - "id": 9487, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, + "default": true, + "id": 520 + } + ] + }, + "minecraft:large_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 9488, + "id": 21045, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "waterlogged": "true" } }, { - "id": 9489, + "id": 21046, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "waterlogged": "false" } }, { - "id": 9490, + "id": 21047, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "east", + "waterlogged": "true" } }, { - "id": 9491, + "id": 21048, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "east", + "waterlogged": "false" } }, { - "id": 9492, + "id": 21049, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "waterlogged": "true" } }, { - "id": 9493, + "id": 21050, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "waterlogged": "false" } }, { - "id": 9494, + "id": 21051, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "west", + "waterlogged": "true" } }, { - "id": 9495, + "id": 21052, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "west", + "waterlogged": "false" } }, { - "id": 9496, + "id": 21053, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "up", + "waterlogged": "true" } }, { - "id": 9497, + "default": true, + "id": 21054, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "up", + "waterlogged": "false" } }, { - "id": 9498, + "id": 21055, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "down", + "waterlogged": "true" } }, { - "default": true, - "id": 9499, + "id": 21056, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "down", + "waterlogged": "false" } } ] }, - "minecraft:light_blue_terracotta": { - "states": [ - { - "default": true, - "id": 9359 - } - ] - }, - "minecraft:light_blue_wall_banner": { + "minecraft:large_fern": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "half": [ + "upper", + "lower" ] }, "states": [ { - "default": true, - "id": 11027, - "properties": { - "facing": "north" - } - }, - { - "id": 11028, - "properties": { - "facing": "south" - } - }, - { - "id": 11029, + "id": 10757, "properties": { - "facing": "west" + "half": "upper" } }, { - "id": 11030, + "default": true, + "id": 10758, "properties": { - "facing": "east" + "half": "lower" } } ] }, - "minecraft:light_blue_wool": { - "states": [ - { - "default": true, - "id": 2050 - } - ] - }, - "minecraft:light_gray_banner": { + "minecraft:lava": { "properties": { - "rotation": [ + "level": [ "0", "1", "2", @@ -111446,104 +112984,112 @@ "states": [ { "default": true, - "id": 10887, + "id": 96, "properties": { - "rotation": "0" + "level": "0" } }, { - "id": 10888, + "id": 97, "properties": { - "rotation": "1" + "level": "1" } }, { - "id": 10889, + "id": 98, "properties": { - "rotation": "2" + "level": "2" } }, { - "id": 10890, + "id": 99, "properties": { - "rotation": "3" + "level": "3" } }, { - "id": 10891, + "id": 100, "properties": { - "rotation": "4" + "level": "4" } }, { - "id": 10892, + "id": 101, "properties": { - "rotation": "5" + "level": "5" } }, { - "id": 10893, + "id": 102, "properties": { - "rotation": "6" + "level": "6" } }, { - "id": 10894, + "id": 103, "properties": { - "rotation": "7" + "level": "7" } }, { - "id": 10895, + "id": 104, "properties": { - "rotation": "8" + "level": "8" } }, { - "id": 10896, + "id": 105, "properties": { - "rotation": "9" + "level": "9" } }, { - "id": 10897, + "id": 106, "properties": { - "rotation": "10" + "level": "10" } }, { - "id": 10898, + "id": 107, "properties": { - "rotation": "11" + "level": "11" } }, { - "id": 10899, + "id": 108, "properties": { - "rotation": "12" + "level": "12" } }, { - "id": 10900, + "id": 109, "properties": { - "rotation": "13" + "level": "13" } }, { - "id": 10901, + "id": 110, "properties": { - "rotation": "14" + "level": "14" } }, { - "id": 10902, + "id": 111, "properties": { - "rotation": "15" + "level": "15" } } ] }, - "minecraft:light_gray_bed": { + "minecraft:lava_cauldron": { + "states": [ + { + "default": true, + "id": 7402 + } + ] + }, + "minecraft:lectern": { "properties": { "facing": [ "north", @@ -111551,216 +113097,953 @@ "west", "east" ], - "occupied": [ + "has_book": [ "true", "false" ], - "part": [ - "head", - "foot" + "powered": [ + "true", + "false" ] }, "states": [ { - "id": 1816, + "id": 18450, "properties": { "facing": "north", - "occupied": "true", - "part": "head" + "has_book": "true", + "powered": "true" } }, { - "id": 1817, + "id": 18451, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" + "has_book": "true", + "powered": "false" } }, { - "id": 1818, + "id": 18452, "properties": { "facing": "north", - "occupied": "false", - "part": "head" + "has_book": "false", + "powered": "true" } }, { "default": true, - "id": 1819, + "id": 18453, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" + "has_book": "false", + "powered": "false" } }, { - "id": 1820, + "id": 18454, "properties": { "facing": "south", - "occupied": "true", - "part": "head" + "has_book": "true", + "powered": "true" } }, { - "id": 1821, + "id": 18455, "properties": { "facing": "south", - "occupied": "true", - "part": "foot" + "has_book": "true", + "powered": "false" } }, { - "id": 1822, + "id": 18456, "properties": { "facing": "south", - "occupied": "false", - "part": "head" + "has_book": "false", + "powered": "true" } }, { - "id": 1823, + "id": 18457, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" + "has_book": "false", + "powered": "false" } }, { - "id": 1824, + "id": 18458, "properties": { "facing": "west", - "occupied": "true", - "part": "head" + "has_book": "true", + "powered": "true" } }, { - "id": 1825, + "id": 18459, "properties": { "facing": "west", - "occupied": "true", - "part": "foot" + "has_book": "true", + "powered": "false" } }, { - "id": 1826, + "id": 18460, "properties": { "facing": "west", - "occupied": "false", - "part": "head" + "has_book": "false", + "powered": "true" } }, { - "id": 1827, + "id": 18461, "properties": { "facing": "west", - "occupied": "false", - "part": "foot" + "has_book": "false", + "powered": "false" } }, { - "id": 1828, + "id": 18462, "properties": { "facing": "east", - "occupied": "true", - "part": "head" + "has_book": "true", + "powered": "true" } }, { - "id": 1829, + "id": 18463, "properties": { "facing": "east", - "occupied": "true", - "part": "foot" + "has_book": "true", + "powered": "false" } }, { - "id": 1830, + "id": 18464, "properties": { "facing": "east", - "occupied": "false", - "part": "head" + "has_book": "false", + "powered": "true" } }, { - "id": 1831, + "id": 18465, "properties": { "facing": "east", - "occupied": "false", - "part": "foot" + "has_book": "false", + "powered": "false" } } ] }, - "minecraft:light_gray_candle": { + "minecraft:lever": { "properties": { - "candles": [ - "1", - "2", - "3", - "4" + "face": [ + "floor", + "wall", + "ceiling" ], - "lit": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 20869, + "id": 5626, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" + "face": "floor", + "facing": "north", + "powered": "true" } }, { - "id": 20870, + "id": 5627, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" + "face": "floor", + "facing": "north", + "powered": "false" } }, { - "id": 20871, + "id": 5628, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "face": "floor", + "facing": "south", + "powered": "true" } }, { - "default": true, - "id": 20872, + "id": 5629, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" + "face": "floor", + "facing": "south", + "powered": "false" } }, { - "id": 20873, + "id": 5630, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" + "face": "floor", + "facing": "west", + "powered": "true" } }, { - "id": 20874, + "id": 5631, "properties": { - "candles": "2", - "lit": "true", + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5632, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5633, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5634, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5635, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5636, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5637, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5638, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5639, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5640, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5641, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5642, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5643, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5644, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5645, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5646, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5647, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5648, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5649, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:light": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10367, + "properties": { + "level": "0", + "waterlogged": "true" + } + }, + { + "id": 10368, + "properties": { + "level": "0", "waterlogged": "false" } }, { - "id": 20875, + "id": 10369, + "properties": { + "level": "1", + "waterlogged": "true" + } + }, + { + "id": 10370, + "properties": { + "level": "1", + "waterlogged": "false" + } + }, + { + "id": 10371, + "properties": { + "level": "2", + "waterlogged": "true" + } + }, + { + "id": 10372, + "properties": { + "level": "2", + "waterlogged": "false" + } + }, + { + "id": 10373, + "properties": { + "level": "3", + "waterlogged": "true" + } + }, + { + "id": 10374, + "properties": { + "level": "3", + "waterlogged": "false" + } + }, + { + "id": 10375, + "properties": { + "level": "4", + "waterlogged": "true" + } + }, + { + "id": 10376, + "properties": { + "level": "4", + "waterlogged": "false" + } + }, + { + "id": 10377, + "properties": { + "level": "5", + "waterlogged": "true" + } + }, + { + "id": 10378, + "properties": { + "level": "5", + "waterlogged": "false" + } + }, + { + "id": 10379, + "properties": { + "level": "6", + "waterlogged": "true" + } + }, + { + "id": 10380, + "properties": { + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 10381, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 10382, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 10383, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 10384, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 10385, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 10386, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 10387, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 10388, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 10389, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 10390, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 10391, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 10392, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 10393, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 10394, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 10395, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 10396, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 10397, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10398, + "properties": { + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10807, + "properties": { + "rotation": "0" + } + }, + { + "id": 10808, + "properties": { + "rotation": "1" + } + }, + { + "id": 10809, + "properties": { + "rotation": "2" + } + }, + { + "id": 10810, + "properties": { + "rotation": "3" + } + }, + { + "id": 10811, + "properties": { + "rotation": "4" + } + }, + { + "id": 10812, + "properties": { + "rotation": "5" + } + }, + { + "id": 10813, + "properties": { + "rotation": "6" + } + }, + { + "id": 10814, + "properties": { + "rotation": "7" + } + }, + { + "id": 10815, + "properties": { + "rotation": "8" + } + }, + { + "id": 10816, + "properties": { + "rotation": "9" + } + }, + { + "id": 10817, + "properties": { + "rotation": "10" + } + }, + { + "id": 10818, + "properties": { + "rotation": "11" + } + }, + { + "id": 10819, + "properties": { + "rotation": "12" + } + }, + { + "id": 10820, + "properties": { + "rotation": "13" + } + }, + { + "id": 10821, + "properties": { + "rotation": "14" + } + }, + { + "id": 10822, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1736, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1737, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1738, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1739, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1740, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1741, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1742, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1743, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1744, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1745, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1746, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1747, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1748, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1749, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1750, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1751, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20789, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20790, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20791, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20792, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20793, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20794, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20795, "properties": { "candles": "2", "lit": "false", @@ -111768,7 +114051,7 @@ } }, { - "id": 20876, + "id": 20796, "properties": { "candles": "2", "lit": "false", @@ -111776,7 +114059,7 @@ } }, { - "id": 20877, + "id": 20797, "properties": { "candles": "3", "lit": "true", @@ -111784,7 +114067,7 @@ } }, { - "id": 20878, + "id": 20798, "properties": { "candles": "3", "lit": "true", @@ -111792,7 +114075,7 @@ } }, { - "id": 20879, + "id": 20799, "properties": { "candles": "3", "lit": "false", @@ -111800,7 +114083,7 @@ } }, { - "id": 20880, + "id": 20800, "properties": { "candles": "3", "lit": "false", @@ -111808,7 +114091,7 @@ } }, { - "id": 20881, + "id": 20801, "properties": { "candles": "4", "lit": "true", @@ -111816,7 +114099,7 @@ } }, { - "id": 20882, + "id": 20802, "properties": { "candles": "4", "lit": "true", @@ -111824,7 +114107,7 @@ } }, { - "id": 20883, + "id": 20803, "properties": { "candles": "4", "lit": "false", @@ -111832,7 +114115,7 @@ } }, { - "id": 20884, + "id": 20804, "properties": { "candles": "4", "lit": "false", @@ -111841,7 +114124,7 @@ } ] }, - "minecraft:light_gray_candle_cake": { + "minecraft:light_blue_candle_cake": { "properties": { "lit": [ "true", @@ -111850,45 +114133,45 @@ }, "states": [ { - "id": 21015, + "id": 21005, "properties": { "lit": "true" } }, { "default": true, - "id": 21016, + "id": 21006, "properties": { "lit": "false" } } ] }, - "minecraft:light_gray_carpet": { + "minecraft:light_blue_carpet": { "states": [ { "default": true, - "id": 10736 + "id": 10731 } ] }, - "minecraft:light_gray_concrete": { + "minecraft:light_blue_concrete": { "states": [ { "default": true, - "id": 12736 + "id": 12731 } ] }, - "minecraft:light_gray_concrete_powder": { + "minecraft:light_blue_concrete_powder": { "states": [ { "default": true, - "id": 12752 + "id": 12747 } ] }, - "minecraft:light_gray_glazed_terracotta": { + "minecraft:light_blue_glazed_terracotta": { "properties": { "facing": [ "north", @@ -111900,32 +114183,32 @@ "states": [ { "default": true, - "id": 12696, + "id": 12676, "properties": { "facing": "north" } }, { - "id": 12697, + "id": 12677, "properties": { "facing": "south" } }, { - "id": 12698, + "id": 12678, "properties": { "facing": "west" } }, { - "id": 12699, + "id": 12679, "properties": { "facing": "east" } } ] }, - "minecraft:light_gray_shulker_box": { + "minecraft:light_blue_shulker_box": { "properties": { "facing": [ "north", @@ -111938,53 +114221,53 @@ }, "states": [ { - "id": 12616, + "id": 12586, "properties": { "facing": "north" } }, { - "id": 12617, + "id": 12587, "properties": { "facing": "east" } }, { - "id": 12618, + "id": 12588, "properties": { "facing": "south" } }, { - "id": 12619, + "id": 12589, "properties": { "facing": "west" } }, { "default": true, - "id": 12620, + "id": 12590, "properties": { "facing": "up" } }, { - "id": 12621, + "id": 12591, "properties": { "facing": "down" } } ] }, - "minecraft:light_gray_stained_glass": { + "minecraft:light_blue_stained_glass": { "states": [ { "default": true, - "id": 5954 + "id": 5948 } ] }, - "minecraft:light_gray_stained_glass_pane": { + "minecraft:light_blue_stained_glass_pane": { "properties": { "east": [ "true", @@ -112009,7 +114292,7 @@ }, "states": [ { - "id": 9628, + "id": 9468, "properties": { "east": "true", "north": "true", @@ -112019,7 +114302,7 @@ } }, { - "id": 9629, + "id": 9469, "properties": { "east": "true", "north": "true", @@ -112029,7 +114312,7 @@ } }, { - "id": 9630, + "id": 9470, "properties": { "east": "true", "north": "true", @@ -112039,7 +114322,7 @@ } }, { - "id": 9631, + "id": 9471, "properties": { "east": "true", "north": "true", @@ -112049,7 +114332,7 @@ } }, { - "id": 9632, + "id": 9472, "properties": { "east": "true", "north": "true", @@ -112059,7 +114342,7 @@ } }, { - "id": 9633, + "id": 9473, "properties": { "east": "true", "north": "true", @@ -112069,7 +114352,7 @@ } }, { - "id": 9634, + "id": 9474, "properties": { "east": "true", "north": "true", @@ -112079,7 +114362,7 @@ } }, { - "id": 9635, + "id": 9475, "properties": { "east": "true", "north": "true", @@ -112089,7 +114372,7 @@ } }, { - "id": 9636, + "id": 9476, "properties": { "east": "true", "north": "false", @@ -112099,7 +114382,7 @@ } }, { - "id": 9637, + "id": 9477, "properties": { "east": "true", "north": "false", @@ -112109,7 +114392,7 @@ } }, { - "id": 9638, + "id": 9478, "properties": { "east": "true", "north": "false", @@ -112119,7 +114402,7 @@ } }, { - "id": 9639, + "id": 9479, "properties": { "east": "true", "north": "false", @@ -112129,7 +114412,7 @@ } }, { - "id": 9640, + "id": 9480, "properties": { "east": "true", "north": "false", @@ -112139,7 +114422,7 @@ } }, { - "id": 9641, + "id": 9481, "properties": { "east": "true", "north": "false", @@ -112149,7 +114432,7 @@ } }, { - "id": 9642, + "id": 9482, "properties": { "east": "true", "north": "false", @@ -112159,7 +114442,7 @@ } }, { - "id": 9643, + "id": 9483, "properties": { "east": "true", "north": "false", @@ -112169,7 +114452,7 @@ } }, { - "id": 9644, + "id": 9484, "properties": { "east": "false", "north": "true", @@ -112179,7 +114462,7 @@ } }, { - "id": 9645, + "id": 9485, "properties": { "east": "false", "north": "true", @@ -112189,7 +114472,7 @@ } }, { - "id": 9646, + "id": 9486, "properties": { "east": "false", "north": "true", @@ -112199,7 +114482,7 @@ } }, { - "id": 9647, + "id": 9487, "properties": { "east": "false", "north": "true", @@ -112209,7 +114492,7 @@ } }, { - "id": 9648, + "id": 9488, "properties": { "east": "false", "north": "true", @@ -112219,7 +114502,7 @@ } }, { - "id": 9649, + "id": 9489, "properties": { "east": "false", "north": "true", @@ -112229,7 +114512,7 @@ } }, { - "id": 9650, + "id": 9490, "properties": { "east": "false", "north": "true", @@ -112239,7 +114522,7 @@ } }, { - "id": 9651, + "id": 9491, "properties": { "east": "false", "north": "true", @@ -112249,7 +114532,7 @@ } }, { - "id": 9652, + "id": 9492, "properties": { "east": "false", "north": "false", @@ -112259,7 +114542,7 @@ } }, { - "id": 9653, + "id": 9493, "properties": { "east": "false", "north": "false", @@ -112269,7 +114552,7 @@ } }, { - "id": 9654, + "id": 9494, "properties": { "east": "false", "north": "false", @@ -112279,7 +114562,7 @@ } }, { - "id": 9655, + "id": 9495, "properties": { "east": "false", "north": "false", @@ -112289,7 +114572,7 @@ } }, { - "id": 9656, + "id": 9496, "properties": { "east": "false", "north": "false", @@ -112299,7 +114582,7 @@ } }, { - "id": 9657, + "id": 9497, "properties": { "east": "false", "north": "false", @@ -112309,7 +114592,7 @@ } }, { - "id": 9658, + "id": 9498, "properties": { "east": "false", "north": "false", @@ -112320,7 +114603,7 @@ }, { "default": true, - "id": 9659, + "id": 9499, "properties": { "east": "false", "north": "false", @@ -112331,15 +114614,15 @@ } ] }, - "minecraft:light_gray_terracotta": { + "minecraft:light_blue_terracotta": { "states": [ { "default": true, - "id": 9364 + "id": 9359 } ] }, - "minecraft:light_gray_wall_banner": { + "minecraft:light_blue_wall_banner": { "properties": { "facing": [ "north", @@ -112351,42 +114634,42 @@ "states": [ { "default": true, - "id": 11047, + "id": 11027, "properties": { "facing": "north" } }, { - "id": 11048, + "id": 11028, "properties": { "facing": "south" } }, { - "id": 11049, + "id": 11029, "properties": { "facing": "west" } }, { - "id": 11050, + "id": 11030, "properties": { "facing": "east" } } ] }, - "minecraft:light_gray_wool": { + "minecraft:light_blue_wool": { "states": [ { "default": true, - "id": 2055 + "id": 2050 } ] }, - "minecraft:light_weighted_pressure_plate": { + "minecraft:light_gray_banner": { "properties": { - "power": [ + "rotation": [ "0", "1", "2", @@ -112408,189 +114691,1151 @@ "states": [ { "default": true, - "id": 9143, + "id": 10887, "properties": { - "power": "0" + "rotation": "0" } }, { - "id": 9144, + "id": 10888, "properties": { - "power": "1" + "rotation": "1" } }, { - "id": 9145, + "id": 10889, "properties": { - "power": "2" + "rotation": "2" } }, { - "id": 9146, + "id": 10890, "properties": { - "power": "3" + "rotation": "3" } }, { - "id": 9147, + "id": 10891, "properties": { - "power": "4" + "rotation": "4" } }, { - "id": 9148, + "id": 10892, "properties": { - "power": "5" + "rotation": "5" } }, { - "id": 9149, + "id": 10893, "properties": { - "power": "6" + "rotation": "6" } }, { - "id": 9150, + "id": 10894, "properties": { - "power": "7" + "rotation": "7" } }, { - "id": 9151, + "id": 10895, "properties": { - "power": "8" + "rotation": "8" } }, { - "id": 9152, + "id": 10896, "properties": { - "power": "9" + "rotation": "9" } }, { - "id": 9153, + "id": 10897, "properties": { - "power": "10" + "rotation": "10" } }, { - "id": 9154, + "id": 10898, "properties": { - "power": "11" + "rotation": "11" } }, { - "id": 9155, + "id": 10899, "properties": { - "power": "12" + "rotation": "12" } }, { - "id": 9156, + "id": 10900, "properties": { - "power": "13" + "rotation": "13" } }, { - "id": 9157, + "id": 10901, "properties": { - "power": "14" + "rotation": "14" } }, { - "id": 9158, + "id": 10902, "properties": { - "power": "15" + "rotation": "15" } } ] }, - "minecraft:lightning_rod": { + "minecraft:light_gray_bed": { "properties": { "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "powered": [ + "occupied": [ "true", "false" ], - "waterlogged": [ - "true", - "false" + "part": [ + "head", + "foot" ] }, "states": [ { - "id": 22410, + "id": 1816, "properties": { "facing": "north", - "powered": "true", - "waterlogged": "true" + "occupied": "true", + "part": "head" } }, { - "id": 22411, + "id": 1817, "properties": { "facing": "north", - "powered": "true", - "waterlogged": "false" + "occupied": "true", + "part": "foot" } }, { - "id": 22412, + "id": 1818, "properties": { "facing": "north", - "powered": "false", - "waterlogged": "true" + "occupied": "false", + "part": "head" } }, { - "id": 22413, + "default": true, + "id": 1819, "properties": { "facing": "north", - "powered": "false", - "waterlogged": "false" + "occupied": "false", + "part": "foot" } }, { - "id": 22414, + "id": 1820, "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "true" + "facing": "south", + "occupied": "true", + "part": "head" } }, { - "id": 22415, + "id": 1821, "properties": { - "facing": "east", - "powered": "true", - "waterlogged": "false" + "facing": "south", + "occupied": "true", + "part": "foot" } }, { - "id": 22416, + "id": 1822, "properties": { - "facing": "east", - "powered": "false", - "waterlogged": "true" + "facing": "south", + "occupied": "false", + "part": "head" } }, { - "id": 22417, + "id": 1823, "properties": { - "facing": "east", - "powered": "false", + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1824, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1825, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1826, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1827, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1828, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1829, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1830, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1831, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20869, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20870, + "properties": { + "candles": "1", + "lit": "true", "waterlogged": "false" } }, { - "id": 22418, + "id": 20871, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20872, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20873, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20874, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20875, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20876, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20877, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20878, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20879, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20880, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20881, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20882, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20883, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20884, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21015, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21016, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "states": [ + { + "default": true, + "id": 10736 + } + ] + }, + "minecraft:light_gray_concrete": { + "states": [ + { + "default": true, + "id": 12736 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "states": [ + { + "default": true, + "id": 12752 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12696, + "properties": { + "facing": "north" + } + }, + { + "id": 12697, + "properties": { + "facing": "south" + } + }, + { + "id": 12698, + "properties": { + "facing": "west" + } + }, + { + "id": 12699, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12616, + "properties": { + "facing": "north" + } + }, + { + "id": 12617, + "properties": { + "facing": "east" + } + }, + { + "id": 12618, + "properties": { + "facing": "south" + } + }, + { + "id": 12619, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12620, + "properties": { + "facing": "up" + } + }, + { + "id": 12621, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "states": [ + { + "default": true, + "id": 5953 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9628, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9629, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9630, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9631, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9632, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9633, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9636, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9637, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9640, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9641, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9643, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9644, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9645, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9648, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9649, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9652, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9653, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9656, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9657, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9658, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9659, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "states": [ + { + "default": true, + "id": 9364 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11047, + "properties": { + "facing": "north" + } + }, + { + "id": 11048, + "properties": { + "facing": "south" + } + }, + { + "id": 11049, + "properties": { + "facing": "west" + } + }, + { + "id": 11050, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "states": [ + { + "default": true, + "id": 2055 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9143, + "properties": { + "power": "0" + } + }, + { + "id": 9144, + "properties": { + "power": "1" + } + }, + { + "id": 9145, + "properties": { + "power": "2" + } + }, + { + "id": 9146, + "properties": { + "power": "3" + } + }, + { + "id": 9147, + "properties": { + "power": "4" + } + }, + { + "id": 9148, + "properties": { + "power": "5" + } + }, + { + "id": 9149, + "properties": { + "power": "6" + } + }, + { + "id": 9150, + "properties": { + "power": "7" + } + }, + { + "id": 9151, + "properties": { + "power": "8" + } + }, + { + "id": 9152, + "properties": { + "power": "9" + } + }, + { + "id": 9153, + "properties": { + "power": "10" + } + }, + { + "id": 9154, + "properties": { + "power": "11" + } + }, + { + "id": 9155, + "properties": { + "power": "12" + } + }, + { + "id": 9156, + "properties": { + "power": "13" + } + }, + { + "id": 9157, + "properties": { + "power": "14" + } + }, + { + "id": 9158, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24724, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24725, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24726, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24727, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24728, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24729, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24730, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24731, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24732, "properties": { "facing": "south", "powered": "true", @@ -112598,7 +115843,7 @@ } }, { - "id": 22419, + "id": 24733, "properties": { "facing": "south", "powered": "true", @@ -112606,7 +115851,7 @@ } }, { - "id": 22420, + "id": 24734, "properties": { "facing": "south", "powered": "false", @@ -112614,7 +115859,7 @@ } }, { - "id": 22421, + "id": 24735, "properties": { "facing": "south", "powered": "false", @@ -112622,7 +115867,7 @@ } }, { - "id": 22422, + "id": 24736, "properties": { "facing": "west", "powered": "true", @@ -112630,7 +115875,7 @@ } }, { - "id": 22423, + "id": 24737, "properties": { "facing": "west", "powered": "true", @@ -112638,7 +115883,7 @@ } }, { - "id": 22424, + "id": 24738, "properties": { "facing": "west", "powered": "false", @@ -112646,7 +115891,7 @@ } }, { - "id": 22425, + "id": 24739, "properties": { "facing": "west", "powered": "false", @@ -112654,7 +115899,7 @@ } }, { - "id": 22426, + "id": 24740, "properties": { "facing": "up", "powered": "true", @@ -112662,7 +115907,7 @@ } }, { - "id": 22427, + "id": 24741, "properties": { "facing": "up", "powered": "true", @@ -112670,7 +115915,7 @@ } }, { - "id": 22428, + "id": 24742, "properties": { "facing": "up", "powered": "false", @@ -112679,7 +115924,7 @@ }, { "default": true, - "id": 22429, + "id": 24743, "properties": { "facing": "up", "powered": "false", @@ -112687,7 +115932,7 @@ } }, { - "id": 22430, + "id": 24744, "properties": { "facing": "down", "powered": "true", @@ -112695,7 +115940,7 @@ } }, { - "id": 22431, + "id": 24745, "properties": { "facing": "down", "powered": "true", @@ -112703,7 +115948,7 @@ } }, { - "id": 22432, + "id": 24746, "properties": { "facing": "down", "powered": "false", @@ -112711,7 +115956,7 @@ } }, { - "id": 22433, + "id": 24747, "properties": { "facing": "down", "powered": "false", @@ -113317,7 +116562,7 @@ "states": [ { "default": true, - "id": 5951 + "id": 5950 } ] }, @@ -114324,7 +117569,7 @@ "states": [ { "default": true, - "id": 5948 + "id": 5947 } ] }, @@ -118628,7 +121873,7 @@ }, "states": [ { - "id": 6410, + "id": 6409, "properties": { "facing": "north", "half": "top", @@ -118638,7 +121883,7 @@ } }, { - "id": 6411, + "id": 6410, "properties": { "facing": "north", "half": "top", @@ -118648,7 +121893,7 @@ } }, { - "id": 6412, + "id": 6411, "properties": { "facing": "north", "half": "top", @@ -118658,7 +121903,7 @@ } }, { - "id": 6413, + "id": 6412, "properties": { "facing": "north", "half": "top", @@ -118668,7 +121913,7 @@ } }, { - "id": 6414, + "id": 6413, "properties": { "facing": "north", "half": "top", @@ -118678,7 +121923,7 @@ } }, { - "id": 6415, + "id": 6414, "properties": { "facing": "north", "half": "top", @@ -118688,7 +121933,7 @@ } }, { - "id": 6416, + "id": 6415, "properties": { "facing": "north", "half": "top", @@ -118698,7 +121943,7 @@ } }, { - "id": 6417, + "id": 6416, "properties": { "facing": "north", "half": "top", @@ -118708,7 +121953,7 @@ } }, { - "id": 6418, + "id": 6417, "properties": { "facing": "north", "half": "bottom", @@ -118718,7 +121963,7 @@ } }, { - "id": 6419, + "id": 6418, "properties": { "facing": "north", "half": "bottom", @@ -118728,7 +121973,7 @@ } }, { - "id": 6420, + "id": 6419, "properties": { "facing": "north", "half": "bottom", @@ -118738,7 +121983,7 @@ } }, { - "id": 6421, + "id": 6420, "properties": { "facing": "north", "half": "bottom", @@ -118748,7 +121993,7 @@ } }, { - "id": 6422, + "id": 6421, "properties": { "facing": "north", "half": "bottom", @@ -118758,7 +122003,7 @@ } }, { - "id": 6423, + "id": 6422, "properties": { "facing": "north", "half": "bottom", @@ -118768,7 +122013,7 @@ } }, { - "id": 6424, + "id": 6423, "properties": { "facing": "north", "half": "bottom", @@ -118779,7 +122024,7 @@ }, { "default": true, - "id": 6425, + "id": 6424, "properties": { "facing": "north", "half": "bottom", @@ -118789,7 +122034,7 @@ } }, { - "id": 6426, + "id": 6425, "properties": { "facing": "south", "half": "top", @@ -118799,7 +122044,7 @@ } }, { - "id": 6427, + "id": 6426, "properties": { "facing": "south", "half": "top", @@ -118809,7 +122054,7 @@ } }, { - "id": 6428, + "id": 6427, "properties": { "facing": "south", "half": "top", @@ -118819,7 +122064,7 @@ } }, { - "id": 6429, + "id": 6428, "properties": { "facing": "south", "half": "top", @@ -118829,7 +122074,7 @@ } }, { - "id": 6430, + "id": 6429, "properties": { "facing": "south", "half": "top", @@ -118839,7 +122084,7 @@ } }, { - "id": 6431, + "id": 6430, "properties": { "facing": "south", "half": "top", @@ -118849,7 +122094,7 @@ } }, { - "id": 6432, + "id": 6431, "properties": { "facing": "south", "half": "top", @@ -118859,7 +122104,7 @@ } }, { - "id": 6433, + "id": 6432, "properties": { "facing": "south", "half": "top", @@ -118869,7 +122114,7 @@ } }, { - "id": 6434, + "id": 6433, "properties": { "facing": "south", "half": "bottom", @@ -118879,7 +122124,7 @@ } }, { - "id": 6435, + "id": 6434, "properties": { "facing": "south", "half": "bottom", @@ -118889,7 +122134,7 @@ } }, { - "id": 6436, + "id": 6435, "properties": { "facing": "south", "half": "bottom", @@ -118899,7 +122144,7 @@ } }, { - "id": 6437, + "id": 6436, "properties": { "facing": "south", "half": "bottom", @@ -118909,7 +122154,7 @@ } }, { - "id": 6438, + "id": 6437, "properties": { "facing": "south", "half": "bottom", @@ -118919,7 +122164,7 @@ } }, { - "id": 6439, + "id": 6438, "properties": { "facing": "south", "half": "bottom", @@ -118929,7 +122174,7 @@ } }, { - "id": 6440, + "id": 6439, "properties": { "facing": "south", "half": "bottom", @@ -118939,7 +122184,7 @@ } }, { - "id": 6441, + "id": 6440, "properties": { "facing": "south", "half": "bottom", @@ -118949,7 +122194,7 @@ } }, { - "id": 6442, + "id": 6441, "properties": { "facing": "west", "half": "top", @@ -118959,7 +122204,7 @@ } }, { - "id": 6443, + "id": 6442, "properties": { "facing": "west", "half": "top", @@ -118969,7 +122214,7 @@ } }, { - "id": 6444, + "id": 6443, "properties": { "facing": "west", "half": "top", @@ -118979,7 +122224,7 @@ } }, { - "id": 6445, + "id": 6444, "properties": { "facing": "west", "half": "top", @@ -118989,7 +122234,7 @@ } }, { - "id": 6446, + "id": 6445, "properties": { "facing": "west", "half": "top", @@ -118999,7 +122244,7 @@ } }, { - "id": 6447, + "id": 6446, "properties": { "facing": "west", "half": "top", @@ -119009,7 +122254,7 @@ } }, { - "id": 6448, + "id": 6447, "properties": { "facing": "west", "half": "top", @@ -119019,7 +122264,7 @@ } }, { - "id": 6449, + "id": 6448, "properties": { "facing": "west", "half": "top", @@ -119029,7 +122274,7 @@ } }, { - "id": 6450, + "id": 6449, "properties": { "facing": "west", "half": "bottom", @@ -119039,7 +122284,7 @@ } }, { - "id": 6451, + "id": 6450, "properties": { "facing": "west", "half": "bottom", @@ -119049,7 +122294,7 @@ } }, { - "id": 6452, + "id": 6451, "properties": { "facing": "west", "half": "bottom", @@ -119059,7 +122304,7 @@ } }, { - "id": 6453, + "id": 6452, "properties": { "facing": "west", "half": "bottom", @@ -119069,7 +122314,7 @@ } }, { - "id": 6454, + "id": 6453, "properties": { "facing": "west", "half": "bottom", @@ -119079,7 +122324,7 @@ } }, { - "id": 6455, + "id": 6454, "properties": { "facing": "west", "half": "bottom", @@ -119089,7 +122334,7 @@ } }, { - "id": 6456, + "id": 6455, "properties": { "facing": "west", "half": "bottom", @@ -119099,7 +122344,7 @@ } }, { - "id": 6457, + "id": 6456, "properties": { "facing": "west", "half": "bottom", @@ -119109,7 +122354,7 @@ } }, { - "id": 6458, + "id": 6457, "properties": { "facing": "east", "half": "top", @@ -119119,7 +122364,7 @@ } }, { - "id": 6459, + "id": 6458, "properties": { "facing": "east", "half": "top", @@ -119129,7 +122374,7 @@ } }, { - "id": 6460, + "id": 6459, "properties": { "facing": "east", "half": "top", @@ -119139,7 +122384,7 @@ } }, { - "id": 6461, + "id": 6460, "properties": { "facing": "east", "half": "top", @@ -119149,7 +122394,7 @@ } }, { - "id": 6462, + "id": 6461, "properties": { "facing": "east", "half": "top", @@ -119159,7 +122404,7 @@ } }, { - "id": 6463, + "id": 6462, "properties": { "facing": "east", "half": "top", @@ -119169,7 +122414,7 @@ } }, { - "id": 6464, + "id": 6463, "properties": { "facing": "east", "half": "top", @@ -119179,7 +122424,7 @@ } }, { - "id": 6465, + "id": 6464, "properties": { "facing": "east", "half": "top", @@ -119189,7 +122434,7 @@ } }, { - "id": 6466, + "id": 6465, "properties": { "facing": "east", "half": "bottom", @@ -119199,7 +122444,7 @@ } }, { - "id": 6467, + "id": 6466, "properties": { "facing": "east", "half": "bottom", @@ -119209,7 +122454,7 @@ } }, { - "id": 6468, + "id": 6467, "properties": { "facing": "east", "half": "bottom", @@ -119219,7 +122464,7 @@ } }, { - "id": 6469, + "id": 6468, "properties": { "facing": "east", "half": "bottom", @@ -119229,7 +122474,7 @@ } }, { - "id": 6470, + "id": 6469, "properties": { "facing": "east", "half": "bottom", @@ -119239,7 +122484,7 @@ } }, { - "id": 6471, + "id": 6470, "properties": { "facing": "east", "half": "bottom", @@ -119249,7 +122494,7 @@ } }, { - "id": 6472, + "id": 6471, "properties": { "facing": "east", "half": "bottom", @@ -119259,7 +122504,7 @@ } }, { - "id": 6473, + "id": 6472, "properties": { "facing": "east", "half": "bottom", @@ -119626,7 +122871,7 @@ "states": [ { "default": true, - "id": 22529 + "id": 24843 } ] }, @@ -119634,7 +122879,7 @@ "states": [ { "default": true, - "id": 22512 + "id": 24826 } ] }, @@ -128460,7 +131705,7 @@ "states": [ { "default": true, - "id": 6539 + "id": 6538 } ] }, @@ -128571,7 +131816,7 @@ "states": [ { "default": true, - "id": 22589 + "id": 24903 } ] }, @@ -132984,7 +136229,7 @@ "states": [ { "default": true, - "id": 6543 + "id": 6542 } ] }, @@ -133048,7 +136293,7 @@ "states": [ { "default": true, - "id": 6678, + "id": 6677, "properties": { "down": "true", "east": "true", @@ -133059,7 +136304,7 @@ } }, { - "id": 6679, + "id": 6678, "properties": { "down": "true", "east": "true", @@ -133070,7 +136315,7 @@ } }, { - "id": 6680, + "id": 6679, "properties": { "down": "true", "east": "true", @@ -133081,7 +136326,7 @@ } }, { - "id": 6681, + "id": 6680, "properties": { "down": "true", "east": "true", @@ -133092,7 +136337,7 @@ } }, { - "id": 6682, + "id": 6681, "properties": { "down": "true", "east": "true", @@ -133103,7 +136348,7 @@ } }, { - "id": 6683, + "id": 6682, "properties": { "down": "true", "east": "true", @@ -133114,7 +136359,7 @@ } }, { - "id": 6684, + "id": 6683, "properties": { "down": "true", "east": "true", @@ -133125,7 +136370,7 @@ } }, { - "id": 6685, + "id": 6684, "properties": { "down": "true", "east": "true", @@ -133136,7 +136381,7 @@ } }, { - "id": 6686, + "id": 6685, "properties": { "down": "true", "east": "true", @@ -133147,7 +136392,7 @@ } }, { - "id": 6687, + "id": 6686, "properties": { "down": "true", "east": "true", @@ -133158,7 +136403,7 @@ } }, { - "id": 6688, + "id": 6687, "properties": { "down": "true", "east": "true", @@ -133169,7 +136414,7 @@ } }, { - "id": 6689, + "id": 6688, "properties": { "down": "true", "east": "true", @@ -133180,7 +136425,7 @@ } }, { - "id": 6690, + "id": 6689, "properties": { "down": "true", "east": "true", @@ -133191,7 +136436,7 @@ } }, { - "id": 6691, + "id": 6690, "properties": { "down": "true", "east": "true", @@ -133202,7 +136447,7 @@ } }, { - "id": 6692, + "id": 6691, "properties": { "down": "true", "east": "true", @@ -133213,7 +136458,7 @@ } }, { - "id": 6693, + "id": 6692, "properties": { "down": "true", "east": "true", @@ -133224,7 +136469,7 @@ } }, { - "id": 6694, + "id": 6693, "properties": { "down": "true", "east": "false", @@ -133235,7 +136480,7 @@ } }, { - "id": 6695, + "id": 6694, "properties": { "down": "true", "east": "false", @@ -133246,7 +136491,7 @@ } }, { - "id": 6696, + "id": 6695, "properties": { "down": "true", "east": "false", @@ -133257,7 +136502,7 @@ } }, { - "id": 6697, + "id": 6696, "properties": { "down": "true", "east": "false", @@ -133268,7 +136513,7 @@ } }, { - "id": 6698, + "id": 6697, "properties": { "down": "true", "east": "false", @@ -133279,7 +136524,7 @@ } }, { - "id": 6699, + "id": 6698, "properties": { "down": "true", "east": "false", @@ -133290,7 +136535,7 @@ } }, { - "id": 6700, + "id": 6699, "properties": { "down": "true", "east": "false", @@ -133301,7 +136546,7 @@ } }, { - "id": 6701, + "id": 6700, "properties": { "down": "true", "east": "false", @@ -133312,7 +136557,7 @@ } }, { - "id": 6702, + "id": 6701, "properties": { "down": "true", "east": "false", @@ -133323,7 +136568,7 @@ } }, { - "id": 6703, + "id": 6702, "properties": { "down": "true", "east": "false", @@ -133334,7 +136579,7 @@ } }, { - "id": 6704, + "id": 6703, "properties": { "down": "true", "east": "false", @@ -133345,7 +136590,7 @@ } }, { - "id": 6705, + "id": 6704, "properties": { "down": "true", "east": "false", @@ -133356,7 +136601,7 @@ } }, { - "id": 6706, + "id": 6705, "properties": { "down": "true", "east": "false", @@ -133367,7 +136612,7 @@ } }, { - "id": 6707, + "id": 6706, "properties": { "down": "true", "east": "false", @@ -133378,7 +136623,7 @@ } }, { - "id": 6708, + "id": 6707, "properties": { "down": "true", "east": "false", @@ -133389,7 +136634,7 @@ } }, { - "id": 6709, + "id": 6708, "properties": { "down": "true", "east": "false", @@ -133400,7 +136645,7 @@ } }, { - "id": 6710, + "id": 6709, "properties": { "down": "false", "east": "true", @@ -133411,7 +136656,7 @@ } }, { - "id": 6711, + "id": 6710, "properties": { "down": "false", "east": "true", @@ -133422,7 +136667,7 @@ } }, { - "id": 6712, + "id": 6711, "properties": { "down": "false", "east": "true", @@ -133433,7 +136678,7 @@ } }, { - "id": 6713, + "id": 6712, "properties": { "down": "false", "east": "true", @@ -133444,7 +136689,7 @@ } }, { - "id": 6714, + "id": 6713, "properties": { "down": "false", "east": "true", @@ -133455,7 +136700,7 @@ } }, { - "id": 6715, + "id": 6714, "properties": { "down": "false", "east": "true", @@ -133466,7 +136711,7 @@ } }, { - "id": 6716, + "id": 6715, "properties": { "down": "false", "east": "true", @@ -133477,7 +136722,7 @@ } }, { - "id": 6717, + "id": 6716, "properties": { "down": "false", "east": "true", @@ -133488,7 +136733,7 @@ } }, { - "id": 6718, + "id": 6717, "properties": { "down": "false", "east": "true", @@ -133499,7 +136744,7 @@ } }, { - "id": 6719, + "id": 6718, "properties": { "down": "false", "east": "true", @@ -133510,7 +136755,7 @@ } }, { - "id": 6720, + "id": 6719, "properties": { "down": "false", "east": "true", @@ -133521,7 +136766,7 @@ } }, { - "id": 6721, + "id": 6720, "properties": { "down": "false", "east": "true", @@ -133532,7 +136777,7 @@ } }, { - "id": 6722, + "id": 6721, "properties": { "down": "false", "east": "true", @@ -133543,7 +136788,7 @@ } }, { - "id": 6723, + "id": 6722, "properties": { "down": "false", "east": "true", @@ -133554,7 +136799,7 @@ } }, { - "id": 6724, + "id": 6723, "properties": { "down": "false", "east": "true", @@ -133565,7 +136810,7 @@ } }, { - "id": 6725, + "id": 6724, "properties": { "down": "false", "east": "true", @@ -133576,7 +136821,7 @@ } }, { - "id": 6726, + "id": 6725, "properties": { "down": "false", "east": "false", @@ -133587,7 +136832,7 @@ } }, { - "id": 6727, + "id": 6726, "properties": { "down": "false", "east": "false", @@ -133598,7 +136843,7 @@ } }, { - "id": 6728, + "id": 6727, "properties": { "down": "false", "east": "false", @@ -133609,7 +136854,7 @@ } }, { - "id": 6729, + "id": 6728, "properties": { "down": "false", "east": "false", @@ -133620,7 +136865,7 @@ } }, { - "id": 6730, + "id": 6729, "properties": { "down": "false", "east": "false", @@ -133631,7 +136876,7 @@ } }, { - "id": 6731, + "id": 6730, "properties": { "down": "false", "east": "false", @@ -133642,7 +136887,7 @@ } }, { - "id": 6732, + "id": 6731, "properties": { "down": "false", "east": "false", @@ -133653,7 +136898,7 @@ } }, { - "id": 6733, + "id": 6732, "properties": { "down": "false", "east": "false", @@ -133664,7 +136909,7 @@ } }, { - "id": 6734, + "id": 6733, "properties": { "down": "false", "east": "false", @@ -133675,7 +136920,7 @@ } }, { - "id": 6735, + "id": 6734, "properties": { "down": "false", "east": "false", @@ -133686,7 +136931,7 @@ } }, { - "id": 6736, + "id": 6735, "properties": { "down": "false", "east": "false", @@ -133697,7 +136942,7 @@ } }, { - "id": 6737, + "id": 6736, "properties": { "down": "false", "east": "false", @@ -133708,7 +136953,7 @@ } }, { - "id": 6738, + "id": 6737, "properties": { "down": "false", "east": "false", @@ -133719,7 +136964,7 @@ } }, { - "id": 6739, + "id": 6738, "properties": { "down": "false", "east": "false", @@ -133730,7 +136975,7 @@ } }, { - "id": 6740, + "id": 6739, "properties": { "down": "false", "east": "false", @@ -133741,7 +136986,7 @@ } }, { - "id": 6741, + "id": 6740, "properties": { "down": "false", "east": "false", @@ -138554,13 +141799,13 @@ "states": [ { "default": true, - "id": 5865, + "id": 5864, "properties": { "axis": "x" } }, { - "id": 5866, + "id": 5865, "properties": { "axis": "z" } @@ -138640,7 +141885,7 @@ "states": [ { "default": true, - "id": 5850 + "id": 5849 } ] }, @@ -151413,7 +154658,7 @@ }, "states": [ { - "id": 5962, + "id": 5961, "properties": { "facing": "north", "half": "top", @@ -151423,7 +154668,7 @@ } }, { - "id": 5963, + "id": 5962, "properties": { "facing": "north", "half": "top", @@ -151433,7 +154678,7 @@ } }, { - "id": 5964, + "id": 5963, "properties": { "facing": "north", "half": "top", @@ -151443,7 +154688,7 @@ } }, { - "id": 5965, + "id": 5964, "properties": { "facing": "north", "half": "top", @@ -151453,7 +154698,7 @@ } }, { - "id": 5966, + "id": 5965, "properties": { "facing": "north", "half": "top", @@ -151463,7 +154708,7 @@ } }, { - "id": 5967, + "id": 5966, "properties": { "facing": "north", "half": "top", @@ -151473,7 +154718,7 @@ } }, { - "id": 5968, + "id": 5967, "properties": { "facing": "north", "half": "top", @@ -151483,7 +154728,7 @@ } }, { - "id": 5969, + "id": 5968, "properties": { "facing": "north", "half": "top", @@ -151493,7 +154738,7 @@ } }, { - "id": 5970, + "id": 5969, "properties": { "facing": "north", "half": "bottom", @@ -151503,7 +154748,7 @@ } }, { - "id": 5971, + "id": 5970, "properties": { "facing": "north", "half": "bottom", @@ -151513,7 +154758,7 @@ } }, { - "id": 5972, + "id": 5971, "properties": { "facing": "north", "half": "bottom", @@ -151523,7 +154768,7 @@ } }, { - "id": 5973, + "id": 5972, "properties": { "facing": "north", "half": "bottom", @@ -151533,7 +154778,7 @@ } }, { - "id": 5974, + "id": 5973, "properties": { "facing": "north", "half": "bottom", @@ -151543,7 +154788,7 @@ } }, { - "id": 5975, + "id": 5974, "properties": { "facing": "north", "half": "bottom", @@ -151553,7 +154798,7 @@ } }, { - "id": 5976, + "id": 5975, "properties": { "facing": "north", "half": "bottom", @@ -151564,7 +154809,7 @@ }, { "default": true, - "id": 5977, + "id": 5976, "properties": { "facing": "north", "half": "bottom", @@ -151574,7 +154819,7 @@ } }, { - "id": 5978, + "id": 5977, "properties": { "facing": "south", "half": "top", @@ -151584,7 +154829,7 @@ } }, { - "id": 5979, + "id": 5978, "properties": { "facing": "south", "half": "top", @@ -151594,7 +154839,7 @@ } }, { - "id": 5980, + "id": 5979, "properties": { "facing": "south", "half": "top", @@ -151604,7 +154849,7 @@ } }, { - "id": 5981, + "id": 5980, "properties": { "facing": "south", "half": "top", @@ -151614,7 +154859,7 @@ } }, { - "id": 5982, + "id": 5981, "properties": { "facing": "south", "half": "top", @@ -151624,7 +154869,7 @@ } }, { - "id": 5983, + "id": 5982, "properties": { "facing": "south", "half": "top", @@ -151634,7 +154879,7 @@ } }, { - "id": 5984, + "id": 5983, "properties": { "facing": "south", "half": "top", @@ -151644,7 +154889,7 @@ } }, { - "id": 5985, + "id": 5984, "properties": { "facing": "south", "half": "top", @@ -151654,7 +154899,7 @@ } }, { - "id": 5986, + "id": 5985, "properties": { "facing": "south", "half": "bottom", @@ -151664,7 +154909,7 @@ } }, { - "id": 5987, + "id": 5986, "properties": { "facing": "south", "half": "bottom", @@ -151674,7 +154919,7 @@ } }, { - "id": 5988, + "id": 5987, "properties": { "facing": "south", "half": "bottom", @@ -151684,7 +154929,7 @@ } }, { - "id": 5989, + "id": 5988, "properties": { "facing": "south", "half": "bottom", @@ -151694,7 +154939,7 @@ } }, { - "id": 5990, + "id": 5989, "properties": { "facing": "south", "half": "bottom", @@ -151704,7 +154949,7 @@ } }, { - "id": 5991, + "id": 5990, "properties": { "facing": "south", "half": "bottom", @@ -151714,7 +154959,7 @@ } }, { - "id": 5992, + "id": 5991, "properties": { "facing": "south", "half": "bottom", @@ -151724,7 +154969,7 @@ } }, { - "id": 5993, + "id": 5992, "properties": { "facing": "south", "half": "bottom", @@ -151734,7 +154979,7 @@ } }, { - "id": 5994, + "id": 5993, "properties": { "facing": "west", "half": "top", @@ -151744,7 +154989,7 @@ } }, { - "id": 5995, + "id": 5994, "properties": { "facing": "west", "half": "top", @@ -151754,7 +154999,7 @@ } }, { - "id": 5996, + "id": 5995, "properties": { "facing": "west", "half": "top", @@ -151764,7 +155009,7 @@ } }, { - "id": 5997, + "id": 5996, "properties": { "facing": "west", "half": "top", @@ -151774,7 +155019,7 @@ } }, { - "id": 5998, + "id": 5997, "properties": { "facing": "west", "half": "top", @@ -151784,7 +155029,7 @@ } }, { - "id": 5999, + "id": 5998, "properties": { "facing": "west", "half": "top", @@ -151794,7 +155039,7 @@ } }, { - "id": 6000, + "id": 5999, "properties": { "facing": "west", "half": "top", @@ -151804,7 +155049,7 @@ } }, { - "id": 6001, + "id": 6000, "properties": { "facing": "west", "half": "top", @@ -151814,7 +155059,7 @@ } }, { - "id": 6002, + "id": 6001, "properties": { "facing": "west", "half": "bottom", @@ -151824,7 +155069,7 @@ } }, { - "id": 6003, + "id": 6002, "properties": { "facing": "west", "half": "bottom", @@ -151834,7 +155079,7 @@ } }, { - "id": 6004, + "id": 6003, "properties": { "facing": "west", "half": "bottom", @@ -151844,7 +155089,7 @@ } }, { - "id": 6005, + "id": 6004, "properties": { "facing": "west", "half": "bottom", @@ -151854,7 +155099,7 @@ } }, { - "id": 6006, + "id": 6005, "properties": { "facing": "west", "half": "bottom", @@ -151864,7 +155109,7 @@ } }, { - "id": 6007, + "id": 6006, "properties": { "facing": "west", "half": "bottom", @@ -151874,7 +155119,7 @@ } }, { - "id": 6008, + "id": 6007, "properties": { "facing": "west", "half": "bottom", @@ -151884,7 +155129,7 @@ } }, { - "id": 6009, + "id": 6008, "properties": { "facing": "west", "half": "bottom", @@ -151894,7 +155139,7 @@ } }, { - "id": 6010, + "id": 6009, "properties": { "facing": "east", "half": "top", @@ -151904,7 +155149,7 @@ } }, { - "id": 6011, + "id": 6010, "properties": { "facing": "east", "half": "top", @@ -151914,7 +155159,7 @@ } }, { - "id": 6012, + "id": 6011, "properties": { "facing": "east", "half": "top", @@ -151924,7 +155169,7 @@ } }, { - "id": 6013, + "id": 6012, "properties": { "facing": "east", "half": "top", @@ -151934,7 +155179,7 @@ } }, { - "id": 6014, + "id": 6013, "properties": { "facing": "east", "half": "top", @@ -151944,7 +155189,7 @@ } }, { - "id": 6015, + "id": 6014, "properties": { "facing": "east", "half": "top", @@ -151954,7 +155199,7 @@ } }, { - "id": 6016, + "id": 6015, "properties": { "facing": "east", "half": "top", @@ -151964,7 +155209,7 @@ } }, { - "id": 6017, + "id": 6016, "properties": { "facing": "east", "half": "top", @@ -151974,7 +155219,7 @@ } }, { - "id": 6018, + "id": 6017, "properties": { "facing": "east", "half": "bottom", @@ -151984,7 +155229,7 @@ } }, { - "id": 6019, + "id": 6018, "properties": { "facing": "east", "half": "bottom", @@ -151994,7 +155239,7 @@ } }, { - "id": 6020, + "id": 6019, "properties": { "facing": "east", "half": "bottom", @@ -152004,7 +155249,7 @@ } }, { - "id": 6021, + "id": 6020, "properties": { "facing": "east", "half": "bottom", @@ -152014,7 +155259,7 @@ } }, { - "id": 6022, + "id": 6021, "properties": { "facing": "east", "half": "bottom", @@ -152024,7 +155269,7 @@ } }, { - "id": 6023, + "id": 6022, "properties": { "facing": "east", "half": "bottom", @@ -152034,7 +155279,7 @@ } }, { - "id": 6024, + "id": 6023, "properties": { "facing": "east", "half": "bottom", @@ -152044,7 +155289,7 @@ } }, { - "id": 6025, + "id": 6024, "properties": { "facing": "east", "half": "bottom", @@ -152352,20 +155597,20 @@ }, "states": [ { - "id": 24249, + "id": 26563, "properties": { "axis": "x" } }, { "default": true, - "id": 24250, + "id": 26564, "properties": { "axis": "y" } }, { - "id": 24251, + "id": 26565, "properties": { "axis": "z" } @@ -152930,7 +156175,7 @@ "states": [ { "default": true, - "id": 5947 + "id": 5946 } ] }, @@ -153350,81 +156595,66 @@ } ] }, - "minecraft:oxidized_copper": { + "minecraft:oxidized_chiseled_copper": { "states": [ { "default": true, - "id": 21704 + "id": 22948 } ] }, - "minecraft:oxidized_cut_copper": { + "minecraft:oxidized_copper": { "states": [ { "default": true, - "id": 21710 + "id": 22941 } ] }, - "minecraft:oxidized_cut_copper_slab": { + "minecraft:oxidized_copper_bulb": { "properties": { - "type": [ - "top", - "bottom", - "double" + "lit": [ + "true", + "false" ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 22034, + "id": 24704, "properties": { - "type": "top", - "waterlogged": "true" + "lit": "true", + "powered": "true" } }, { - "id": 22035, + "id": 24705, "properties": { - "type": "top", - "waterlogged": "false" + "lit": "true", + "powered": "false" } }, { - "id": 22036, + "id": 24706, "properties": { - "type": "bottom", - "waterlogged": "true" + "lit": "false", + "powered": "true" } }, { "default": true, - "id": 22037, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22038, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22039, + "id": 24707, "properties": { - "type": "double", - "waterlogged": "false" + "lit": "false", + "powered": "false" } } ] }, - "minecraft:oxidized_cut_copper_stairs": { + "minecraft:oxidized_copper_door": { "properties": { "facing": [ "north", @@ -153433,4112 +156663,4695 @@ "east" ], "half": [ - "top", - "bottom" + "upper", + "lower" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "hinge": [ + "left", + "right" ], - "waterlogged": [ + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { - "id": 21714, + "id": 23780, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21715, + "id": 23781, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21716, + "id": 23782, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21717, + "id": 23783, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21718, + "id": 23784, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21719, + "id": 23785, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21720, + "id": 23786, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21721, + "id": 23787, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21722, + "id": 23788, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21723, + "id": 23789, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21724, + "id": 23790, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { "default": true, - "id": 21725, + "id": 23791, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21726, + "id": 23792, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21727, + "id": 23793, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21728, + "id": 23794, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21729, + "id": 23795, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21730, + "id": 23796, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21731, + "id": 23797, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21732, + "id": 23798, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21733, + "id": 23799, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21734, + "id": 23800, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21735, + "id": 23801, "properties": { "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21736, + "id": 23802, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21737, + "id": 23803, "properties": { "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21738, + "id": 23804, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21739, + "id": 23805, "properties": { "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21740, + "id": 23806, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21741, + "id": 23807, "properties": { "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21742, + "id": 23808, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21743, + "id": 23809, "properties": { "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21744, + "id": 23810, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21745, + "id": 23811, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21746, + "id": 23812, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21747, + "id": 23813, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21748, + "id": 23814, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21749, + "id": 23815, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21750, + "id": 23816, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21751, + "id": 23817, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21752, + "id": 23818, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21753, + "id": 23819, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21754, + "id": 23820, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21755, + "id": 23821, "properties": { "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21756, + "id": 23822, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21757, + "id": 23823, "properties": { "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21758, + "id": 23824, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21759, + "id": 23825, "properties": { "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21760, + "id": 23826, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21761, + "id": 23827, "properties": { "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21762, + "id": 23828, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21763, + "id": 23829, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21764, + "id": 23830, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21765, + "id": 23831, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21766, + "id": 23832, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21767, + "id": 23833, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21768, + "id": 23834, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21769, + "id": 23835, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 21770, + "id": 23836, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 21771, + "id": 23837, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 21772, + "id": 23838, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 21773, + "id": 23839, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 21774, + "id": 23840, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 21775, + "id": 23841, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 21776, + "id": 23842, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 21777, + "id": 23843, "properties": { "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24682, + "properties": { + "waterlogged": "true" } }, { - "id": 21778, + "default": true, + "id": 24683, "properties": { - "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24292, + "properties": { + "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 21779, + "id": 24293, "properties": { - "facing": "east", + "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 21780, + "id": 24294, "properties": { - "facing": "east", + "facing": "north", "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 21781, + "id": 24295, "properties": { - "facing": "east", + "facing": "north", "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 21782, + "id": 24296, "properties": { - "facing": "east", + "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 21783, + "id": 24297, "properties": { - "facing": "east", + "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 21784, + "id": 24298, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 21785, + "id": 24299, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 21786, + "id": 24300, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 21787, + "id": 24301, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 21788, + "id": 24302, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 21789, + "id": 24303, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 21790, + "id": 24304, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 21791, + "id": 24305, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 21792, + "id": 24306, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 21793, + "default": true, + "id": 24307, "properties": { - "facing": "east", + "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:packed_ice": { - "states": [ - { - "default": true, - "id": 10746 - } - ] - }, - "minecraft:packed_mud": { - "states": [ - { - "default": true, - "id": 6542 - } - ] - }, - "minecraft:pearlescent_froglight": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 24255, + "id": 24308, "properties": { - "axis": "x" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "default": true, - "id": 24256, + "id": 24309, "properties": { - "axis": "y" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 24257, + "id": 24310, "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:peony": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, { - "id": 10753, + "id": 24311, "properties": { - "half": "upper" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "default": true, - "id": 10754, + "id": 24312, "properties": { - "half": "lower" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } - } - ] - }, - "minecraft:petrified_oak_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11246, + "id": 24313, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 11247, + "id": 24315, "properties": { - "type": "top", + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 11248, + "id": 24316, "properties": { - "type": "bottom", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 11249, + "id": 24317, "properties": { - "type": "bottom", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 11250, + "id": 24318, "properties": { - "type": "double", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 11251, + "id": 24319, "properties": { - "type": "double", + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:piglin_head": { - "properties": { - "powered": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "id": 9067, + "id": 24320, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", - "rotation": "0" + "waterlogged": "true" } }, { - "id": 9068, + "id": 24321, "properties": { + "facing": "south", + "half": "bottom", + "open": "false", "powered": "true", - "rotation": "1" + "waterlogged": "false" } }, { - "id": 9069, + "id": 24322, "properties": { - "powered": "true", - "rotation": "2" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9070, + "id": 24323, "properties": { - "powered": "true", - "rotation": "3" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9071, + "id": 24324, "properties": { + "facing": "west", + "half": "top", + "open": "true", "powered": "true", - "rotation": "4" + "waterlogged": "true" } }, { - "id": 9072, + "id": 24325, "properties": { + "facing": "west", + "half": "top", + "open": "true", "powered": "true", - "rotation": "5" + "waterlogged": "false" } }, { - "id": 9073, + "id": 24326, "properties": { - "powered": "true", - "rotation": "6" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9074, + "id": 24327, "properties": { - "powered": "true", - "rotation": "7" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9075, + "id": 24328, "properties": { + "facing": "west", + "half": "top", + "open": "false", "powered": "true", - "rotation": "8" + "waterlogged": "true" } }, { - "id": 9076, + "id": 24329, "properties": { + "facing": "west", + "half": "top", + "open": "false", "powered": "true", - "rotation": "9" + "waterlogged": "false" } }, { - "id": 9077, + "id": 24330, "properties": { - "powered": "true", - "rotation": "10" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 9078, + "id": 24331, "properties": { - "powered": "true", - "rotation": "11" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 9079, + "id": 24332, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", "powered": "true", - "rotation": "12" + "waterlogged": "true" } }, { - "id": 9080, + "id": 24333, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", "powered": "true", - "rotation": "13" + "waterlogged": "false" } }, { - "id": 9081, + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24336, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", - "rotation": "14" + "waterlogged": "true" } }, { - "id": 9082, + "id": 24337, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "true", - "rotation": "15" + "waterlogged": "false" } }, { - "default": true, - "id": 9083, + "id": 24338, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", - "rotation": "0" + "waterlogged": "true" } }, { - "id": 9084, + "id": 24339, "properties": { + "facing": "west", + "half": "bottom", + "open": "false", "powered": "false", - "rotation": "1" + "waterlogged": "false" } }, { - "id": 9085, + "id": 24340, "properties": { - "powered": "false", - "rotation": "2" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9086, + "id": 24341, "properties": { - "powered": "false", - "rotation": "3" + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9087, + "id": 24342, "properties": { + "facing": "east", + "half": "top", + "open": "true", "powered": "false", - "rotation": "4" + "waterlogged": "true" } }, { - "id": 9088, + "id": 24343, "properties": { + "facing": "east", + "half": "top", + "open": "true", "powered": "false", - "rotation": "5" + "waterlogged": "false" } }, { - "id": 9089, + "id": 24344, "properties": { - "powered": "false", - "rotation": "6" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9090, + "id": 24345, "properties": { - "powered": "false", - "rotation": "7" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9091, + "id": 24346, "properties": { + "facing": "east", + "half": "top", + "open": "false", "powered": "false", - "rotation": "8" + "waterlogged": "true" } }, { - "id": 9092, + "id": 24347, "properties": { + "facing": "east", + "half": "top", + "open": "false", "powered": "false", - "rotation": "9" + "waterlogged": "false" } }, { - "id": 9093, + "id": 24348, "properties": { - "powered": "false", - "rotation": "10" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 9094, + "id": 24349, "properties": { - "powered": "false", - "rotation": "11" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 9095, + "id": 24350, "properties": { + "facing": "east", + "half": "bottom", + "open": "true", "powered": "false", - "rotation": "12" + "waterlogged": "true" } }, { - "id": 9096, + "id": 24351, "properties": { + "facing": "east", + "half": "bottom", + "open": "true", "powered": "false", - "rotation": "13" + "waterlogged": "false" } }, { - "id": 9097, + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24354, "properties": { + "facing": "east", + "half": "bottom", + "open": "false", "powered": "false", - "rotation": "14" + "waterlogged": "true" } }, { - "id": 9098, + "id": 24355, "properties": { + "facing": "east", + "half": "bottom", + "open": "false", "powered": "false", - "rotation": "15" + "waterlogged": "false" } } ] }, - "minecraft:piglin_wall_head": { + "minecraft:oxidized_cut_copper": { + "states": [ + { + "default": true, + "id": 22944 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "type": [ + "top", + "bottom", + "double" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 9099, - "properties": { - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 9100, - "properties": { - "facing": "north", - "powered": "false" - } - }, - { - "id": 9101, + "id": 23276, "properties": { - "facing": "south", - "powered": "true" + "type": "top", + "waterlogged": "true" } }, { - "id": 9102, + "id": 23277, "properties": { - "facing": "south", - "powered": "false" + "type": "top", + "waterlogged": "false" } }, { - "id": 9103, + "id": 23278, "properties": { - "facing": "west", - "powered": "true" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 9104, + "default": true, + "id": 23279, "properties": { - "facing": "west", - "powered": "false" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 9105, + "id": 23280, "properties": { - "facing": "east", - "powered": "true" + "type": "double", + "waterlogged": "true" } }, { - "id": 9106, + "id": 23281, "properties": { - "facing": "east", - "powered": "false" + "type": "double", + "waterlogged": "false" } } ] }, - "minecraft:pink_banner": { + "minecraft:oxidized_cut_copper_stairs": { "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "default": true, - "id": 10855, + "id": 22956, "properties": { - "rotation": "0" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 10856, + "id": 22957, "properties": { - "rotation": "1" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 10857, + "id": 22958, "properties": { - "rotation": "2" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 10858, + "id": 22959, "properties": { - "rotation": "3" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 10859, + "id": 22960, "properties": { - "rotation": "4" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 10860, + "id": 22961, "properties": { - "rotation": "5" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 10861, + "id": 22962, "properties": { - "rotation": "6" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 10862, + "id": 22963, "properties": { - "rotation": "7" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 10863, + "id": 22964, "properties": { - "rotation": "8" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 10864, + "id": 22965, "properties": { - "rotation": "9" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 10865, + "id": 22966, "properties": { - "rotation": "10" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 10866, + "default": true, + "id": 22967, "properties": { - "rotation": "11" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 10867, + "id": 22968, "properties": { - "rotation": "12" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 10868, + "id": 22969, "properties": { - "rotation": "13" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 10869, + "id": 22970, "properties": { - "rotation": "14" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 10870, + "id": 22971, "properties": { - "rotation": "15" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } - } - ] - }, - "minecraft:pink_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + }, { - "id": 1784, + "id": 22972, "properties": { "facing": "north", - "occupied": "true", - "part": "head" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 1785, + "id": 22973, "properties": { "facing": "north", - "occupied": "true", - "part": "foot" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 1786, + "id": 22974, "properties": { "facing": "north", - "occupied": "false", - "part": "head" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "default": true, - "id": 1787, + "id": 22975, "properties": { "facing": "north", - "occupied": "false", - "part": "foot" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 1788, + "id": 22976, "properties": { "facing": "south", - "occupied": "true", - "part": "head" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 1789, + "id": 22977, "properties": { "facing": "south", - "occupied": "true", - "part": "foot" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 1790, + "id": 22978, "properties": { "facing": "south", - "occupied": "false", - "part": "head" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 1791, + "id": 22979, "properties": { "facing": "south", - "occupied": "false", - "part": "foot" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 1792, + "id": 22980, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 1793, + "id": 22981, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 1794, + "id": 22982, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 1795, + "id": 22983, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 1796, + "id": 22984, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 1797, + "id": 22985, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 1798, + "id": 22986, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 1799, + "id": 22987, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } - } - ] - }, - "minecraft:pink_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20837, + "id": 22988, "properties": { - "candles": "1", - "lit": "true", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 20838, + "id": 22989, "properties": { - "candles": "1", - "lit": "true", + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 20839, + "id": 22990, "properties": { - "candles": "1", - "lit": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" } }, { - "default": true, - "id": 20840, + "id": 22991, "properties": { - "candles": "1", - "lit": "false", + "facing": "south", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 20841, + "id": 22992, "properties": { - "candles": "2", - "lit": "true", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 20842, + "id": 22993, "properties": { - "candles": "2", - "lit": "true", + "facing": "south", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 20843, + "id": 22994, "properties": { - "candles": "2", - "lit": "false", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 20844, + "id": 22995, "properties": { - "candles": "2", - "lit": "false", + "facing": "south", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 20845, + "id": 22996, "properties": { - "candles": "3", - "lit": "true", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, { - "id": 20846, + "id": 22997, "properties": { - "candles": "3", - "lit": "true", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { - "id": 20847, + "id": 22998, "properties": { - "candles": "3", - "lit": "false", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 20848, + "id": 22999, "properties": { - "candles": "3", - "lit": "false", + "facing": "west", + "half": "top", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 20849, + "id": 23000, "properties": { - "candles": "4", - "lit": "true", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 20850, + "id": 23001, "properties": { - "candles": "4", - "lit": "true", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 20851, + "id": 23002, "properties": { - "candles": "4", - "lit": "false", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 20852, + "id": 23003, "properties": { - "candles": "4", - "lit": "false", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } - } - ] - }, - "minecraft:pink_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21011, - "properties": { - "lit": "true" - } }, { - "default": true, - "id": 21012, + "id": 23004, "properties": { - "lit": "false" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } - } - ] - }, - "minecraft:pink_carpet": { - "states": [ - { - "default": true, - "id": 10734 - } - ] - }, - "minecraft:pink_concrete": { - "states": [ - { - "default": true, - "id": 12734 - } - ] - }, - "minecraft:pink_concrete_powder": { - "states": [ - { - "default": true, - "id": 12750 - } - ] - }, - "minecraft:pink_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 12688, + "id": 23005, "properties": { - "facing": "north" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12689, + "id": 23006, "properties": { - "facing": "south" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12690, + "id": 23007, "properties": { - "facing": "west" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12691, + "id": 23008, "properties": { - "facing": "east" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } - } - ] - }, - "minecraft:pink_petals": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "flower_amount": [ - "1", - "2", - "3", - "4" - ] - }, - "states": [ + }, { - "default": true, - "id": 22513, + "id": 23009, "properties": { - "facing": "north", - "flower_amount": "1" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 22514, + "id": 23010, "properties": { - "facing": "north", - "flower_amount": "2" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 22515, + "id": 23011, "properties": { - "facing": "north", - "flower_amount": "3" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 22516, + "id": 23012, "properties": { - "facing": "north", - "flower_amount": "4" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 22517, + "id": 23013, "properties": { - "facing": "south", - "flower_amount": "1" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 22518, + "id": 23014, "properties": { - "facing": "south", - "flower_amount": "2" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 22519, + "id": 23015, "properties": { - "facing": "south", - "flower_amount": "3" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 22520, + "id": 23016, "properties": { - "facing": "south", - "flower_amount": "4" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 22521, + "id": 23017, "properties": { - "facing": "west", - "flower_amount": "1" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 22522, + "id": 23018, "properties": { - "facing": "west", - "flower_amount": "2" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 22523, + "id": 23019, "properties": { - "facing": "west", - "flower_amount": "3" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 22524, + "id": 23020, "properties": { - "facing": "west", - "flower_amount": "4" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 22525, + "id": 23021, "properties": { "facing": "east", - "flower_amount": "1" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 22526, + "id": 23022, "properties": { "facing": "east", - "flower_amount": "2" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 22527, + "id": 23023, "properties": { "facing": "east", - "flower_amount": "3" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 22528, + "id": 23024, "properties": { "facing": "east", - "flower_amount": "4" + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } - } - ] - }, - "minecraft:pink_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12604, + "id": 23025, "properties": { - "facing": "north" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 12605, + "id": 23026, "properties": { - "facing": "east" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 12606, + "id": 23027, "properties": { - "facing": "south" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 12607, + "id": 23028, "properties": { - "facing": "west" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "default": true, - "id": 12608, + "id": 23029, "properties": { - "facing": "up" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 12609, + "id": 23030, "properties": { - "facing": "down" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } - } - ] - }, - "minecraft:pink_stained_glass": { - "states": [ - { - "default": true, - "id": 5952 - } - ] - }, - "minecraft:pink_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9564, + "id": 23031, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 9565, + "id": 23032, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 9566, + "id": 23033, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 9567, + "id": 23034, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 9568, + "id": 23035, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:packed_ice": { + "states": [ { - "id": 9569, + "default": true, + "id": 10746 + } + ] + }, + "minecraft:packed_mud": { + "states": [ + { + "default": true, + "id": 6541 + } + ] + }, + "minecraft:pearlescent_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26569, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "axis": "x" } }, { - "id": 9570, + "default": true, + "id": 26570, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 9571, + "id": 26571, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "axis": "z" } - }, + } + ] + }, + "minecraft:peony": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { - "id": 9572, + "id": 10753, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "half": "upper" } }, { - "id": 9573, + "default": true, + "id": 10754, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "half": "lower" } - }, + } + ] + }, + "minecraft:petrified_oak_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 9574, + "id": 11246, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "type": "top", + "waterlogged": "true" } }, { - "id": 9575, + "id": 11247, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "type": "top", + "waterlogged": "false" } }, { - "id": 9576, + "id": 11248, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 9577, + "default": true, + "id": 11249, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 9578, + "id": 11250, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "type": "double", + "waterlogged": "true" } }, { - "id": 9579, + "id": 11251, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:piglin_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { - "id": 9580, + "id": 9067, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "powered": "true", + "rotation": "0" } }, { - "id": 9581, + "id": 9068, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "powered": "true", + "rotation": "1" } }, { - "id": 9582, + "id": 9069, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "powered": "true", + "rotation": "2" } }, { - "id": 9583, + "id": 9070, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "powered": "true", + "rotation": "3" } }, { - "id": 9584, + "id": 9071, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "powered": "true", + "rotation": "4" } }, { - "id": 9585, + "id": 9072, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "powered": "true", + "rotation": "5" } }, { - "id": 9586, + "id": 9073, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "powered": "true", + "rotation": "6" } }, { - "id": 9587, + "id": 9074, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "powered": "true", + "rotation": "7" } }, { - "id": 9588, + "id": 9075, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "powered": "true", + "rotation": "8" } }, { - "id": 9589, + "id": 9076, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "powered": "true", + "rotation": "9" } }, { - "id": 9590, + "id": 9077, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "powered": "true", + "rotation": "10" } }, { - "id": 9591, + "id": 9078, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "powered": "true", + "rotation": "11" } }, { - "id": 9592, + "id": 9079, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "powered": "true", + "rotation": "12" } }, { - "id": 9593, + "id": 9080, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "powered": "true", + "rotation": "13" } }, { - "id": 9594, + "id": 9081, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "powered": "true", + "rotation": "14" } }, { - "default": true, - "id": 9595, + "id": 9082, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "powered": "true", + "rotation": "15" } - } - ] - }, - "minecraft:pink_terracotta": { - "states": [ - { - "default": true, - "id": 9362 - } - ] - }, - "minecraft:pink_tulip": { - "states": [ - { - "default": true, - "id": 2084 - } - ] - }, - "minecraft:pink_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { "default": true, - "id": 11039, + "id": 9083, "properties": { - "facing": "north" + "powered": "false", + "rotation": "0" } }, { - "id": 11040, + "id": 9084, "properties": { - "facing": "south" + "powered": "false", + "rotation": "1" } }, { - "id": 11041, + "id": 9085, "properties": { - "facing": "west" + "powered": "false", + "rotation": "2" } }, { - "id": 11042, + "id": 9086, "properties": { - "facing": "east" + "powered": "false", + "rotation": "3" } - } - ] - }, - "minecraft:pink_wool": { - "states": [ - { - "default": true, - "id": 2053 - } - ] - }, - "minecraft:piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 2011, + "id": 9087, "properties": { - "extended": "true", - "facing": "north" + "powered": "false", + "rotation": "4" } }, { - "id": 2012, + "id": 9088, "properties": { - "extended": "true", - "facing": "east" + "powered": "false", + "rotation": "5" } }, { - "id": 2013, + "id": 9089, "properties": { - "extended": "true", - "facing": "south" + "powered": "false", + "rotation": "6" } }, { - "id": 2014, + "id": 9090, "properties": { - "extended": "true", - "facing": "west" + "powered": "false", + "rotation": "7" } }, { - "id": 2015, + "id": 9091, "properties": { - "extended": "true", - "facing": "up" + "powered": "false", + "rotation": "8" } }, { - "id": 2016, + "id": 9092, "properties": { - "extended": "true", - "facing": "down" + "powered": "false", + "rotation": "9" } }, { - "default": true, - "id": 2017, + "id": 9093, "properties": { - "extended": "false", - "facing": "north" + "powered": "false", + "rotation": "10" } }, { - "id": 2018, + "id": 9094, "properties": { - "extended": "false", - "facing": "east" + "powered": "false", + "rotation": "11" } }, { - "id": 2019, + "id": 9095, "properties": { - "extended": "false", - "facing": "south" + "powered": "false", + "rotation": "12" } }, { - "id": 2020, + "id": 9096, "properties": { - "extended": "false", - "facing": "west" + "powered": "false", + "rotation": "13" } }, { - "id": 2021, + "id": 9097, "properties": { - "extended": "false", - "facing": "up" + "powered": "false", + "rotation": "14" } }, { - "id": 2022, + "id": 9098, "properties": { - "extended": "false", - "facing": "down" + "powered": "false", + "rotation": "15" } } ] }, - "minecraft:piston_head": { + "minecraft:piglin_wall_head": { "properties": { - "type": [ - "normal", - "sticky" - ], "facing": [ "north", - "east", "south", "west", - "up", - "down" + "east" ], - "short": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 2023, + "id": 9099, "properties": { - "type": "normal", "facing": "north", - "short": "true" + "powered": "true" } }, { - "id": 2024, + "default": true, + "id": 9100, "properties": { - "type": "sticky", "facing": "north", - "short": "true" + "powered": "false" } }, { - "default": true, - "id": 2025, + "id": 9101, "properties": { - "type": "normal", - "facing": "north", - "short": "false" + "facing": "south", + "powered": "true" } }, { - "id": 2026, + "id": 9102, "properties": { - "type": "sticky", - "facing": "north", - "short": "false" + "facing": "south", + "powered": "false" } }, { - "id": 2027, + "id": 9103, "properties": { - "type": "normal", - "facing": "east", - "short": "true" + "facing": "west", + "powered": "true" } }, { - "id": 2028, + "id": 9104, "properties": { - "type": "sticky", - "facing": "east", - "short": "true" + "facing": "west", + "powered": "false" } }, { - "id": 2029, + "id": 9105, "properties": { - "type": "normal", "facing": "east", - "short": "false" + "powered": "true" } }, { - "id": 2030, + "id": 9106, "properties": { - "type": "sticky", "facing": "east", - "short": "false" + "powered": "false" } - }, + } + ] + }, + "minecraft:pink_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { - "id": 2031, + "default": true, + "id": 10855, "properties": { - "type": "normal", - "facing": "south", - "short": "true" + "rotation": "0" } }, { - "id": 2032, + "id": 10856, "properties": { - "type": "sticky", - "facing": "south", - "short": "true" + "rotation": "1" } }, { - "id": 2033, + "id": 10857, "properties": { - "type": "normal", - "facing": "south", - "short": "false" + "rotation": "2" } }, { - "id": 2034, + "id": 10858, "properties": { - "type": "sticky", - "facing": "south", - "short": "false" + "rotation": "3" } }, { - "id": 2035, + "id": 10859, "properties": { - "type": "normal", - "facing": "west", - "short": "true" + "rotation": "4" } }, { - "id": 2036, + "id": 10860, "properties": { - "type": "sticky", - "facing": "west", - "short": "true" + "rotation": "5" } }, { - "id": 2037, + "id": 10861, "properties": { - "type": "normal", - "facing": "west", - "short": "false" + "rotation": "6" } }, { - "id": 2038, + "id": 10862, "properties": { - "type": "sticky", - "facing": "west", - "short": "false" + "rotation": "7" } }, { - "id": 2039, + "id": 10863, "properties": { - "type": "normal", - "facing": "up", - "short": "true" + "rotation": "8" } }, { - "id": 2040, + "id": 10864, "properties": { - "type": "sticky", - "facing": "up", - "short": "true" + "rotation": "9" } }, { - "id": 2041, + "id": 10865, "properties": { - "type": "normal", - "facing": "up", - "short": "false" + "rotation": "10" } }, { - "id": 2042, + "id": 10866, "properties": { - "type": "sticky", - "facing": "up", - "short": "false" + "rotation": "11" } }, { - "id": 2043, + "id": 10867, "properties": { - "type": "normal", - "facing": "down", - "short": "true" + "rotation": "12" } }, { - "id": 2044, + "id": 10868, "properties": { - "type": "sticky", - "facing": "down", - "short": "true" + "rotation": "13" } }, { - "id": 2045, + "id": 10869, "properties": { - "type": "normal", - "facing": "down", - "short": "false" + "rotation": "14" } }, { - "id": 2046, + "id": 10870, "properties": { - "type": "sticky", - "facing": "down", - "short": "false" + "rotation": "15" } } ] }, - "minecraft:pitcher_crop": { + "minecraft:pink_bed": { "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4" + "facing": [ + "north", + "south", + "west", + "east" ], - "half": [ - "upper", - "lower" + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" ] }, "states": [ { - "id": 12497, + "id": 1784, "properties": { - "age": "0", - "half": "upper" + "facing": "north", + "occupied": "true", + "part": "head" } }, { - "default": true, - "id": 12498, + "id": 1785, "properties": { - "age": "0", - "half": "lower" + "facing": "north", + "occupied": "true", + "part": "foot" } }, { - "id": 12499, + "id": 1786, "properties": { - "age": "1", - "half": "upper" + "facing": "north", + "occupied": "false", + "part": "head" } }, { - "id": 12500, + "default": true, + "id": 1787, "properties": { - "age": "1", - "half": "lower" + "facing": "north", + "occupied": "false", + "part": "foot" } }, { - "id": 12501, + "id": 1788, "properties": { - "age": "2", - "half": "upper" + "facing": "south", + "occupied": "true", + "part": "head" } }, { - "id": 12502, + "id": 1789, "properties": { - "age": "2", - "half": "lower" + "facing": "south", + "occupied": "true", + "part": "foot" } }, { - "id": 12503, + "id": 1790, "properties": { - "age": "3", - "half": "upper" + "facing": "south", + "occupied": "false", + "part": "head" } }, { - "id": 12504, + "id": 1791, "properties": { - "age": "3", - "half": "lower" + "facing": "south", + "occupied": "false", + "part": "foot" } }, { - "id": 12505, + "id": 1792, "properties": { - "age": "4", - "half": "upper" + "facing": "west", + "occupied": "true", + "part": "head" } }, { - "id": 12506, + "id": 1793, "properties": { - "age": "4", - "half": "lower" + "facing": "west", + "occupied": "true", + "part": "foot" } - } - ] - }, - "minecraft:pitcher_plant": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + }, { - "id": 12507, + "id": 1794, "properties": { - "half": "upper" + "facing": "west", + "occupied": "false", + "part": "head" } }, { - "default": true, - "id": 12508, + "id": 1795, "properties": { - "half": "lower" + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1796, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1797, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1798, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1799, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" } } ] }, - "minecraft:player_head": { + "minecraft:pink_candle": { "properties": { - "powered": [ - "true", - "false" - ], - "rotation": [ - "0", + "candles": [ "1", "2", "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "id": 8947, + "id": 20837, "properties": { - "powered": "true", - "rotation": "0" + "candles": "1", + "lit": "true", + "waterlogged": "true" } }, { - "id": 8948, + "id": 20838, "properties": { - "powered": "true", - "rotation": "1" + "candles": "1", + "lit": "true", + "waterlogged": "false" } }, { - "id": 8949, + "id": 20839, "properties": { - "powered": "true", - "rotation": "2" + "candles": "1", + "lit": "false", + "waterlogged": "true" } }, { - "id": 8950, + "default": true, + "id": 20840, "properties": { - "powered": "true", - "rotation": "3" + "candles": "1", + "lit": "false", + "waterlogged": "false" } }, { - "id": 8951, + "id": 20841, "properties": { - "powered": "true", - "rotation": "4" + "candles": "2", + "lit": "true", + "waterlogged": "true" } }, { - "id": 8952, + "id": 20842, "properties": { - "powered": "true", - "rotation": "5" + "candles": "2", + "lit": "true", + "waterlogged": "false" } }, { - "id": 8953, + "id": 20843, "properties": { - "powered": "true", - "rotation": "6" + "candles": "2", + "lit": "false", + "waterlogged": "true" } }, { - "id": 8954, + "id": 20844, "properties": { - "powered": "true", - "rotation": "7" + "candles": "2", + "lit": "false", + "waterlogged": "false" } }, { - "id": 8955, + "id": 20845, "properties": { - "powered": "true", - "rotation": "8" + "candles": "3", + "lit": "true", + "waterlogged": "true" } }, { - "id": 8956, + "id": 20846, "properties": { - "powered": "true", - "rotation": "9" + "candles": "3", + "lit": "true", + "waterlogged": "false" } }, { - "id": 8957, + "id": 20847, "properties": { - "powered": "true", - "rotation": "10" + "candles": "3", + "lit": "false", + "waterlogged": "true" } }, { - "id": 8958, + "id": 20848, "properties": { - "powered": "true", - "rotation": "11" + "candles": "3", + "lit": "false", + "waterlogged": "false" } }, { - "id": 8959, + "id": 20849, "properties": { - "powered": "true", - "rotation": "12" + "candles": "4", + "lit": "true", + "waterlogged": "true" } }, { - "id": 8960, + "id": 20850, "properties": { - "powered": "true", - "rotation": "13" + "candles": "4", + "lit": "true", + "waterlogged": "false" } }, { - "id": 8961, + "id": 20851, "properties": { - "powered": "true", - "rotation": "14" + "candles": "4", + "lit": "false", + "waterlogged": "true" } }, { - "id": 8962, + "id": 20852, "properties": { - "powered": "true", - "rotation": "15" + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21011, + "properties": { + "lit": "true" } }, { "default": true, - "id": 8963, + "id": 21012, "properties": { - "powered": "false", - "rotation": "0" + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "states": [ + { + "default": true, + "id": 10734 + } + ] + }, + "minecraft:pink_concrete": { + "states": [ + { + "default": true, + "id": 12734 + } + ] + }, + "minecraft:pink_concrete_powder": { + "states": [ + { + "default": true, + "id": 12750 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12688, + "properties": { + "facing": "north" } }, { - "id": 8964, + "id": 12689, "properties": { - "powered": "false", - "rotation": "1" + "facing": "south" } }, { - "id": 8965, + "id": 12690, "properties": { - "powered": "false", - "rotation": "2" + "facing": "west" } }, { - "id": 8966, + "id": 12691, "properties": { - "powered": "false", - "rotation": "3" + "facing": "east" + } + } + ] + }, + "minecraft:pink_petals": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 24827, + "properties": { + "facing": "north", + "flower_amount": "1" } }, { - "id": 8967, + "id": 24828, "properties": { - "powered": "false", - "rotation": "4" + "facing": "north", + "flower_amount": "2" } }, { - "id": 8968, + "id": 24829, "properties": { - "powered": "false", - "rotation": "5" + "facing": "north", + "flower_amount": "3" } }, { - "id": 8969, + "id": 24830, "properties": { - "powered": "false", - "rotation": "6" + "facing": "north", + "flower_amount": "4" } }, { - "id": 8970, + "id": 24831, "properties": { - "powered": "false", - "rotation": "7" + "facing": "south", + "flower_amount": "1" } }, { - "id": 8971, + "id": 24832, "properties": { - "powered": "false", - "rotation": "8" + "facing": "south", + "flower_amount": "2" } }, { - "id": 8972, + "id": 24833, "properties": { - "powered": "false", - "rotation": "9" + "facing": "south", + "flower_amount": "3" } }, { - "id": 8973, + "id": 24834, "properties": { - "powered": "false", - "rotation": "10" + "facing": "south", + "flower_amount": "4" } }, { - "id": 8974, + "id": 24835, "properties": { - "powered": "false", - "rotation": "11" + "facing": "west", + "flower_amount": "1" } }, { - "id": 8975, + "id": 24836, "properties": { - "powered": "false", - "rotation": "12" + "facing": "west", + "flower_amount": "2" } }, { - "id": 8976, + "id": 24837, "properties": { - "powered": "false", - "rotation": "13" + "facing": "west", + "flower_amount": "3" } }, { - "id": 8977, + "id": 24838, "properties": { - "powered": "false", - "rotation": "14" + "facing": "west", + "flower_amount": "4" } }, { - "id": 8978, + "id": 24839, "properties": { - "powered": "false", - "rotation": "15" + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 24840, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 24841, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 24842, + "properties": { + "facing": "east", + "flower_amount": "4" } } ] }, - "minecraft:player_wall_head": { + "minecraft:pink_shulker_box": { "properties": { "facing": [ "north", + "east", "south", "west", - "east" - ], - "powered": [ - "true", - "false" + "up", + "down" ] }, "states": [ { - "id": 8979, - "properties": { - "facing": "north", - "powered": "true" - } - }, - { - "default": true, - "id": 8980, - "properties": { - "facing": "north", - "powered": "false" - } - }, - { - "id": 8981, + "id": 12604, "properties": { - "facing": "south", - "powered": "true" + "facing": "north" } }, { - "id": 8982, + "id": 12605, "properties": { - "facing": "south", - "powered": "false" + "facing": "east" } }, { - "id": 8983, + "id": 12606, "properties": { - "facing": "west", - "powered": "true" + "facing": "south" } }, { - "id": 8984, + "id": 12607, "properties": { - "facing": "west", - "powered": "false" + "facing": "west" } }, { - "id": 8985, + "default": true, + "id": 12608, "properties": { - "facing": "east", - "powered": "true" + "facing": "up" } }, { - "id": 8986, + "id": 12609, "properties": { - "facing": "east", - "powered": "false" + "facing": "down" } } ] }, - "minecraft:podzol": { - "properties": { - "snowy": [ - "true", - "false" - ] - }, + "minecraft:pink_stained_glass": { "states": [ - { - "id": 12, - "properties": { - "snowy": "true" - } - }, { "default": true, - "id": 13, - "properties": { - "snowy": "false" - } + "id": 5951 } ] }, - "minecraft:pointed_dripstone": { + "minecraft:pink_stained_glass_pane": { "properties": { - "thickness": [ - "tip_merge", - "tip", - "frustum", - "middle", - "base" + "east": [ + "true", + "false" ], - "vertical_direction": [ - "up", - "down" + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "true", + "false" ] }, "states": [ { - "id": 22434, + "id": 9564, "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 22435, + "id": 9565, "properties": { - "thickness": "tip_merge", - "vertical_direction": "up", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 22436, + "id": 9566, "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 22437, + "id": 9567, "properties": { - "thickness": "tip_merge", - "vertical_direction": "down", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 22438, + "id": 9568, "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "default": true, - "id": 22439, + "id": 9569, "properties": { - "thickness": "tip", - "vertical_direction": "up", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 22440, + "id": 9570, "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "true" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 22441, + "id": 9571, "properties": { - "thickness": "tip", - "vertical_direction": "down", - "waterlogged": "false" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 22442, + "id": 9572, "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 22443, + "id": 9573, "properties": { - "thickness": "frustum", - "vertical_direction": "up", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 22444, + "id": 9574, "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 22445, + "id": 9575, "properties": { - "thickness": "frustum", - "vertical_direction": "down", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 22446, + "id": 9576, "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 22447, + "id": 9577, "properties": { - "thickness": "middle", - "vertical_direction": "up", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 22448, + "id": 9578, "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "true" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 22449, + "id": 9579, "properties": { - "thickness": "middle", - "vertical_direction": "down", - "waterlogged": "false" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 22450, + "id": 9580, "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 22451, + "id": 9581, "properties": { - "thickness": "base", - "vertical_direction": "up", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 22452, + "id": 9582, "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 22453, - "properties": { - "thickness": "base", - "vertical_direction": "down", - "waterlogged": "false" - } - } - ] - }, - "minecraft:polished_andesite": { - "states": [ - { - "default": true, - "id": 7 - } - ] - }, - "minecraft:polished_andesite_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14148, + "id": 9583, "properties": { - "type": "top", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 14149, + "id": 9584, "properties": { - "type": "top", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 14150, + "id": 9585, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "default": true, - "id": 14151, + "id": 9586, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 14152, + "id": 9587, "properties": { - "type": "double", - "waterlogged": "true" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 14153, + "id": 9588, "properties": { - "type": "double", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } - } - ] - }, - "minecraft:polished_andesite_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 13922, + "id": 9589, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 13923, + "id": 9590, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 13924, + "id": 9591, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 13925, + "id": 9592, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 13926, + "id": 9593, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 13927, + "id": 9594, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 13928, + "default": true, + "id": 9595, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } - }, + } + ] + }, + "minecraft:pink_terracotta": { + "states": [ { - "id": 13929, + "default": true, + "id": 9362 + } + ] + }, + "minecraft:pink_tulip": { + "states": [ + { + "default": true, + "id": 2084 + } + ] + }, + "minecraft:pink_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11039, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "north" } }, { - "id": 13930, + "id": 11040, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "facing": "south" } }, { - "id": 13931, + "id": 11041, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "facing": "west" } }, { - "id": 13932, + "id": 11042, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "facing": "east" } - }, + } + ] + }, + "minecraft:pink_wool": { + "states": [ { "default": true, - "id": 13933, + "id": 2053 + } + ] + }, + "minecraft:piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2011, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "extended": "true", + "facing": "north" } }, { - "id": 13934, + "id": 2012, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "extended": "true", + "facing": "east" } }, { - "id": 13935, + "id": 2013, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "extended": "true", + "facing": "south" } }, { - "id": 13936, + "id": 2014, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "extended": "true", + "facing": "west" } }, { - "id": 13937, + "id": 2015, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "extended": "true", + "facing": "up" } }, { - "id": 13938, + "id": 2016, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "extended": "true", + "facing": "down" } }, { - "id": 13939, + "default": true, + "id": 2017, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "extended": "false", + "facing": "north" } }, { - "id": 13940, + "id": 2018, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "extended": "false", + "facing": "east" } }, { - "id": 13941, + "id": 2019, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "extended": "false", + "facing": "south" } }, { - "id": 13942, + "id": 2020, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "extended": "false", + "facing": "west" } }, { - "id": 13943, + "id": 2021, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "extended": "false", + "facing": "up" } }, { - "id": 13944, + "id": 2022, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2023, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" } }, { - "id": 13945, + "id": 2024, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "type": "sticky", + "facing": "north", + "short": "true" } }, { - "id": 13946, + "default": true, + "id": 2025, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "type": "normal", + "facing": "north", + "short": "false" } }, { - "id": 13947, + "id": 2026, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "type": "sticky", + "facing": "north", + "short": "false" } }, { - "id": 13948, + "id": 2027, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "type": "normal", + "facing": "east", + "short": "true" } }, { - "id": 13949, + "id": 2028, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "type": "sticky", + "facing": "east", + "short": "true" } }, { - "id": 13950, + "id": 2029, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "type": "normal", + "facing": "east", + "short": "false" } }, { - "id": 13951, + "id": 2030, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "type": "sticky", + "facing": "east", + "short": "false" } }, { - "id": 13952, + "id": 2031, "properties": { + "type": "normal", "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "short": "true" } }, { - "id": 13953, + "id": 2032, "properties": { + "type": "sticky", "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "short": "true" } }, { - "id": 13954, + "id": 2033, "properties": { + "type": "normal", "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "short": "false" } }, { - "id": 13955, + "id": 2034, "properties": { + "type": "sticky", "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "short": "false" } }, { - "id": 13956, + "id": 2035, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "type": "normal", + "facing": "west", + "short": "true" } }, { - "id": 13957, + "id": 2036, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "type": "sticky", + "facing": "west", + "short": "true" } }, { - "id": 13958, + "id": 2037, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "type": "normal", + "facing": "west", + "short": "false" } }, { - "id": 13959, + "id": 2038, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "type": "sticky", + "facing": "west", + "short": "false" } }, { - "id": 13960, + "id": 2039, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "type": "normal", + "facing": "up", + "short": "true" } }, { - "id": 13961, + "id": 2040, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "type": "sticky", + "facing": "up", + "short": "true" } }, { - "id": 13962, + "id": 2041, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "type": "normal", + "facing": "up", + "short": "false" } }, { - "id": 13963, + "id": 2042, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "type": "sticky", + "facing": "up", + "short": "false" } }, { - "id": 13964, + "id": 2043, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "type": "normal", + "facing": "down", + "short": "true" } }, { - "id": 13965, + "id": 2044, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "type": "sticky", + "facing": "down", + "short": "true" } }, { - "id": 13966, + "id": 2045, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "type": "normal", + "facing": "down", + "short": "false" } }, { - "id": 13967, + "id": 2046, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12497, + "properties": { + "age": "0", + "half": "upper" } }, { - "id": 13968, + "default": true, + "id": 12498, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "age": "0", + "half": "lower" } }, { - "id": 13969, + "id": 12499, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "age": "1", + "half": "upper" } }, { - "id": 13970, + "id": 12500, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "age": "1", + "half": "lower" } }, { - "id": 13971, + "id": 12501, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "age": "2", + "half": "upper" } }, { - "id": 13972, + "id": 12502, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "age": "2", + "half": "lower" } }, { - "id": 13973, + "id": 12503, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "age": "3", + "half": "upper" } }, { - "id": 13974, + "id": 12504, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "age": "3", + "half": "lower" } }, { - "id": 13975, + "id": 12505, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "age": "4", + "half": "upper" } }, { - "id": 13976, + "id": 12506, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12507, + "properties": { + "half": "upper" } }, { - "id": 13977, + "default": true, + "id": 12508, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower" + } + } + ] + }, + "minecraft:player_head": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8947, + "properties": { + "powered": "true", + "rotation": "0" } }, { - "id": 13978, + "id": 8948, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "powered": "true", + "rotation": "1" } }, { - "id": 13979, + "id": 8949, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "powered": "true", + "rotation": "2" } }, { - "id": 13980, + "id": 8950, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8951, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8952, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8953, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8954, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8955, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8956, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8957, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8958, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8959, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8960, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8961, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8962, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8963, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8964, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8965, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8966, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8967, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8968, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8969, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8970, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8971, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8972, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8973, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8974, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8975, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8976, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8977, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8978, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8979, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8980, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8983, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "powered": "true" } }, { - "id": 13981, + "id": 8984, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "powered": "false" } }, { - "id": 13982, + "id": 8985, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "powered": "true" } }, { - "id": 13983, + "id": 8986, "properties": { "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "powered": "false" + } + } + ] + }, + "minecraft:podzol": { + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" } }, { - "id": 13984, + "default": true, + "id": 13, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24748, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", "waterlogged": "true" } }, { - "id": 13985, + "id": 24749, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", + "thickness": "tip_merge", + "vertical_direction": "up", "waterlogged": "false" } }, { - "id": 13986, + "id": 24750, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "thickness": "tip_merge", + "vertical_direction": "down", "waterlogged": "true" } }, { - "id": 13987, + "id": 24751, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", + "thickness": "tip_merge", + "vertical_direction": "down", "waterlogged": "false" } }, { - "id": 13988, + "id": 24752, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "thickness": "tip", + "vertical_direction": "up", "waterlogged": "true" } }, { - "id": 13989, + "default": true, + "id": 24753, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", + "thickness": "tip", + "vertical_direction": "up", "waterlogged": "false" } }, { - "id": 13990, + "id": 24754, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "thickness": "tip", + "vertical_direction": "down", "waterlogged": "true" } }, { - "id": 13991, + "id": 24755, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", + "thickness": "tip", + "vertical_direction": "down", "waterlogged": "false" } }, { - "id": 13992, + "id": 24756, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "thickness": "frustum", + "vertical_direction": "up", "waterlogged": "true" } }, { - "id": 13993, + "id": 24757, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "thickness": "frustum", + "vertical_direction": "up", "waterlogged": "false" } }, { - "id": 13994, + "id": 24758, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "thickness": "frustum", + "vertical_direction": "down", "waterlogged": "true" } }, { - "id": 13995, + "id": 24759, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "thickness": "frustum", + "vertical_direction": "down", "waterlogged": "false" } }, { - "id": 13996, + "id": 24760, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "thickness": "middle", + "vertical_direction": "up", "waterlogged": "true" } }, { - "id": 13997, + "id": 24761, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "thickness": "middle", + "vertical_direction": "up", "waterlogged": "false" } }, { - "id": 13998, + "id": 24762, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "thickness": "middle", + "vertical_direction": "down", "waterlogged": "true" } }, { - "id": 13999, + "id": 24763, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "thickness": "middle", + "vertical_direction": "down", "waterlogged": "false" } }, { - "id": 14000, + "id": 24764, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "thickness": "base", + "vertical_direction": "up", "waterlogged": "true" } }, { - "id": 14001, + "id": 24765, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "thickness": "base", + "vertical_direction": "up", "waterlogged": "false" } - } - ] - }, - "minecraft:polished_basalt": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 5856, - "properties": { - "axis": "x" - } }, { - "default": true, - "id": 5857, + "id": 24766, "properties": { - "axis": "y" + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" } }, { - "id": 5858, + "id": 24767, "properties": { - "axis": "z" + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" } } ] }, - "minecraft:polished_blackstone": { + "minecraft:polished_andesite": { "states": [ { "default": true, - "id": 19871 + "id": 7 } ] }, - "minecraft:polished_blackstone_brick_slab": { + "minecraft:polished_andesite_slab": { "properties": { "type": [ "top", @@ -157552,21 +161365,21 @@ }, "states": [ { - "id": 19875, + "id": 14148, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 19876, + "id": 14149, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 19877, + "id": 14150, "properties": { "type": "bottom", "waterlogged": "true" @@ -157574,21 +161387,21 @@ }, { "default": true, - "id": 19878, + "id": 14151, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 19879, + "id": 14152, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 19880, + "id": 14153, "properties": { "type": "double", "waterlogged": "false" @@ -157596,7 +161409,7 @@ } ] }, - "minecraft:polished_blackstone_brick_stairs": { + "minecraft:polished_andesite_stairs": { "properties": { "facing": [ "north", @@ -157622,7 +161435,7 @@ }, "states": [ { - "id": 19881, + "id": 13922, "properties": { "facing": "north", "half": "top", @@ -157631,7 +161444,7 @@ } }, { - "id": 19882, + "id": 13923, "properties": { "facing": "north", "half": "top", @@ -157640,7 +161453,7 @@ } }, { - "id": 19883, + "id": 13924, "properties": { "facing": "north", "half": "top", @@ -157649,7 +161462,7 @@ } }, { - "id": 19884, + "id": 13925, "properties": { "facing": "north", "half": "top", @@ -157658,7 +161471,7 @@ } }, { - "id": 19885, + "id": 13926, "properties": { "facing": "north", "half": "top", @@ -157667,7 +161480,7 @@ } }, { - "id": 19886, + "id": 13927, "properties": { "facing": "north", "half": "top", @@ -157676,7 +161489,7 @@ } }, { - "id": 19887, + "id": 13928, "properties": { "facing": "north", "half": "top", @@ -157685,7 +161498,7 @@ } }, { - "id": 19888, + "id": 13929, "properties": { "facing": "north", "half": "top", @@ -157694,7 +161507,7 @@ } }, { - "id": 19889, + "id": 13930, "properties": { "facing": "north", "half": "top", @@ -157703,7 +161516,7 @@ } }, { - "id": 19890, + "id": 13931, "properties": { "facing": "north", "half": "top", @@ -157712,7 +161525,7 @@ } }, { - "id": 19891, + "id": 13932, "properties": { "facing": "north", "half": "bottom", @@ -157722,7 +161535,7 @@ }, { "default": true, - "id": 19892, + "id": 13933, "properties": { "facing": "north", "half": "bottom", @@ -157731,7 +161544,7 @@ } }, { - "id": 19893, + "id": 13934, "properties": { "facing": "north", "half": "bottom", @@ -157740,7 +161553,7 @@ } }, { - "id": 19894, + "id": 13935, "properties": { "facing": "north", "half": "bottom", @@ -157749,7 +161562,7 @@ } }, { - "id": 19895, + "id": 13936, "properties": { "facing": "north", "half": "bottom", @@ -157758,7 +161571,7 @@ } }, { - "id": 19896, + "id": 13937, "properties": { "facing": "north", "half": "bottom", @@ -157767,7 +161580,7 @@ } }, { - "id": 19897, + "id": 13938, "properties": { "facing": "north", "half": "bottom", @@ -157776,7 +161589,7 @@ } }, { - "id": 19898, + "id": 13939, "properties": { "facing": "north", "half": "bottom", @@ -157785,7 +161598,7 @@ } }, { - "id": 19899, + "id": 13940, "properties": { "facing": "north", "half": "bottom", @@ -157794,7 +161607,7 @@ } }, { - "id": 19900, + "id": 13941, "properties": { "facing": "north", "half": "bottom", @@ -157803,7 +161616,7 @@ } }, { - "id": 19901, + "id": 13942, "properties": { "facing": "south", "half": "top", @@ -157812,7 +161625,7 @@ } }, { - "id": 19902, + "id": 13943, "properties": { "facing": "south", "half": "top", @@ -157821,7 +161634,7 @@ } }, { - "id": 19903, + "id": 13944, "properties": { "facing": "south", "half": "top", @@ -157830,7 +161643,7 @@ } }, { - "id": 19904, + "id": 13945, "properties": { "facing": "south", "half": "top", @@ -157839,7 +161652,7 @@ } }, { - "id": 19905, + "id": 13946, "properties": { "facing": "south", "half": "top", @@ -157848,7 +161661,7 @@ } }, { - "id": 19906, + "id": 13947, "properties": { "facing": "south", "half": "top", @@ -157857,7 +161670,7 @@ } }, { - "id": 19907, + "id": 13948, "properties": { "facing": "south", "half": "top", @@ -157866,7 +161679,7 @@ } }, { - "id": 19908, + "id": 13949, "properties": { "facing": "south", "half": "top", @@ -157875,7 +161688,7 @@ } }, { - "id": 19909, + "id": 13950, "properties": { "facing": "south", "half": "top", @@ -157884,7 +161697,7 @@ } }, { - "id": 19910, + "id": 13951, "properties": { "facing": "south", "half": "top", @@ -157893,7 +161706,7 @@ } }, { - "id": 19911, + "id": 13952, "properties": { "facing": "south", "half": "bottom", @@ -157902,7 +161715,7 @@ } }, { - "id": 19912, + "id": 13953, "properties": { "facing": "south", "half": "bottom", @@ -157911,7 +161724,7 @@ } }, { - "id": 19913, + "id": 13954, "properties": { "facing": "south", "half": "bottom", @@ -157920,7 +161733,7 @@ } }, { - "id": 19914, + "id": 13955, "properties": { "facing": "south", "half": "bottom", @@ -157929,7 +161742,7 @@ } }, { - "id": 19915, + "id": 13956, "properties": { "facing": "south", "half": "bottom", @@ -157938,7 +161751,7 @@ } }, { - "id": 19916, + "id": 13957, "properties": { "facing": "south", "half": "bottom", @@ -157947,7 +161760,7 @@ } }, { - "id": 19917, + "id": 13958, "properties": { "facing": "south", "half": "bottom", @@ -157956,7 +161769,7 @@ } }, { - "id": 19918, + "id": 13959, "properties": { "facing": "south", "half": "bottom", @@ -157965,7 +161778,7 @@ } }, { - "id": 19919, + "id": 13960, "properties": { "facing": "south", "half": "bottom", @@ -157974,7 +161787,7 @@ } }, { - "id": 19920, + "id": 13961, "properties": { "facing": "south", "half": "bottom", @@ -157983,7 +161796,7 @@ } }, { - "id": 19921, + "id": 13962, "properties": { "facing": "west", "half": "top", @@ -157992,7 +161805,7 @@ } }, { - "id": 19922, + "id": 13963, "properties": { "facing": "west", "half": "top", @@ -158001,7 +161814,7 @@ } }, { - "id": 19923, + "id": 13964, "properties": { "facing": "west", "half": "top", @@ -158010,7 +161823,7 @@ } }, { - "id": 19924, + "id": 13965, "properties": { "facing": "west", "half": "top", @@ -158019,7 +161832,7 @@ } }, { - "id": 19925, + "id": 13966, "properties": { "facing": "west", "half": "top", @@ -158028,7 +161841,7 @@ } }, { - "id": 19926, + "id": 13967, "properties": { "facing": "west", "half": "top", @@ -158037,7 +161850,7 @@ } }, { - "id": 19927, + "id": 13968, "properties": { "facing": "west", "half": "top", @@ -158046,7 +161859,7 @@ } }, { - "id": 19928, + "id": 13969, "properties": { "facing": "west", "half": "top", @@ -158055,7 +161868,7 @@ } }, { - "id": 19929, + "id": 13970, "properties": { "facing": "west", "half": "top", @@ -158064,7 +161877,7 @@ } }, { - "id": 19930, + "id": 13971, "properties": { "facing": "west", "half": "top", @@ -158073,7 +161886,7 @@ } }, { - "id": 19931, + "id": 13972, "properties": { "facing": "west", "half": "bottom", @@ -158082,7 +161895,7 @@ } }, { - "id": 19932, + "id": 13973, "properties": { "facing": "west", "half": "bottom", @@ -158091,7 +161904,7 @@ } }, { - "id": 19933, + "id": 13974, "properties": { "facing": "west", "half": "bottom", @@ -158100,7 +161913,7 @@ } }, { - "id": 19934, + "id": 13975, "properties": { "facing": "west", "half": "bottom", @@ -158109,7 +161922,7 @@ } }, { - "id": 19935, + "id": 13976, "properties": { "facing": "west", "half": "bottom", @@ -158118,7 +161931,7 @@ } }, { - "id": 19936, + "id": 13977, "properties": { "facing": "west", "half": "bottom", @@ -158127,7 +161940,7 @@ } }, { - "id": 19937, + "id": 13978, "properties": { "facing": "west", "half": "bottom", @@ -158136,7 +161949,7 @@ } }, { - "id": 19938, + "id": 13979, "properties": { "facing": "west", "half": "bottom", @@ -158145,7 +161958,7 @@ } }, { - "id": 19939, + "id": 13980, "properties": { "facing": "west", "half": "bottom", @@ -158154,7 +161967,7 @@ } }, { - "id": 19940, + "id": 13981, "properties": { "facing": "west", "half": "bottom", @@ -158163,7 +161976,7 @@ } }, { - "id": 19941, + "id": 13982, "properties": { "facing": "east", "half": "top", @@ -158172,7 +161985,7 @@ } }, { - "id": 19942, + "id": 13983, "properties": { "facing": "east", "half": "top", @@ -158181,7 +161994,7 @@ } }, { - "id": 19943, + "id": 13984, "properties": { "facing": "east", "half": "top", @@ -158190,7 +162003,7 @@ } }, { - "id": 19944, + "id": 13985, "properties": { "facing": "east", "half": "top", @@ -158199,7 +162012,7 @@ } }, { - "id": 19945, + "id": 13986, "properties": { "facing": "east", "half": "top", @@ -158208,7 +162021,7 @@ } }, { - "id": 19946, + "id": 13987, "properties": { "facing": "east", "half": "top", @@ -158217,7 +162030,7 @@ } }, { - "id": 19947, + "id": 13988, "properties": { "facing": "east", "half": "top", @@ -158226,7 +162039,7 @@ } }, { - "id": 19948, + "id": 13989, "properties": { "facing": "east", "half": "top", @@ -158235,7 +162048,7 @@ } }, { - "id": 19949, + "id": 13990, "properties": { "facing": "east", "half": "top", @@ -158244,7 +162057,7 @@ } }, { - "id": 19950, + "id": 13991, "properties": { "facing": "east", "half": "top", @@ -158253,7 +162066,7 @@ } }, { - "id": 19951, + "id": 13992, "properties": { "facing": "east", "half": "bottom", @@ -158262,7 +162075,7 @@ } }, { - "id": 19952, + "id": 13993, "properties": { "facing": "east", "half": "bottom", @@ -158271,7 +162084,851 @@ } }, { - "id": 19953, + "id": 13994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5855, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5856, + "properties": { + "axis": "y" + } + }, + { + "id": 5857, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "states": [ + { + "default": true, + "id": 19871 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19875, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19876, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19877, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19878, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19879, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19880, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19881, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19882, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19883, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19884, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19885, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19886, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19887, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19888, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19889, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19890, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19894, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19895, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19896, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19897, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19901, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19902, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19903, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19904, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19905, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19906, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19907, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19908, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19909, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19910, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19917, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19921, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19922, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19923, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19924, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19925, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19926, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19927, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19928, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19929, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19930, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19934, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19935, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19936, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19937, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19941, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19942, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19943, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19944, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19945, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19946, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19947, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19948, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19949, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19950, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19953, "properties": { "facing": "east", "half": "bottom", @@ -166597,7 +171254,7 @@ "states": [ { "default": true, - "id": 23004 + "id": 25318 } ] }, @@ -166615,21 +171272,21 @@ }, "states": [ { - "id": 23085, + "id": 25399, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 23086, + "id": 25400, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 23087, + "id": 25401, "properties": { "type": "bottom", "waterlogged": "true" @@ -166637,21 +171294,21 @@ }, { "default": true, - "id": 23088, + "id": 25402, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 23089, + "id": 25403, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 23090, + "id": 25404, "properties": { "type": "double", "waterlogged": "false" @@ -166685,7 +171342,7 @@ }, "states": [ { - "id": 23005, + "id": 25319, "properties": { "facing": "north", "half": "top", @@ -166694,7 +171351,7 @@ } }, { - "id": 23006, + "id": 25320, "properties": { "facing": "north", "half": "top", @@ -166703,7 +171360,7 @@ } }, { - "id": 23007, + "id": 25321, "properties": { "facing": "north", "half": "top", @@ -166712,7 +171369,7 @@ } }, { - "id": 23008, + "id": 25322, "properties": { "facing": "north", "half": "top", @@ -166721,7 +171378,7 @@ } }, { - "id": 23009, + "id": 25323, "properties": { "facing": "north", "half": "top", @@ -166730,7 +171387,7 @@ } }, { - "id": 23010, + "id": 25324, "properties": { "facing": "north", "half": "top", @@ -166739,7 +171396,7 @@ } }, { - "id": 23011, + "id": 25325, "properties": { "facing": "north", "half": "top", @@ -166748,7 +171405,7 @@ } }, { - "id": 23012, + "id": 25326, "properties": { "facing": "north", "half": "top", @@ -166757,7 +171414,7 @@ } }, { - "id": 23013, + "id": 25327, "properties": { "facing": "north", "half": "top", @@ -166766,7 +171423,7 @@ } }, { - "id": 23014, + "id": 25328, "properties": { "facing": "north", "half": "top", @@ -166775,7 +171432,7 @@ } }, { - "id": 23015, + "id": 25329, "properties": { "facing": "north", "half": "bottom", @@ -166785,7 +171442,7 @@ }, { "default": true, - "id": 23016, + "id": 25330, "properties": { "facing": "north", "half": "bottom", @@ -166794,7 +171451,7 @@ } }, { - "id": 23017, + "id": 25331, "properties": { "facing": "north", "half": "bottom", @@ -166803,7 +171460,7 @@ } }, { - "id": 23018, + "id": 25332, "properties": { "facing": "north", "half": "bottom", @@ -166812,7 +171469,7 @@ } }, { - "id": 23019, + "id": 25333, "properties": { "facing": "north", "half": "bottom", @@ -166821,7 +171478,7 @@ } }, { - "id": 23020, + "id": 25334, "properties": { "facing": "north", "half": "bottom", @@ -166830,7 +171487,7 @@ } }, { - "id": 23021, + "id": 25335, "properties": { "facing": "north", "half": "bottom", @@ -166839,7 +171496,7 @@ } }, { - "id": 23022, + "id": 25336, "properties": { "facing": "north", "half": "bottom", @@ -166848,7 +171505,7 @@ } }, { - "id": 23023, + "id": 25337, "properties": { "facing": "north", "half": "bottom", @@ -166857,7 +171514,7 @@ } }, { - "id": 23024, + "id": 25338, "properties": { "facing": "north", "half": "bottom", @@ -166866,7 +171523,7 @@ } }, { - "id": 23025, + "id": 25339, "properties": { "facing": "south", "half": "top", @@ -166875,7 +171532,7 @@ } }, { - "id": 23026, + "id": 25340, "properties": { "facing": "south", "half": "top", @@ -166884,7 +171541,7 @@ } }, { - "id": 23027, + "id": 25341, "properties": { "facing": "south", "half": "top", @@ -166893,7 +171550,7 @@ } }, { - "id": 23028, + "id": 25342, "properties": { "facing": "south", "half": "top", @@ -166902,7 +171559,7 @@ } }, { - "id": 23029, + "id": 25343, "properties": { "facing": "south", "half": "top", @@ -166911,7 +171568,7 @@ } }, { - "id": 23030, + "id": 25344, "properties": { "facing": "south", "half": "top", @@ -166920,7 +171577,7 @@ } }, { - "id": 23031, + "id": 25345, "properties": { "facing": "south", "half": "top", @@ -166929,7 +171586,7 @@ } }, { - "id": 23032, + "id": 25346, "properties": { "facing": "south", "half": "top", @@ -166938,7 +171595,7 @@ } }, { - "id": 23033, + "id": 25347, "properties": { "facing": "south", "half": "top", @@ -166947,7 +171604,7 @@ } }, { - "id": 23034, + "id": 25348, "properties": { "facing": "south", "half": "top", @@ -166956,7 +171613,7 @@ } }, { - "id": 23035, + "id": 25349, "properties": { "facing": "south", "half": "bottom", @@ -166965,7 +171622,7 @@ } }, { - "id": 23036, + "id": 25350, "properties": { "facing": "south", "half": "bottom", @@ -166974,7 +171631,7 @@ } }, { - "id": 23037, + "id": 25351, "properties": { "facing": "south", "half": "bottom", @@ -166983,7 +171640,7 @@ } }, { - "id": 23038, + "id": 25352, "properties": { "facing": "south", "half": "bottom", @@ -166992,7 +171649,7 @@ } }, { - "id": 23039, + "id": 25353, "properties": { "facing": "south", "half": "bottom", @@ -167001,7 +171658,7 @@ } }, { - "id": 23040, + "id": 25354, "properties": { "facing": "south", "half": "bottom", @@ -167010,7 +171667,7 @@ } }, { - "id": 23041, + "id": 25355, "properties": { "facing": "south", "half": "bottom", @@ -167019,7 +171676,7 @@ } }, { - "id": 23042, + "id": 25356, "properties": { "facing": "south", "half": "bottom", @@ -167028,7 +171685,7 @@ } }, { - "id": 23043, + "id": 25357, "properties": { "facing": "south", "half": "bottom", @@ -167037,7 +171694,7 @@ } }, { - "id": 23044, + "id": 25358, "properties": { "facing": "south", "half": "bottom", @@ -167046,7 +171703,7 @@ } }, { - "id": 23045, + "id": 25359, "properties": { "facing": "west", "half": "top", @@ -167055,7 +171712,7 @@ } }, { - "id": 23046, + "id": 25360, "properties": { "facing": "west", "half": "top", @@ -167064,7 +171721,7 @@ } }, { - "id": 23047, + "id": 25361, "properties": { "facing": "west", "half": "top", @@ -167073,7 +171730,7 @@ } }, { - "id": 23048, + "id": 25362, "properties": { "facing": "west", "half": "top", @@ -167082,7 +171739,7 @@ } }, { - "id": 23049, + "id": 25363, "properties": { "facing": "west", "half": "top", @@ -167091,7 +171748,7 @@ } }, { - "id": 23050, + "id": 25364, "properties": { "facing": "west", "half": "top", @@ -167100,7 +171757,7 @@ } }, { - "id": 23051, + "id": 25365, "properties": { "facing": "west", "half": "top", @@ -167109,7 +171766,7 @@ } }, { - "id": 23052, + "id": 25366, "properties": { "facing": "west", "half": "top", @@ -167118,7 +171775,7 @@ } }, { - "id": 23053, + "id": 25367, "properties": { "facing": "west", "half": "top", @@ -167127,7 +171784,7 @@ } }, { - "id": 23054, + "id": 25368, "properties": { "facing": "west", "half": "top", @@ -167136,7 +171793,7 @@ } }, { - "id": 23055, + "id": 25369, "properties": { "facing": "west", "half": "bottom", @@ -167145,7 +171802,7 @@ } }, { - "id": 23056, + "id": 25370, "properties": { "facing": "west", "half": "bottom", @@ -167154,7 +171811,7 @@ } }, { - "id": 23057, + "id": 25371, "properties": { "facing": "west", "half": "bottom", @@ -167163,7 +171820,7 @@ } }, { - "id": 23058, + "id": 25372, "properties": { "facing": "west", "half": "bottom", @@ -167172,7 +171829,7 @@ } }, { - "id": 23059, + "id": 25373, "properties": { "facing": "west", "half": "bottom", @@ -167181,7 +171838,7 @@ } }, { - "id": 23060, + "id": 25374, "properties": { "facing": "west", "half": "bottom", @@ -167190,7 +171847,7 @@ } }, { - "id": 23061, + "id": 25375, "properties": { "facing": "west", "half": "bottom", @@ -167199,7 +171856,7 @@ } }, { - "id": 23062, + "id": 25376, "properties": { "facing": "west", "half": "bottom", @@ -167208,7 +171865,7 @@ } }, { - "id": 23063, + "id": 25377, "properties": { "facing": "west", "half": "bottom", @@ -167217,7 +171874,7 @@ } }, { - "id": 23064, + "id": 25378, "properties": { "facing": "west", "half": "bottom", @@ -167226,7 +171883,7 @@ } }, { - "id": 23065, + "id": 25379, "properties": { "facing": "east", "half": "top", @@ -167235,7 +171892,7 @@ } }, { - "id": 23066, + "id": 25380, "properties": { "facing": "east", "half": "top", @@ -167244,7 +171901,7 @@ } }, { - "id": 23067, + "id": 25381, "properties": { "facing": "east", "half": "top", @@ -167253,7 +171910,7 @@ } }, { - "id": 23068, + "id": 25382, "properties": { "facing": "east", "half": "top", @@ -167262,7 +171919,7 @@ } }, { - "id": 23069, + "id": 25383, "properties": { "facing": "east", "half": "top", @@ -167271,7 +171928,7 @@ } }, { - "id": 23070, + "id": 25384, "properties": { "facing": "east", "half": "top", @@ -167280,7 +171937,7 @@ } }, { - "id": 23071, + "id": 25385, "properties": { "facing": "east", "half": "top", @@ -167289,7 +171946,7 @@ } }, { - "id": 23072, + "id": 25386, "properties": { "facing": "east", "half": "top", @@ -167298,7 +171955,7 @@ } }, { - "id": 23073, + "id": 25387, "properties": { "facing": "east", "half": "top", @@ -167307,7 +171964,7 @@ } }, { - "id": 23074, + "id": 25388, "properties": { "facing": "east", "half": "top", @@ -167316,7 +171973,7 @@ } }, { - "id": 23075, + "id": 25389, "properties": { "facing": "east", "half": "bottom", @@ -167325,7 +171982,7 @@ } }, { - "id": 23076, + "id": 25390, "properties": { "facing": "east", "half": "bottom", @@ -167334,7 +171991,7 @@ } }, { - "id": 23077, + "id": 25391, "properties": { "facing": "east", "half": "bottom", @@ -167343,7 +172000,7 @@ } }, { - "id": 23078, + "id": 25392, "properties": { "facing": "east", "half": "bottom", @@ -167352,7 +172009,7 @@ } }, { - "id": 23079, + "id": 25393, "properties": { "facing": "east", "half": "bottom", @@ -167361,7 +172018,7 @@ } }, { - "id": 23080, + "id": 25394, "properties": { "facing": "east", "half": "bottom", @@ -167370,7 +172027,7 @@ } }, { - "id": 23081, + "id": 25395, "properties": { "facing": "east", "half": "bottom", @@ -167379,7 +172036,7 @@ } }, { - "id": 23082, + "id": 25396, "properties": { "facing": "east", "half": "bottom", @@ -167388,7 +172045,7 @@ } }, { - "id": 23083, + "id": 25397, "properties": { "facing": "east", "half": "bottom", @@ -167397,7 +172054,7 @@ } }, { - "id": 23084, + "id": 25398, "properties": { "facing": "east", "half": "bottom", @@ -167440,7 +172097,7 @@ }, "states": [ { - "id": 23091, + "id": 25405, "properties": { "east": "none", "north": "none", @@ -167451,7 +172108,7 @@ } }, { - "id": 23092, + "id": 25406, "properties": { "east": "none", "north": "none", @@ -167462,7 +172119,7 @@ } }, { - "id": 23093, + "id": 25407, "properties": { "east": "none", "north": "none", @@ -167474,7 +172131,7 @@ }, { "default": true, - "id": 23094, + "id": 25408, "properties": { "east": "none", "north": "none", @@ -167485,7 +172142,7 @@ } }, { - "id": 23095, + "id": 25409, "properties": { "east": "none", "north": "none", @@ -167496,7 +172153,7 @@ } }, { - "id": 23096, + "id": 25410, "properties": { "east": "none", "north": "none", @@ -167507,7 +172164,7 @@ } }, { - "id": 23097, + "id": 25411, "properties": { "east": "none", "north": "none", @@ -167518,7 +172175,7 @@ } }, { - "id": 23098, + "id": 25412, "properties": { "east": "none", "north": "none", @@ -167529,7 +172186,7 @@ } }, { - "id": 23099, + "id": 25413, "properties": { "east": "none", "north": "none", @@ -167540,7 +172197,7 @@ } }, { - "id": 23100, + "id": 25414, "properties": { "east": "none", "north": "none", @@ -167551,7 +172208,7 @@ } }, { - "id": 23101, + "id": 25415, "properties": { "east": "none", "north": "none", @@ -167562,7 +172219,7 @@ } }, { - "id": 23102, + "id": 25416, "properties": { "east": "none", "north": "none", @@ -167573,7 +172230,7 @@ } }, { - "id": 23103, + "id": 25417, "properties": { "east": "none", "north": "none", @@ -167584,7 +172241,7 @@ } }, { - "id": 23104, + "id": 25418, "properties": { "east": "none", "north": "none", @@ -167595,7 +172252,7 @@ } }, { - "id": 23105, + "id": 25419, "properties": { "east": "none", "north": "none", @@ -167606,7 +172263,7 @@ } }, { - "id": 23106, + "id": 25420, "properties": { "east": "none", "north": "none", @@ -167617,7 +172274,7 @@ } }, { - "id": 23107, + "id": 25421, "properties": { "east": "none", "north": "none", @@ -167628,7 +172285,7 @@ } }, { - "id": 23108, + "id": 25422, "properties": { "east": "none", "north": "none", @@ -167639,7 +172296,7 @@ } }, { - "id": 23109, + "id": 25423, "properties": { "east": "none", "north": "none", @@ -167650,7 +172307,7 @@ } }, { - "id": 23110, + "id": 25424, "properties": { "east": "none", "north": "none", @@ -167661,7 +172318,7 @@ } }, { - "id": 23111, + "id": 25425, "properties": { "east": "none", "north": "none", @@ -167672,7 +172329,7 @@ } }, { - "id": 23112, + "id": 25426, "properties": { "east": "none", "north": "none", @@ -167683,7 +172340,7 @@ } }, { - "id": 23113, + "id": 25427, "properties": { "east": "none", "north": "none", @@ -167694,7 +172351,7 @@ } }, { - "id": 23114, + "id": 25428, "properties": { "east": "none", "north": "none", @@ -167705,7 +172362,7 @@ } }, { - "id": 23115, + "id": 25429, "properties": { "east": "none", "north": "none", @@ -167716,7 +172373,7 @@ } }, { - "id": 23116, + "id": 25430, "properties": { "east": "none", "north": "none", @@ -167727,7 +172384,7 @@ } }, { - "id": 23117, + "id": 25431, "properties": { "east": "none", "north": "none", @@ -167738,7 +172395,7 @@ } }, { - "id": 23118, + "id": 25432, "properties": { "east": "none", "north": "none", @@ -167749,7 +172406,7 @@ } }, { - "id": 23119, + "id": 25433, "properties": { "east": "none", "north": "none", @@ -167760,7 +172417,7 @@ } }, { - "id": 23120, + "id": 25434, "properties": { "east": "none", "north": "none", @@ -167771,7 +172428,7 @@ } }, { - "id": 23121, + "id": 25435, "properties": { "east": "none", "north": "none", @@ -167782,7 +172439,7 @@ } }, { - "id": 23122, + "id": 25436, "properties": { "east": "none", "north": "none", @@ -167793,7 +172450,7 @@ } }, { - "id": 23123, + "id": 25437, "properties": { "east": "none", "north": "none", @@ -167804,7 +172461,7 @@ } }, { - "id": 23124, + "id": 25438, "properties": { "east": "none", "north": "none", @@ -167815,7 +172472,7 @@ } }, { - "id": 23125, + "id": 25439, "properties": { "east": "none", "north": "none", @@ -167826,7 +172483,7 @@ } }, { - "id": 23126, + "id": 25440, "properties": { "east": "none", "north": "none", @@ -167837,7 +172494,7 @@ } }, { - "id": 23127, + "id": 25441, "properties": { "east": "none", "north": "low", @@ -167848,7 +172505,7 @@ } }, { - "id": 23128, + "id": 25442, "properties": { "east": "none", "north": "low", @@ -167859,7 +172516,7 @@ } }, { - "id": 23129, + "id": 25443, "properties": { "east": "none", "north": "low", @@ -167870,7 +172527,7 @@ } }, { - "id": 23130, + "id": 25444, "properties": { "east": "none", "north": "low", @@ -167881,7 +172538,7 @@ } }, { - "id": 23131, + "id": 25445, "properties": { "east": "none", "north": "low", @@ -167892,7 +172549,7 @@ } }, { - "id": 23132, + "id": 25446, "properties": { "east": "none", "north": "low", @@ -167903,7 +172560,7 @@ } }, { - "id": 23133, + "id": 25447, "properties": { "east": "none", "north": "low", @@ -167914,7 +172571,7 @@ } }, { - "id": 23134, + "id": 25448, "properties": { "east": "none", "north": "low", @@ -167925,7 +172582,7 @@ } }, { - "id": 23135, + "id": 25449, "properties": { "east": "none", "north": "low", @@ -167936,7 +172593,7 @@ } }, { - "id": 23136, + "id": 25450, "properties": { "east": "none", "north": "low", @@ -167947,7 +172604,7 @@ } }, { - "id": 23137, + "id": 25451, "properties": { "east": "none", "north": "low", @@ -167958,7 +172615,7 @@ } }, { - "id": 23138, + "id": 25452, "properties": { "east": "none", "north": "low", @@ -167969,7 +172626,7 @@ } }, { - "id": 23139, + "id": 25453, "properties": { "east": "none", "north": "low", @@ -167980,7 +172637,7 @@ } }, { - "id": 23140, + "id": 25454, "properties": { "east": "none", "north": "low", @@ -167991,7 +172648,7 @@ } }, { - "id": 23141, + "id": 25455, "properties": { "east": "none", "north": "low", @@ -168002,7 +172659,7 @@ } }, { - "id": 23142, + "id": 25456, "properties": { "east": "none", "north": "low", @@ -168013,7 +172670,7 @@ } }, { - "id": 23143, + "id": 25457, "properties": { "east": "none", "north": "low", @@ -168024,7 +172681,7 @@ } }, { - "id": 23144, + "id": 25458, "properties": { "east": "none", "north": "low", @@ -168035,7 +172692,7 @@ } }, { - "id": 23145, + "id": 25459, "properties": { "east": "none", "north": "low", @@ -168046,7 +172703,7 @@ } }, { - "id": 23146, + "id": 25460, "properties": { "east": "none", "north": "low", @@ -168057,7 +172714,7 @@ } }, { - "id": 23147, + "id": 25461, "properties": { "east": "none", "north": "low", @@ -168068,7 +172725,7 @@ } }, { - "id": 23148, + "id": 25462, "properties": { "east": "none", "north": "low", @@ -168079,7 +172736,7 @@ } }, { - "id": 23149, + "id": 25463, "properties": { "east": "none", "north": "low", @@ -168090,7 +172747,7 @@ } }, { - "id": 23150, + "id": 25464, "properties": { "east": "none", "north": "low", @@ -168101,7 +172758,7 @@ } }, { - "id": 23151, + "id": 25465, "properties": { "east": "none", "north": "low", @@ -168112,7 +172769,7 @@ } }, { - "id": 23152, + "id": 25466, "properties": { "east": "none", "north": "low", @@ -168123,7 +172780,7 @@ } }, { - "id": 23153, + "id": 25467, "properties": { "east": "none", "north": "low", @@ -168134,7 +172791,7 @@ } }, { - "id": 23154, + "id": 25468, "properties": { "east": "none", "north": "low", @@ -168145,7 +172802,7 @@ } }, { - "id": 23155, + "id": 25469, "properties": { "east": "none", "north": "low", @@ -168156,7 +172813,7 @@ } }, { - "id": 23156, + "id": 25470, "properties": { "east": "none", "north": "low", @@ -168167,7 +172824,7 @@ } }, { - "id": 23157, + "id": 25471, "properties": { "east": "none", "north": "low", @@ -168178,7 +172835,7 @@ } }, { - "id": 23158, + "id": 25472, "properties": { "east": "none", "north": "low", @@ -168189,7 +172846,7 @@ } }, { - "id": 23159, + "id": 25473, "properties": { "east": "none", "north": "low", @@ -168200,7 +172857,7 @@ } }, { - "id": 23160, + "id": 25474, "properties": { "east": "none", "north": "low", @@ -168211,7 +172868,7 @@ } }, { - "id": 23161, + "id": 25475, "properties": { "east": "none", "north": "low", @@ -168222,7 +172879,7 @@ } }, { - "id": 23162, + "id": 25476, "properties": { "east": "none", "north": "low", @@ -168233,7 +172890,7 @@ } }, { - "id": 23163, + "id": 25477, "properties": { "east": "none", "north": "tall", @@ -168244,7 +172901,7 @@ } }, { - "id": 23164, + "id": 25478, "properties": { "east": "none", "north": "tall", @@ -168255,7 +172912,7 @@ } }, { - "id": 23165, + "id": 25479, "properties": { "east": "none", "north": "tall", @@ -168266,7 +172923,7 @@ } }, { - "id": 23166, + "id": 25480, "properties": { "east": "none", "north": "tall", @@ -168277,7 +172934,7 @@ } }, { - "id": 23167, + "id": 25481, "properties": { "east": "none", "north": "tall", @@ -168288,7 +172945,7 @@ } }, { - "id": 23168, + "id": 25482, "properties": { "east": "none", "north": "tall", @@ -168299,7 +172956,7 @@ } }, { - "id": 23169, + "id": 25483, "properties": { "east": "none", "north": "tall", @@ -168310,7 +172967,7 @@ } }, { - "id": 23170, + "id": 25484, "properties": { "east": "none", "north": "tall", @@ -168321,7 +172978,7 @@ } }, { - "id": 23171, + "id": 25485, "properties": { "east": "none", "north": "tall", @@ -168332,7 +172989,7 @@ } }, { - "id": 23172, + "id": 25486, "properties": { "east": "none", "north": "tall", @@ -168343,7 +173000,7 @@ } }, { - "id": 23173, + "id": 25487, "properties": { "east": "none", "north": "tall", @@ -168354,7 +173011,7 @@ } }, { - "id": 23174, + "id": 25488, "properties": { "east": "none", "north": "tall", @@ -168365,7 +173022,7 @@ } }, { - "id": 23175, + "id": 25489, "properties": { "east": "none", "north": "tall", @@ -168376,7 +173033,7 @@ } }, { - "id": 23176, + "id": 25490, "properties": { "east": "none", "north": "tall", @@ -168387,7 +173044,7 @@ } }, { - "id": 23177, + "id": 25491, "properties": { "east": "none", "north": "tall", @@ -168398,7 +173055,7 @@ } }, { - "id": 23178, + "id": 25492, "properties": { "east": "none", "north": "tall", @@ -168409,7 +173066,7 @@ } }, { - "id": 23179, + "id": 25493, "properties": { "east": "none", "north": "tall", @@ -168420,7 +173077,7 @@ } }, { - "id": 23180, + "id": 25494, "properties": { "east": "none", "north": "tall", @@ -168431,7 +173088,7 @@ } }, { - "id": 23181, + "id": 25495, "properties": { "east": "none", "north": "tall", @@ -168442,7 +173099,7 @@ } }, { - "id": 23182, + "id": 25496, "properties": { "east": "none", "north": "tall", @@ -168453,7 +173110,7 @@ } }, { - "id": 23183, + "id": 25497, "properties": { "east": "none", "north": "tall", @@ -168464,7 +173121,7 @@ } }, { - "id": 23184, + "id": 25498, "properties": { "east": "none", "north": "tall", @@ -168475,7 +173132,7 @@ } }, { - "id": 23185, + "id": 25499, "properties": { "east": "none", "north": "tall", @@ -168486,7 +173143,7 @@ } }, { - "id": 23186, + "id": 25500, "properties": { "east": "none", "north": "tall", @@ -168497,7 +173154,7 @@ } }, { - "id": 23187, + "id": 25501, "properties": { "east": "none", "north": "tall", @@ -168508,7 +173165,7 @@ } }, { - "id": 23188, + "id": 25502, "properties": { "east": "none", "north": "tall", @@ -168519,7 +173176,7 @@ } }, { - "id": 23189, + "id": 25503, "properties": { "east": "none", "north": "tall", @@ -168530,7 +173187,7 @@ } }, { - "id": 23190, + "id": 25504, "properties": { "east": "none", "north": "tall", @@ -168541,7 +173198,7 @@ } }, { - "id": 23191, + "id": 25505, "properties": { "east": "none", "north": "tall", @@ -168552,7 +173209,7 @@ } }, { - "id": 23192, + "id": 25506, "properties": { "east": "none", "north": "tall", @@ -168563,7 +173220,7 @@ } }, { - "id": 23193, + "id": 25507, "properties": { "east": "none", "north": "tall", @@ -168574,7 +173231,7 @@ } }, { - "id": 23194, + "id": 25508, "properties": { "east": "none", "north": "tall", @@ -168585,7 +173242,7 @@ } }, { - "id": 23195, + "id": 25509, "properties": { "east": "none", "north": "tall", @@ -168596,7 +173253,7 @@ } }, { - "id": 23196, + "id": 25510, "properties": { "east": "none", "north": "tall", @@ -168607,7 +173264,7 @@ } }, { - "id": 23197, + "id": 25511, "properties": { "east": "none", "north": "tall", @@ -168618,7 +173275,7 @@ } }, { - "id": 23198, + "id": 25512, "properties": { "east": "none", "north": "tall", @@ -168629,7 +173286,7 @@ } }, { - "id": 23199, + "id": 25513, "properties": { "east": "low", "north": "none", @@ -168640,7 +173297,7 @@ } }, { - "id": 23200, + "id": 25514, "properties": { "east": "low", "north": "none", @@ -168651,7 +173308,7 @@ } }, { - "id": 23201, + "id": 25515, "properties": { "east": "low", "north": "none", @@ -168662,7 +173319,7 @@ } }, { - "id": 23202, + "id": 25516, "properties": { "east": "low", "north": "none", @@ -168673,7 +173330,7 @@ } }, { - "id": 23203, + "id": 25517, "properties": { "east": "low", "north": "none", @@ -168684,7 +173341,7 @@ } }, { - "id": 23204, + "id": 25518, "properties": { "east": "low", "north": "none", @@ -168695,7 +173352,7 @@ } }, { - "id": 23205, + "id": 25519, "properties": { "east": "low", "north": "none", @@ -168706,7 +173363,7 @@ } }, { - "id": 23206, + "id": 25520, "properties": { "east": "low", "north": "none", @@ -168717,7 +173374,7 @@ } }, { - "id": 23207, + "id": 25521, "properties": { "east": "low", "north": "none", @@ -168728,7 +173385,7 @@ } }, { - "id": 23208, + "id": 25522, "properties": { "east": "low", "north": "none", @@ -168739,7 +173396,7 @@ } }, { - "id": 23209, + "id": 25523, "properties": { "east": "low", "north": "none", @@ -168750,7 +173407,7 @@ } }, { - "id": 23210, + "id": 25524, "properties": { "east": "low", "north": "none", @@ -168761,7 +173418,7 @@ } }, { - "id": 23211, + "id": 25525, "properties": { "east": "low", "north": "none", @@ -168772,7 +173429,7 @@ } }, { - "id": 23212, + "id": 25526, "properties": { "east": "low", "north": "none", @@ -168783,7 +173440,7 @@ } }, { - "id": 23213, + "id": 25527, "properties": { "east": "low", "north": "none", @@ -168794,7 +173451,7 @@ } }, { - "id": 23214, + "id": 25528, "properties": { "east": "low", "north": "none", @@ -168805,7 +173462,7 @@ } }, { - "id": 23215, + "id": 25529, "properties": { "east": "low", "north": "none", @@ -168816,7 +173473,7 @@ } }, { - "id": 23216, + "id": 25530, "properties": { "east": "low", "north": "none", @@ -168827,7 +173484,7 @@ } }, { - "id": 23217, + "id": 25531, "properties": { "east": "low", "north": "none", @@ -168838,7 +173495,7 @@ } }, { - "id": 23218, + "id": 25532, "properties": { "east": "low", "north": "none", @@ -168849,7 +173506,7 @@ } }, { - "id": 23219, + "id": 25533, "properties": { "east": "low", "north": "none", @@ -168860,7 +173517,7 @@ } }, { - "id": 23220, + "id": 25534, "properties": { "east": "low", "north": "none", @@ -168871,7 +173528,7 @@ } }, { - "id": 23221, + "id": 25535, "properties": { "east": "low", "north": "none", @@ -168882,7 +173539,7 @@ } }, { - "id": 23222, + "id": 25536, "properties": { "east": "low", "north": "none", @@ -168893,7 +173550,7 @@ } }, { - "id": 23223, + "id": 25537, "properties": { "east": "low", "north": "none", @@ -168904,7 +173561,7 @@ } }, { - "id": 23224, + "id": 25538, "properties": { "east": "low", "north": "none", @@ -168915,7 +173572,7 @@ } }, { - "id": 23225, + "id": 25539, "properties": { "east": "low", "north": "none", @@ -168926,7 +173583,7 @@ } }, { - "id": 23226, + "id": 25540, "properties": { "east": "low", "north": "none", @@ -168937,7 +173594,7 @@ } }, { - "id": 23227, + "id": 25541, "properties": { "east": "low", "north": "none", @@ -168948,7 +173605,7 @@ } }, { - "id": 23228, + "id": 25542, "properties": { "east": "low", "north": "none", @@ -168959,7 +173616,7 @@ } }, { - "id": 23229, + "id": 25543, "properties": { "east": "low", "north": "none", @@ -168970,7 +173627,7 @@ } }, { - "id": 23230, + "id": 25544, "properties": { "east": "low", "north": "none", @@ -168981,7 +173638,7 @@ } }, { - "id": 23231, + "id": 25545, "properties": { "east": "low", "north": "none", @@ -168992,7 +173649,7 @@ } }, { - "id": 23232, + "id": 25546, "properties": { "east": "low", "north": "none", @@ -169003,7 +173660,7 @@ } }, { - "id": 23233, + "id": 25547, "properties": { "east": "low", "north": "none", @@ -169014,7 +173671,7 @@ } }, { - "id": 23234, + "id": 25548, "properties": { "east": "low", "north": "none", @@ -169025,7 +173682,7 @@ } }, { - "id": 23235, + "id": 25549, "properties": { "east": "low", "north": "low", @@ -169036,7 +173693,7 @@ } }, { - "id": 23236, + "id": 25550, "properties": { "east": "low", "north": "low", @@ -169047,7 +173704,7 @@ } }, { - "id": 23237, + "id": 25551, "properties": { "east": "low", "north": "low", @@ -169058,7 +173715,7 @@ } }, { - "id": 23238, + "id": 25552, "properties": { "east": "low", "north": "low", @@ -169069,7 +173726,7 @@ } }, { - "id": 23239, + "id": 25553, "properties": { "east": "low", "north": "low", @@ -169080,7 +173737,7 @@ } }, { - "id": 23240, + "id": 25554, "properties": { "east": "low", "north": "low", @@ -169091,7 +173748,7 @@ } }, { - "id": 23241, + "id": 25555, "properties": { "east": "low", "north": "low", @@ -169102,7 +173759,7 @@ } }, { - "id": 23242, + "id": 25556, "properties": { "east": "low", "north": "low", @@ -169113,7 +173770,7 @@ } }, { - "id": 23243, + "id": 25557, "properties": { "east": "low", "north": "low", @@ -169124,7 +173781,7 @@ } }, { - "id": 23244, + "id": 25558, "properties": { "east": "low", "north": "low", @@ -169135,7 +173792,7 @@ } }, { - "id": 23245, + "id": 25559, "properties": { "east": "low", "north": "low", @@ -169146,7 +173803,7 @@ } }, { - "id": 23246, + "id": 25560, "properties": { "east": "low", "north": "low", @@ -169157,7 +173814,7 @@ } }, { - "id": 23247, + "id": 25561, "properties": { "east": "low", "north": "low", @@ -169168,7 +173825,7 @@ } }, { - "id": 23248, + "id": 25562, "properties": { "east": "low", "north": "low", @@ -169179,7 +173836,7 @@ } }, { - "id": 23249, + "id": 25563, "properties": { "east": "low", "north": "low", @@ -169190,7 +173847,7 @@ } }, { - "id": 23250, + "id": 25564, "properties": { "east": "low", "north": "low", @@ -169201,7 +173858,7 @@ } }, { - "id": 23251, + "id": 25565, "properties": { "east": "low", "north": "low", @@ -169212,7 +173869,7 @@ } }, { - "id": 23252, + "id": 25566, "properties": { "east": "low", "north": "low", @@ -169223,7 +173880,7 @@ } }, { - "id": 23253, + "id": 25567, "properties": { "east": "low", "north": "low", @@ -169234,7 +173891,7 @@ } }, { - "id": 23254, + "id": 25568, "properties": { "east": "low", "north": "low", @@ -169245,7 +173902,7 @@ } }, { - "id": 23255, + "id": 25569, "properties": { "east": "low", "north": "low", @@ -169256,7 +173913,7 @@ } }, { - "id": 23256, + "id": 25570, "properties": { "east": "low", "north": "low", @@ -169267,7 +173924,7 @@ } }, { - "id": 23257, + "id": 25571, "properties": { "east": "low", "north": "low", @@ -169278,7 +173935,7 @@ } }, { - "id": 23258, + "id": 25572, "properties": { "east": "low", "north": "low", @@ -169289,7 +173946,7 @@ } }, { - "id": 23259, + "id": 25573, "properties": { "east": "low", "north": "low", @@ -169300,7 +173957,7 @@ } }, { - "id": 23260, + "id": 25574, "properties": { "east": "low", "north": "low", @@ -169311,7 +173968,7 @@ } }, { - "id": 23261, + "id": 25575, "properties": { "east": "low", "north": "low", @@ -169322,7 +173979,7 @@ } }, { - "id": 23262, + "id": 25576, "properties": { "east": "low", "north": "low", @@ -169333,7 +173990,7 @@ } }, { - "id": 23263, + "id": 25577, "properties": { "east": "low", "north": "low", @@ -169344,7 +174001,7 @@ } }, { - "id": 23264, + "id": 25578, "properties": { "east": "low", "north": "low", @@ -169355,7 +174012,7 @@ } }, { - "id": 23265, + "id": 25579, "properties": { "east": "low", "north": "low", @@ -169366,7 +174023,7 @@ } }, { - "id": 23266, + "id": 25580, "properties": { "east": "low", "north": "low", @@ -169377,7 +174034,7 @@ } }, { - "id": 23267, + "id": 25581, "properties": { "east": "low", "north": "low", @@ -169388,7 +174045,7 @@ } }, { - "id": 23268, + "id": 25582, "properties": { "east": "low", "north": "low", @@ -169399,7 +174056,7 @@ } }, { - "id": 23269, + "id": 25583, "properties": { "east": "low", "north": "low", @@ -169410,7 +174067,7 @@ } }, { - "id": 23270, + "id": 25584, "properties": { "east": "low", "north": "low", @@ -169421,7 +174078,7 @@ } }, { - "id": 23271, + "id": 25585, "properties": { "east": "low", "north": "tall", @@ -169432,7 +174089,7 @@ } }, { - "id": 23272, + "id": 25586, "properties": { "east": "low", "north": "tall", @@ -169443,7 +174100,7 @@ } }, { - "id": 23273, + "id": 25587, "properties": { "east": "low", "north": "tall", @@ -169454,7 +174111,7 @@ } }, { - "id": 23274, + "id": 25588, "properties": { "east": "low", "north": "tall", @@ -169465,7 +174122,7 @@ } }, { - "id": 23275, + "id": 25589, "properties": { "east": "low", "north": "tall", @@ -169476,7 +174133,7 @@ } }, { - "id": 23276, + "id": 25590, "properties": { "east": "low", "north": "tall", @@ -169487,7 +174144,7 @@ } }, { - "id": 23277, + "id": 25591, "properties": { "east": "low", "north": "tall", @@ -169498,7 +174155,7 @@ } }, { - "id": 23278, + "id": 25592, "properties": { "east": "low", "north": "tall", @@ -169509,7 +174166,7 @@ } }, { - "id": 23279, + "id": 25593, "properties": { "east": "low", "north": "tall", @@ -169520,7 +174177,7 @@ } }, { - "id": 23280, + "id": 25594, "properties": { "east": "low", "north": "tall", @@ -169531,7 +174188,7 @@ } }, { - "id": 23281, + "id": 25595, "properties": { "east": "low", "north": "tall", @@ -169542,7 +174199,7 @@ } }, { - "id": 23282, + "id": 25596, "properties": { "east": "low", "north": "tall", @@ -169553,7 +174210,7 @@ } }, { - "id": 23283, + "id": 25597, "properties": { "east": "low", "north": "tall", @@ -169564,7 +174221,7 @@ } }, { - "id": 23284, + "id": 25598, "properties": { "east": "low", "north": "tall", @@ -169575,7 +174232,7 @@ } }, { - "id": 23285, + "id": 25599, "properties": { "east": "low", "north": "tall", @@ -169586,7 +174243,7 @@ } }, { - "id": 23286, + "id": 25600, "properties": { "east": "low", "north": "tall", @@ -169597,7 +174254,7 @@ } }, { - "id": 23287, + "id": 25601, "properties": { "east": "low", "north": "tall", @@ -169608,7 +174265,7 @@ } }, { - "id": 23288, + "id": 25602, "properties": { "east": "low", "north": "tall", @@ -169619,7 +174276,7 @@ } }, { - "id": 23289, + "id": 25603, "properties": { "east": "low", "north": "tall", @@ -169630,7 +174287,7 @@ } }, { - "id": 23290, + "id": 25604, "properties": { "east": "low", "north": "tall", @@ -169641,7 +174298,7 @@ } }, { - "id": 23291, + "id": 25605, "properties": { "east": "low", "north": "tall", @@ -169652,7 +174309,7 @@ } }, { - "id": 23292, + "id": 25606, "properties": { "east": "low", "north": "tall", @@ -169663,7 +174320,7 @@ } }, { - "id": 23293, + "id": 25607, "properties": { "east": "low", "north": "tall", @@ -169674,7 +174331,7 @@ } }, { - "id": 23294, + "id": 25608, "properties": { "east": "low", "north": "tall", @@ -169685,7 +174342,7 @@ } }, { - "id": 23295, + "id": 25609, "properties": { "east": "low", "north": "tall", @@ -169696,7 +174353,7 @@ } }, { - "id": 23296, + "id": 25610, "properties": { "east": "low", "north": "tall", @@ -169707,7 +174364,7 @@ } }, { - "id": 23297, + "id": 25611, "properties": { "east": "low", "north": "tall", @@ -169718,7 +174375,7 @@ } }, { - "id": 23298, + "id": 25612, "properties": { "east": "low", "north": "tall", @@ -169729,7 +174386,7 @@ } }, { - "id": 23299, + "id": 25613, "properties": { "east": "low", "north": "tall", @@ -169740,7 +174397,7 @@ } }, { - "id": 23300, + "id": 25614, "properties": { "east": "low", "north": "tall", @@ -169751,7 +174408,7 @@ } }, { - "id": 23301, + "id": 25615, "properties": { "east": "low", "north": "tall", @@ -169762,7 +174419,7 @@ } }, { - "id": 23302, + "id": 25616, "properties": { "east": "low", "north": "tall", @@ -169773,7 +174430,7 @@ } }, { - "id": 23303, + "id": 25617, "properties": { "east": "low", "north": "tall", @@ -169784,7 +174441,7 @@ } }, { - "id": 23304, + "id": 25618, "properties": { "east": "low", "north": "tall", @@ -169795,7 +174452,7 @@ } }, { - "id": 23305, + "id": 25619, "properties": { "east": "low", "north": "tall", @@ -169806,7 +174463,7 @@ } }, { - "id": 23306, + "id": 25620, "properties": { "east": "low", "north": "tall", @@ -169817,7 +174474,7 @@ } }, { - "id": 23307, + "id": 25621, "properties": { "east": "tall", "north": "none", @@ -169828,7 +174485,7 @@ } }, { - "id": 23308, + "id": 25622, "properties": { "east": "tall", "north": "none", @@ -169839,7 +174496,7 @@ } }, { - "id": 23309, + "id": 25623, "properties": { "east": "tall", "north": "none", @@ -169850,7 +174507,7 @@ } }, { - "id": 23310, + "id": 25624, "properties": { "east": "tall", "north": "none", @@ -169861,7 +174518,7 @@ } }, { - "id": 23311, + "id": 25625, "properties": { "east": "tall", "north": "none", @@ -169872,7 +174529,7 @@ } }, { - "id": 23312, + "id": 25626, "properties": { "east": "tall", "north": "none", @@ -169883,7 +174540,7 @@ } }, { - "id": 23313, + "id": 25627, "properties": { "east": "tall", "north": "none", @@ -169894,7 +174551,7 @@ } }, { - "id": 23314, + "id": 25628, "properties": { "east": "tall", "north": "none", @@ -169905,7 +174562,7 @@ } }, { - "id": 23315, + "id": 25629, "properties": { "east": "tall", "north": "none", @@ -169916,7 +174573,7 @@ } }, { - "id": 23316, + "id": 25630, "properties": { "east": "tall", "north": "none", @@ -169927,7 +174584,7 @@ } }, { - "id": 23317, + "id": 25631, "properties": { "east": "tall", "north": "none", @@ -169938,7 +174595,7 @@ } }, { - "id": 23318, + "id": 25632, "properties": { "east": "tall", "north": "none", @@ -169949,7 +174606,7 @@ } }, { - "id": 23319, + "id": 25633, "properties": { "east": "tall", "north": "none", @@ -169960,7 +174617,7 @@ } }, { - "id": 23320, + "id": 25634, "properties": { "east": "tall", "north": "none", @@ -169971,7 +174628,7 @@ } }, { - "id": 23321, + "id": 25635, "properties": { "east": "tall", "north": "none", @@ -169982,7 +174639,7 @@ } }, { - "id": 23322, + "id": 25636, "properties": { "east": "tall", "north": "none", @@ -169993,7 +174650,7 @@ } }, { - "id": 23323, + "id": 25637, "properties": { "east": "tall", "north": "none", @@ -170004,7 +174661,7 @@ } }, { - "id": 23324, + "id": 25638, "properties": { "east": "tall", "north": "none", @@ -170015,7 +174672,7 @@ } }, { - "id": 23325, + "id": 25639, "properties": { "east": "tall", "north": "none", @@ -170026,7 +174683,7 @@ } }, { - "id": 23326, + "id": 25640, "properties": { "east": "tall", "north": "none", @@ -170037,7 +174694,7 @@ } }, { - "id": 23327, + "id": 25641, "properties": { "east": "tall", "north": "none", @@ -170048,7 +174705,7 @@ } }, { - "id": 23328, + "id": 25642, "properties": { "east": "tall", "north": "none", @@ -170059,7 +174716,7 @@ } }, { - "id": 23329, + "id": 25643, "properties": { "east": "tall", "north": "none", @@ -170070,7 +174727,7 @@ } }, { - "id": 23330, + "id": 25644, "properties": { "east": "tall", "north": "none", @@ -170081,7 +174738,7 @@ } }, { - "id": 23331, + "id": 25645, "properties": { "east": "tall", "north": "none", @@ -170092,7 +174749,7 @@ } }, { - "id": 23332, + "id": 25646, "properties": { "east": "tall", "north": "none", @@ -170103,7 +174760,7 @@ } }, { - "id": 23333, + "id": 25647, "properties": { "east": "tall", "north": "none", @@ -170114,7 +174771,7 @@ } }, { - "id": 23334, + "id": 25648, "properties": { "east": "tall", "north": "none", @@ -170125,7 +174782,7 @@ } }, { - "id": 23335, + "id": 25649, "properties": { "east": "tall", "north": "none", @@ -170136,7 +174793,7 @@ } }, { - "id": 23336, + "id": 25650, "properties": { "east": "tall", "north": "none", @@ -170147,7 +174804,7 @@ } }, { - "id": 23337, + "id": 25651, "properties": { "east": "tall", "north": "none", @@ -170158,7 +174815,7 @@ } }, { - "id": 23338, + "id": 25652, "properties": { "east": "tall", "north": "none", @@ -170169,7 +174826,7 @@ } }, { - "id": 23339, + "id": 25653, "properties": { "east": "tall", "north": "none", @@ -170180,7 +174837,7 @@ } }, { - "id": 23340, + "id": 25654, "properties": { "east": "tall", "north": "none", @@ -170191,7 +174848,7 @@ } }, { - "id": 23341, + "id": 25655, "properties": { "east": "tall", "north": "none", @@ -170202,7 +174859,7 @@ } }, { - "id": 23342, + "id": 25656, "properties": { "east": "tall", "north": "none", @@ -170213,7 +174870,7 @@ } }, { - "id": 23343, + "id": 25657, "properties": { "east": "tall", "north": "low", @@ -170224,7 +174881,7 @@ } }, { - "id": 23344, + "id": 25658, "properties": { "east": "tall", "north": "low", @@ -170235,7 +174892,7 @@ } }, { - "id": 23345, + "id": 25659, "properties": { "east": "tall", "north": "low", @@ -170246,7 +174903,7 @@ } }, { - "id": 23346, + "id": 25660, "properties": { "east": "tall", "north": "low", @@ -170257,7 +174914,7 @@ } }, { - "id": 23347, + "id": 25661, "properties": { "east": "tall", "north": "low", @@ -170268,7 +174925,7 @@ } }, { - "id": 23348, + "id": 25662, "properties": { "east": "tall", "north": "low", @@ -170279,7 +174936,7 @@ } }, { - "id": 23349, + "id": 25663, "properties": { "east": "tall", "north": "low", @@ -170290,7 +174947,7 @@ } }, { - "id": 23350, + "id": 25664, "properties": { "east": "tall", "north": "low", @@ -170301,7 +174958,7 @@ } }, { - "id": 23351, + "id": 25665, "properties": { "east": "tall", "north": "low", @@ -170312,7 +174969,7 @@ } }, { - "id": 23352, + "id": 25666, "properties": { "east": "tall", "north": "low", @@ -170323,7 +174980,7 @@ } }, { - "id": 23353, + "id": 25667, "properties": { "east": "tall", "north": "low", @@ -170334,7 +174991,7 @@ } }, { - "id": 23354, + "id": 25668, "properties": { "east": "tall", "north": "low", @@ -170345,7 +175002,7 @@ } }, { - "id": 23355, + "id": 25669, "properties": { "east": "tall", "north": "low", @@ -170356,7 +175013,7 @@ } }, { - "id": 23356, + "id": 25670, "properties": { "east": "tall", "north": "low", @@ -170367,7 +175024,7 @@ } }, { - "id": 23357, + "id": 25671, "properties": { "east": "tall", "north": "low", @@ -170378,7 +175035,7 @@ } }, { - "id": 23358, + "id": 25672, "properties": { "east": "tall", "north": "low", @@ -170389,7 +175046,7 @@ } }, { - "id": 23359, + "id": 25673, "properties": { "east": "tall", "north": "low", @@ -170400,7 +175057,7 @@ } }, { - "id": 23360, + "id": 25674, "properties": { "east": "tall", "north": "low", @@ -170411,7 +175068,7 @@ } }, { - "id": 23361, + "id": 25675, "properties": { "east": "tall", "north": "low", @@ -170422,7 +175079,7 @@ } }, { - "id": 23362, + "id": 25676, "properties": { "east": "tall", "north": "low", @@ -170433,7 +175090,7 @@ } }, { - "id": 23363, + "id": 25677, "properties": { "east": "tall", "north": "low", @@ -170444,7 +175101,7 @@ } }, { - "id": 23364, + "id": 25678, "properties": { "east": "tall", "north": "low", @@ -170455,7 +175112,7 @@ } }, { - "id": 23365, + "id": 25679, "properties": { "east": "tall", "north": "low", @@ -170466,7 +175123,7 @@ } }, { - "id": 23366, + "id": 25680, "properties": { "east": "tall", "north": "low", @@ -170477,7 +175134,7 @@ } }, { - "id": 23367, + "id": 25681, "properties": { "east": "tall", "north": "low", @@ -170488,7 +175145,7 @@ } }, { - "id": 23368, + "id": 25682, "properties": { "east": "tall", "north": "low", @@ -170499,7 +175156,7 @@ } }, { - "id": 23369, + "id": 25683, "properties": { "east": "tall", "north": "low", @@ -170510,7 +175167,7 @@ } }, { - "id": 23370, + "id": 25684, "properties": { "east": "tall", "north": "low", @@ -170521,7 +175178,7 @@ } }, { - "id": 23371, + "id": 25685, "properties": { "east": "tall", "north": "low", @@ -170532,7 +175189,7 @@ } }, { - "id": 23372, + "id": 25686, "properties": { "east": "tall", "north": "low", @@ -170543,7 +175200,7 @@ } }, { - "id": 23373, + "id": 25687, "properties": { "east": "tall", "north": "low", @@ -170554,7 +175211,7 @@ } }, { - "id": 23374, + "id": 25688, "properties": { "east": "tall", "north": "low", @@ -170565,7 +175222,7 @@ } }, { - "id": 23375, + "id": 25689, "properties": { "east": "tall", "north": "low", @@ -170576,7 +175233,7 @@ } }, { - "id": 23376, + "id": 25690, "properties": { "east": "tall", "north": "low", @@ -170587,7 +175244,7 @@ } }, { - "id": 23377, + "id": 25691, "properties": { "east": "tall", "north": "low", @@ -170598,7 +175255,7 @@ } }, { - "id": 23378, + "id": 25692, "properties": { "east": "tall", "north": "low", @@ -170609,7 +175266,7 @@ } }, { - "id": 23379, + "id": 25693, "properties": { "east": "tall", "north": "tall", @@ -170620,7 +175277,7 @@ } }, { - "id": 23380, + "id": 25694, "properties": { "east": "tall", "north": "tall", @@ -170631,7 +175288,7 @@ } }, { - "id": 23381, + "id": 25695, "properties": { "east": "tall", "north": "tall", @@ -170642,7 +175299,7 @@ } }, { - "id": 23382, + "id": 25696, "properties": { "east": "tall", "north": "tall", @@ -170653,7 +175310,7 @@ } }, { - "id": 23383, + "id": 25697, "properties": { "east": "tall", "north": "tall", @@ -170664,7 +175321,7 @@ } }, { - "id": 23384, + "id": 25698, "properties": { "east": "tall", "north": "tall", @@ -170675,7 +175332,7 @@ } }, { - "id": 23385, + "id": 25699, "properties": { "east": "tall", "north": "tall", @@ -170686,7 +175343,7 @@ } }, { - "id": 23386, + "id": 25700, "properties": { "east": "tall", "north": "tall", @@ -170697,7 +175354,7 @@ } }, { - "id": 23387, + "id": 25701, "properties": { "east": "tall", "north": "tall", @@ -170708,7 +175365,7 @@ } }, { - "id": 23388, + "id": 25702, "properties": { "east": "tall", "north": "tall", @@ -170719,7 +175376,7 @@ } }, { - "id": 23389, + "id": 25703, "properties": { "east": "tall", "north": "tall", @@ -170730,7 +175387,7 @@ } }, { - "id": 23390, + "id": 25704, "properties": { "east": "tall", "north": "tall", @@ -170741,7 +175398,7 @@ } }, { - "id": 23391, + "id": 25705, "properties": { "east": "tall", "north": "tall", @@ -170752,7 +175409,7 @@ } }, { - "id": 23392, + "id": 25706, "properties": { "east": "tall", "north": "tall", @@ -170763,7 +175420,7 @@ } }, { - "id": 23393, + "id": 25707, "properties": { "east": "tall", "north": "tall", @@ -170774,7 +175431,7 @@ } }, { - "id": 23394, + "id": 25708, "properties": { "east": "tall", "north": "tall", @@ -170785,7 +175442,7 @@ } }, { - "id": 23395, + "id": 25709, "properties": { "east": "tall", "north": "tall", @@ -170796,7 +175453,7 @@ } }, { - "id": 23396, + "id": 25710, "properties": { "east": "tall", "north": "tall", @@ -170807,7 +175464,7 @@ } }, { - "id": 23397, + "id": 25711, "properties": { "east": "tall", "north": "tall", @@ -170818,7 +175475,7 @@ } }, { - "id": 23398, + "id": 25712, "properties": { "east": "tall", "north": "tall", @@ -170829,7 +175486,7 @@ } }, { - "id": 23399, + "id": 25713, "properties": { "east": "tall", "north": "tall", @@ -170840,7 +175497,7 @@ } }, { - "id": 23400, + "id": 25714, "properties": { "east": "tall", "north": "tall", @@ -170851,7 +175508,7 @@ } }, { - "id": 23401, + "id": 25715, "properties": { "east": "tall", "north": "tall", @@ -170862,7 +175519,7 @@ } }, { - "id": 23402, + "id": 25716, "properties": { "east": "tall", "north": "tall", @@ -170873,7 +175530,7 @@ } }, { - "id": 23403, + "id": 25717, "properties": { "east": "tall", "north": "tall", @@ -170884,7 +175541,7 @@ } }, { - "id": 23404, + "id": 25718, "properties": { "east": "tall", "north": "tall", @@ -170895,7 +175552,7 @@ } }, { - "id": 23405, + "id": 25719, "properties": { "east": "tall", "north": "tall", @@ -170906,7 +175563,7 @@ } }, { - "id": 23406, + "id": 25720, "properties": { "east": "tall", "north": "tall", @@ -170917,7 +175574,7 @@ } }, { - "id": 23407, + "id": 25721, "properties": { "east": "tall", "north": "tall", @@ -170928,7 +175585,7 @@ } }, { - "id": 23408, + "id": 25722, "properties": { "east": "tall", "north": "tall", @@ -170939,7 +175596,7 @@ } }, { - "id": 23409, + "id": 25723, "properties": { "east": "tall", "north": "tall", @@ -170950,7 +175607,7 @@ } }, { - "id": 23410, + "id": 25724, "properties": { "east": "tall", "north": "tall", @@ -170961,7 +175618,7 @@ } }, { - "id": 23411, + "id": 25725, "properties": { "east": "tall", "north": "tall", @@ -170972,7 +175629,7 @@ } }, { - "id": 23412, + "id": 25726, "properties": { "east": "tall", "north": "tall", @@ -170983,7 +175640,7 @@ } }, { - "id": 23413, + "id": 25727, "properties": { "east": "tall", "north": "tall", @@ -170994,7 +175651,7 @@ } }, { - "id": 23414, + "id": 25728, "properties": { "east": "tall", "north": "tall", @@ -172634,613 +177291,15 @@ } ] }, - "minecraft:poppy": { - "states": [ - { - "default": true, - "id": 2077 - } - ] - }, - "minecraft:potatoes": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - }, - "states": [ - { - "default": true, - "id": 8603, - "properties": { - "age": "0" - } - }, - { - "id": 8604, - "properties": { - "age": "1" - } - }, - { - "id": 8605, - "properties": { - "age": "2" - } - }, - { - "id": 8606, - "properties": { - "age": "3" - } - }, - { - "id": 8607, - "properties": { - "age": "4" - } - }, - { - "id": 8608, - "properties": { - "age": "5" - } - }, - { - "id": 8609, - "properties": { - "age": "6" - } - }, - { - "id": 8610, - "properties": { - "age": "7" - } - } - ] - }, - "minecraft:potted_acacia_sapling": { - "states": [ - { - "default": true, - "id": 8573 - } - ] - }, - "minecraft:potted_allium": { - "states": [ - { - "default": true, - "id": 8581 - } - ] - }, - "minecraft:potted_azalea_bush": { - "states": [ - { - "default": true, - "id": 24247 - } - ] - }, - "minecraft:potted_azure_bluet": { - "states": [ - { - "default": true, - "id": 8582 - } - ] - }, - "minecraft:potted_bamboo": { - "states": [ - { - "default": true, - "id": 12957 - } - ] - }, - "minecraft:potted_birch_sapling": { - "states": [ - { - "default": true, - "id": 8571 - } - ] - }, - "minecraft:potted_blue_orchid": { - "states": [ - { - "default": true, - "id": 8580 - } - ] - }, - "minecraft:potted_brown_mushroom": { - "states": [ - { - "default": true, - "id": 8592 - } - ] - }, - "minecraft:potted_cactus": { - "states": [ - { - "default": true, - "id": 8594 - } - ] - }, - "minecraft:potted_cherry_sapling": { - "states": [ - { - "default": true, - "id": 8574 - } - ] - }, - "minecraft:potted_cornflower": { - "states": [ - { - "default": true, - "id": 8588 - } - ] - }, - "minecraft:potted_crimson_fungus": { - "states": [ - { - "default": true, - "id": 19455 - } - ] - }, - "minecraft:potted_crimson_roots": { - "states": [ - { - "default": true, - "id": 19457 - } - ] - }, - "minecraft:potted_dandelion": { - "states": [ - { - "default": true, - "id": 8578 - } - ] - }, - "minecraft:potted_dark_oak_sapling": { - "states": [ - { - "default": true, - "id": 8575 - } - ] - }, - "minecraft:potted_dead_bush": { - "states": [ - { - "default": true, - "id": 8593 - } - ] - }, - "minecraft:potted_fern": { - "states": [ - { - "default": true, - "id": 8577 - } - ] - }, - "minecraft:potted_flowering_azalea_bush": { - "states": [ - { - "default": true, - "id": 24248 - } - ] - }, - "minecraft:potted_jungle_sapling": { - "states": [ - { - "default": true, - "id": 8572 - } - ] - }, - "minecraft:potted_lily_of_the_valley": { - "states": [ - { - "default": true, - "id": 8589 - } - ] - }, - "minecraft:potted_mangrove_propagule": { - "states": [ - { - "default": true, - "id": 8576 - } - ] - }, - "minecraft:potted_oak_sapling": { - "states": [ - { - "default": true, - "id": 8569 - } - ] - }, - "minecraft:potted_orange_tulip": { - "states": [ - { - "default": true, - "id": 8584 - } - ] - }, - "minecraft:potted_oxeye_daisy": { - "states": [ - { - "default": true, - "id": 8587 - } - ] - }, - "minecraft:potted_pink_tulip": { - "states": [ - { - "default": true, - "id": 8586 - } - ] - }, - "minecraft:potted_poppy": { - "states": [ - { - "default": true, - "id": 8579 - } - ] - }, - "minecraft:potted_red_mushroom": { - "states": [ - { - "default": true, - "id": 8591 - } - ] - }, - "minecraft:potted_red_tulip": { - "states": [ - { - "default": true, - "id": 8583 - } - ] - }, - "minecraft:potted_spruce_sapling": { - "states": [ - { - "default": true, - "id": 8570 - } - ] - }, - "minecraft:potted_torchflower": { - "states": [ - { - "default": true, - "id": 8568 - } - ] - }, - "minecraft:potted_warped_fungus": { - "states": [ - { - "default": true, - "id": 19456 - } - ] - }, - "minecraft:potted_warped_roots": { - "states": [ - { - "default": true, - "id": 19458 - } - ] - }, - "minecraft:potted_white_tulip": { - "states": [ - { - "default": true, - "id": 8585 - } - ] - }, - "minecraft:potted_wither_rose": { - "states": [ - { - "default": true, - "id": 8590 - } - ] - }, - "minecraft:powder_snow": { - "states": [ - { - "default": true, - "id": 21084 - } - ] - }, - "minecraft:powder_snow_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ - { - "default": true, - "id": 7403, - "properties": { - "level": "1" - } - }, - { - "id": 7404, - "properties": { - "level": "2" - } - }, - { - "id": 7405, - "properties": { - "level": "3" - } - } - ] - }, - "minecraft:powered_rail": { - "properties": { - "powered": [ - "true", - "false" - ], - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 1944, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "id": 1945, - "properties": { - "powered": "true", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1946, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1947, - "properties": { - "powered": "true", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1948, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1949, - "properties": { - "powered": "true", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1950, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1951, - "properties": { - "powered": "true", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1952, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1953, - "properties": { - "powered": "true", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1954, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1955, - "properties": { - "powered": "true", - "shape": "ascending_south", - "waterlogged": "false" - } - }, - { - "id": 1956, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 1957, - "properties": { - "powered": "false", - "shape": "north_south", - "waterlogged": "false" - } - }, - { - "id": 1958, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "true" - } - }, - { - "id": 1959, - "properties": { - "powered": "false", - "shape": "east_west", - "waterlogged": "false" - } - }, - { - "id": 1960, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "true" - } - }, - { - "id": 1961, - "properties": { - "powered": "false", - "shape": "ascending_east", - "waterlogged": "false" - } - }, - { - "id": 1962, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "true" - } - }, - { - "id": 1963, - "properties": { - "powered": "false", - "shape": "ascending_west", - "waterlogged": "false" - } - }, - { - "id": 1964, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "true" - } - }, - { - "id": 1965, - "properties": { - "powered": "false", - "shape": "ascending_north", - "waterlogged": "false" - } - }, - { - "id": 1966, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "true" - } - }, - { - "id": 1967, - "properties": { - "powered": "false", - "shape": "ascending_south", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine": { + "minecraft:polished_tuff": { "states": [ { "default": true, - "id": 10463 + "id": 21492 } ] }, - "minecraft:prismarine_brick_slab": { + "minecraft:polished_tuff_slab": { "properties": { "type": [ "top", @@ -173254,21 +177313,21 @@ }, "states": [ { - "id": 10712, + "id": 21493, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 10713, + "id": 21494, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 10714, + "id": 21495, "properties": { "type": "bottom", "waterlogged": "true" @@ -173276,21 +177335,21 @@ }, { "default": true, - "id": 10715, + "id": 21496, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 10716, + "id": 21497, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 10717, + "id": 21498, "properties": { "type": "double", "waterlogged": "false" @@ -173298,7 +177357,7 @@ } ] }, - "minecraft:prismarine_brick_stairs": { + "minecraft:polished_tuff_stairs": { "properties": { "facing": [ "north", @@ -173324,821 +177383,7 @@ }, "states": [ { - "id": 10546, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10547, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10548, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10549, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10550, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10551, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10552, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10553, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10554, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10555, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10556, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10557, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10558, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10559, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10560, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10561, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10562, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10563, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10564, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10565, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10566, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10567, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10568, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10569, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10570, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10571, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10572, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10573, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10574, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10575, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10576, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10577, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10578, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10579, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10580, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10581, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10582, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10583, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10584, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10585, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10586, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10587, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10588, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10589, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10590, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10591, - "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10592, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10593, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10594, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10595, - "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10596, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10597, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10598, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10599, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10600, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10601, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10602, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10603, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10604, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10605, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10606, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10607, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10608, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10609, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10610, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10611, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10612, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10613, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10614, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10615, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 10616, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 10617, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 10618, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 10619, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 10620, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 10621, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 10622, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 10623, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 10624, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 10625, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_bricks": { - "states": [ - { - "default": true, - "id": 10464 - } - ] - }, - "minecraft:prismarine_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10706, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 10707, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 10708, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 10709, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 10710, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 10711, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:prismarine_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 10466, + "id": 21499, "properties": { "facing": "north", "half": "top", @@ -174147,7 +177392,7 @@ } }, { - "id": 10467, + "id": 21500, "properties": { "facing": "north", "half": "top", @@ -174156,7 +177401,7 @@ } }, { - "id": 10468, + "id": 21501, "properties": { "facing": "north", "half": "top", @@ -174165,7 +177410,7 @@ } }, { - "id": 10469, + "id": 21502, "properties": { "facing": "north", "half": "top", @@ -174174,7 +177419,7 @@ } }, { - "id": 10470, + "id": 21503, "properties": { "facing": "north", "half": "top", @@ -174183,7 +177428,7 @@ } }, { - "id": 10471, + "id": 21504, "properties": { "facing": "north", "half": "top", @@ -174192,7 +177437,7 @@ } }, { - "id": 10472, + "id": 21505, "properties": { "facing": "north", "half": "top", @@ -174201,7 +177446,7 @@ } }, { - "id": 10473, + "id": 21506, "properties": { "facing": "north", "half": "top", @@ -174210,7 +177455,7 @@ } }, { - "id": 10474, + "id": 21507, "properties": { "facing": "north", "half": "top", @@ -174219,7 +177464,7 @@ } }, { - "id": 10475, + "id": 21508, "properties": { "facing": "north", "half": "top", @@ -174228,7 +177473,7 @@ } }, { - "id": 10476, + "id": 21509, "properties": { "facing": "north", "half": "bottom", @@ -174238,7 +177483,7 @@ }, { "default": true, - "id": 10477, + "id": 21510, "properties": { "facing": "north", "half": "bottom", @@ -174247,7 +177492,7 @@ } }, { - "id": 10478, + "id": 21511, "properties": { "facing": "north", "half": "bottom", @@ -174256,7 +177501,7 @@ } }, { - "id": 10479, + "id": 21512, "properties": { "facing": "north", "half": "bottom", @@ -174265,7 +177510,7 @@ } }, { - "id": 10480, + "id": 21513, "properties": { "facing": "north", "half": "bottom", @@ -174274,7 +177519,7 @@ } }, { - "id": 10481, + "id": 21514, "properties": { "facing": "north", "half": "bottom", @@ -174283,7 +177528,7 @@ } }, { - "id": 10482, + "id": 21515, "properties": { "facing": "north", "half": "bottom", @@ -174292,7 +177537,7 @@ } }, { - "id": 10483, + "id": 21516, "properties": { "facing": "north", "half": "bottom", @@ -174301,7 +177546,7 @@ } }, { - "id": 10484, + "id": 21517, "properties": { "facing": "north", "half": "bottom", @@ -174310,7 +177555,7 @@ } }, { - "id": 10485, + "id": 21518, "properties": { "facing": "north", "half": "bottom", @@ -174319,7 +177564,7 @@ } }, { - "id": 10486, + "id": 21519, "properties": { "facing": "south", "half": "top", @@ -174328,7 +177573,7 @@ } }, { - "id": 10487, + "id": 21520, "properties": { "facing": "south", "half": "top", @@ -174337,7 +177582,7 @@ } }, { - "id": 10488, + "id": 21521, "properties": { "facing": "south", "half": "top", @@ -174346,7 +177591,7 @@ } }, { - "id": 10489, + "id": 21522, "properties": { "facing": "south", "half": "top", @@ -174355,7 +177600,7 @@ } }, { - "id": 10490, + "id": 21523, "properties": { "facing": "south", "half": "top", @@ -174364,7 +177609,7 @@ } }, { - "id": 10491, + "id": 21524, "properties": { "facing": "south", "half": "top", @@ -174373,7 +177618,7 @@ } }, { - "id": 10492, + "id": 21525, "properties": { "facing": "south", "half": "top", @@ -174382,7 +177627,7 @@ } }, { - "id": 10493, + "id": 21526, "properties": { "facing": "south", "half": "top", @@ -174391,7 +177636,7 @@ } }, { - "id": 10494, + "id": 21527, "properties": { "facing": "south", "half": "top", @@ -174400,7 +177645,7 @@ } }, { - "id": 10495, + "id": 21528, "properties": { "facing": "south", "half": "top", @@ -174409,7 +177654,7 @@ } }, { - "id": 10496, + "id": 21529, "properties": { "facing": "south", "half": "bottom", @@ -174418,7 +177663,7 @@ } }, { - "id": 10497, + "id": 21530, "properties": { "facing": "south", "half": "bottom", @@ -174427,7 +177672,7 @@ } }, { - "id": 10498, + "id": 21531, "properties": { "facing": "south", "half": "bottom", @@ -174436,7 +177681,7 @@ } }, { - "id": 10499, + "id": 21532, "properties": { "facing": "south", "half": "bottom", @@ -174445,7 +177690,7 @@ } }, { - "id": 10500, + "id": 21533, "properties": { "facing": "south", "half": "bottom", @@ -174454,7 +177699,7 @@ } }, { - "id": 10501, + "id": 21534, "properties": { "facing": "south", "half": "bottom", @@ -174463,7 +177708,7 @@ } }, { - "id": 10502, + "id": 21535, "properties": { "facing": "south", "half": "bottom", @@ -174472,7 +177717,7 @@ } }, { - "id": 10503, + "id": 21536, "properties": { "facing": "south", "half": "bottom", @@ -174481,7 +177726,7 @@ } }, { - "id": 10504, + "id": 21537, "properties": { "facing": "south", "half": "bottom", @@ -174490,7 +177735,7 @@ } }, { - "id": 10505, + "id": 21538, "properties": { "facing": "south", "half": "bottom", @@ -174499,7 +177744,7 @@ } }, { - "id": 10506, + "id": 21539, "properties": { "facing": "west", "half": "top", @@ -174508,7 +177753,7 @@ } }, { - "id": 10507, + "id": 21540, "properties": { "facing": "west", "half": "top", @@ -174517,7 +177762,7 @@ } }, { - "id": 10508, + "id": 21541, "properties": { "facing": "west", "half": "top", @@ -174526,7 +177771,7 @@ } }, { - "id": 10509, + "id": 21542, "properties": { "facing": "west", "half": "top", @@ -174535,7 +177780,7 @@ } }, { - "id": 10510, + "id": 21543, "properties": { "facing": "west", "half": "top", @@ -174544,7 +177789,7 @@ } }, { - "id": 10511, + "id": 21544, "properties": { "facing": "west", "half": "top", @@ -174553,7 +177798,7 @@ } }, { - "id": 10512, + "id": 21545, "properties": { "facing": "west", "half": "top", @@ -174562,7 +177807,7 @@ } }, { - "id": 10513, + "id": 21546, "properties": { "facing": "west", "half": "top", @@ -174571,7 +177816,7 @@ } }, { - "id": 10514, + "id": 21547, "properties": { "facing": "west", "half": "top", @@ -174580,7 +177825,7 @@ } }, { - "id": 10515, + "id": 21548, "properties": { "facing": "west", "half": "top", @@ -174589,7 +177834,7 @@ } }, { - "id": 10516, + "id": 21549, "properties": { "facing": "west", "half": "bottom", @@ -174598,7 +177843,7 @@ } }, { - "id": 10517, + "id": 21550, "properties": { "facing": "west", "half": "bottom", @@ -174607,7 +177852,7 @@ } }, { - "id": 10518, + "id": 21551, "properties": { "facing": "west", "half": "bottom", @@ -174616,7 +177861,7 @@ } }, { - "id": 10519, + "id": 21552, "properties": { "facing": "west", "half": "bottom", @@ -174625,7 +177870,7 @@ } }, { - "id": 10520, + "id": 21553, "properties": { "facing": "west", "half": "bottom", @@ -174634,7 +177879,7 @@ } }, { - "id": 10521, + "id": 21554, "properties": { "facing": "west", "half": "bottom", @@ -174643,7 +177888,7 @@ } }, { - "id": 10522, + "id": 21555, "properties": { "facing": "west", "half": "bottom", @@ -174652,7 +177897,7 @@ } }, { - "id": 10523, + "id": 21556, "properties": { "facing": "west", "half": "bottom", @@ -174661,7 +177906,7 @@ } }, { - "id": 10524, + "id": 21557, "properties": { "facing": "west", "half": "bottom", @@ -174670,7 +177915,7 @@ } }, { - "id": 10525, + "id": 21558, "properties": { "facing": "west", "half": "bottom", @@ -174679,7 +177924,7 @@ } }, { - "id": 10526, + "id": 21559, "properties": { "facing": "east", "half": "top", @@ -174688,7 +177933,7 @@ } }, { - "id": 10527, + "id": 21560, "properties": { "facing": "east", "half": "top", @@ -174697,7 +177942,7 @@ } }, { - "id": 10528, + "id": 21561, "properties": { "facing": "east", "half": "top", @@ -174706,7 +177951,7 @@ } }, { - "id": 10529, + "id": 21562, "properties": { "facing": "east", "half": "top", @@ -174715,7 +177960,7 @@ } }, { - "id": 10530, + "id": 21563, "properties": { "facing": "east", "half": "top", @@ -174724,7 +177969,7 @@ } }, { - "id": 10531, + "id": 21564, "properties": { "facing": "east", "half": "top", @@ -174733,7 +177978,7 @@ } }, { - "id": 10532, + "id": 21565, "properties": { "facing": "east", "half": "top", @@ -174742,7 +177987,7 @@ } }, { - "id": 10533, + "id": 21566, "properties": { "facing": "east", "half": "top", @@ -174751,7 +177996,7 @@ } }, { - "id": 10534, + "id": 21567, "properties": { "facing": "east", "half": "top", @@ -174760,7 +178005,7 @@ } }, { - "id": 10535, + "id": 21568, "properties": { "facing": "east", "half": "top", @@ -174769,7 +178014,7 @@ } }, { - "id": 10536, + "id": 21569, "properties": { "facing": "east", "half": "bottom", @@ -174778,7 +178023,7 @@ } }, { - "id": 10537, + "id": 21570, "properties": { "facing": "east", "half": "bottom", @@ -174787,7 +178032,7 @@ } }, { - "id": 10538, + "id": 21571, "properties": { "facing": "east", "half": "bottom", @@ -174796,7 +178041,7 @@ } }, { - "id": 10539, + "id": 21572, "properties": { "facing": "east", "half": "bottom", @@ -174805,7 +178050,7 @@ } }, { - "id": 10540, + "id": 21573, "properties": { "facing": "east", "half": "bottom", @@ -174814,7 +178059,7 @@ } }, { - "id": 10541, + "id": 21574, "properties": { "facing": "east", "half": "bottom", @@ -174823,7 +178068,7 @@ } }, { - "id": 10542, + "id": 21575, "properties": { "facing": "east", "half": "bottom", @@ -174832,7 +178077,7 @@ } }, { - "id": 10543, + "id": 21576, "properties": { "facing": "east", "half": "bottom", @@ -174841,7 +178086,7 @@ } }, { - "id": 10544, + "id": 21577, "properties": { "facing": "east", "half": "bottom", @@ -174850,7 +178095,7 @@ } }, { - "id": 10545, + "id": 21578, "properties": { "facing": "east", "half": "bottom", @@ -174860,7 +178105,7 @@ } ] }, - "minecraft:prismarine_wall": { + "minecraft:polished_tuff_wall": { "properties": { "east": [ "none", @@ -174893,7 +178138,7 @@ }, "states": [ { - "id": 14484, + "id": 21579, "properties": { "east": "none", "north": "none", @@ -174904,7 +178149,7 @@ } }, { - "id": 14485, + "id": 21580, "properties": { "east": "none", "north": "none", @@ -174915,7 +178160,7 @@ } }, { - "id": 14486, + "id": 21581, "properties": { "east": "none", "north": "none", @@ -174927,7 +178172,7 @@ }, { "default": true, - "id": 14487, + "id": 21582, "properties": { "east": "none", "north": "none", @@ -174938,7 +178183,7 @@ } }, { - "id": 14488, + "id": 21583, "properties": { "east": "none", "north": "none", @@ -174949,7 +178194,7 @@ } }, { - "id": 14489, + "id": 21584, "properties": { "east": "none", "north": "none", @@ -174960,7 +178205,7 @@ } }, { - "id": 14490, + "id": 21585, "properties": { "east": "none", "north": "none", @@ -174971,7 +178216,7 @@ } }, { - "id": 14491, + "id": 21586, "properties": { "east": "none", "north": "none", @@ -174982,7 +178227,7 @@ } }, { - "id": 14492, + "id": 21587, "properties": { "east": "none", "north": "none", @@ -174993,7 +178238,7 @@ } }, { - "id": 14493, + "id": 21588, "properties": { "east": "none", "north": "none", @@ -175004,7 +178249,7 @@ } }, { - "id": 14494, + "id": 21589, "properties": { "east": "none", "north": "none", @@ -175015,7 +178260,7 @@ } }, { - "id": 14495, + "id": 21590, "properties": { "east": "none", "north": "none", @@ -175026,7 +178271,7 @@ } }, { - "id": 14496, + "id": 21591, "properties": { "east": "none", "north": "none", @@ -175037,7 +178282,7 @@ } }, { - "id": 14497, + "id": 21592, "properties": { "east": "none", "north": "none", @@ -175048,7 +178293,7 @@ } }, { - "id": 14498, + "id": 21593, "properties": { "east": "none", "north": "none", @@ -175059,7 +178304,7 @@ } }, { - "id": 14499, + "id": 21594, "properties": { "east": "none", "north": "none", @@ -175070,7 +178315,7 @@ } }, { - "id": 14500, + "id": 21595, "properties": { "east": "none", "north": "none", @@ -175081,7 +178326,7 @@ } }, { - "id": 14501, + "id": 21596, "properties": { "east": "none", "north": "none", @@ -175092,7 +178337,7 @@ } }, { - "id": 14502, + "id": 21597, "properties": { "east": "none", "north": "none", @@ -175103,7 +178348,7 @@ } }, { - "id": 14503, + "id": 21598, "properties": { "east": "none", "north": "none", @@ -175114,7 +178359,7 @@ } }, { - "id": 14504, + "id": 21599, "properties": { "east": "none", "north": "none", @@ -175125,7 +178370,7 @@ } }, { - "id": 14505, + "id": 21600, "properties": { "east": "none", "north": "none", @@ -175136,7 +178381,7 @@ } }, { - "id": 14506, + "id": 21601, "properties": { "east": "none", "north": "none", @@ -175147,7 +178392,7 @@ } }, { - "id": 14507, + "id": 21602, "properties": { "east": "none", "north": "none", @@ -175158,7 +178403,7 @@ } }, { - "id": 14508, + "id": 21603, "properties": { "east": "none", "north": "none", @@ -175169,7 +178414,7 @@ } }, { - "id": 14509, + "id": 21604, "properties": { "east": "none", "north": "none", @@ -175180,7 +178425,7 @@ } }, { - "id": 14510, + "id": 21605, "properties": { "east": "none", "north": "none", @@ -175191,7 +178436,7 @@ } }, { - "id": 14511, + "id": 21606, "properties": { "east": "none", "north": "none", @@ -175202,7 +178447,7 @@ } }, { - "id": 14512, + "id": 21607, "properties": { "east": "none", "north": "none", @@ -175213,7 +178458,7 @@ } }, { - "id": 14513, + "id": 21608, "properties": { "east": "none", "north": "none", @@ -175224,7 +178469,7 @@ } }, { - "id": 14514, + "id": 21609, "properties": { "east": "none", "north": "none", @@ -175235,7 +178480,7 @@ } }, { - "id": 14515, + "id": 21610, "properties": { "east": "none", "north": "none", @@ -175246,7 +178491,7 @@ } }, { - "id": 14516, + "id": 21611, "properties": { "east": "none", "north": "none", @@ -175257,7 +178502,7 @@ } }, { - "id": 14517, + "id": 21612, "properties": { "east": "none", "north": "none", @@ -175268,7 +178513,7 @@ } }, { - "id": 14518, + "id": 21613, "properties": { "east": "none", "north": "none", @@ -175279,7 +178524,7 @@ } }, { - "id": 14519, + "id": 21614, "properties": { "east": "none", "north": "none", @@ -175290,7 +178535,7 @@ } }, { - "id": 14520, + "id": 21615, "properties": { "east": "none", "north": "low", @@ -175301,7 +178546,7 @@ } }, { - "id": 14521, + "id": 21616, "properties": { "east": "none", "north": "low", @@ -175312,7 +178557,7 @@ } }, { - "id": 14522, + "id": 21617, "properties": { "east": "none", "north": "low", @@ -175323,7 +178568,7 @@ } }, { - "id": 14523, + "id": 21618, "properties": { "east": "none", "north": "low", @@ -175334,7 +178579,7 @@ } }, { - "id": 14524, + "id": 21619, "properties": { "east": "none", "north": "low", @@ -175345,7 +178590,7 @@ } }, { - "id": 14525, + "id": 21620, "properties": { "east": "none", "north": "low", @@ -175356,7 +178601,7 @@ } }, { - "id": 14526, + "id": 21621, "properties": { "east": "none", "north": "low", @@ -175367,7 +178612,7 @@ } }, { - "id": 14527, + "id": 21622, "properties": { "east": "none", "north": "low", @@ -175378,7 +178623,7 @@ } }, { - "id": 14528, + "id": 21623, "properties": { "east": "none", "north": "low", @@ -175389,7 +178634,7 @@ } }, { - "id": 14529, + "id": 21624, "properties": { "east": "none", "north": "low", @@ -175400,7 +178645,7 @@ } }, { - "id": 14530, + "id": 21625, "properties": { "east": "none", "north": "low", @@ -175411,7 +178656,7 @@ } }, { - "id": 14531, + "id": 21626, "properties": { "east": "none", "north": "low", @@ -175422,7 +178667,7 @@ } }, { - "id": 14532, + "id": 21627, "properties": { "east": "none", "north": "low", @@ -175433,7 +178678,7 @@ } }, { - "id": 14533, + "id": 21628, "properties": { "east": "none", "north": "low", @@ -175444,7 +178689,7 @@ } }, { - "id": 14534, + "id": 21629, "properties": { "east": "none", "north": "low", @@ -175455,7 +178700,7 @@ } }, { - "id": 14535, + "id": 21630, "properties": { "east": "none", "north": "low", @@ -175466,7 +178711,7 @@ } }, { - "id": 14536, + "id": 21631, "properties": { "east": "none", "north": "low", @@ -175477,7 +178722,7 @@ } }, { - "id": 14537, + "id": 21632, "properties": { "east": "none", "north": "low", @@ -175488,7 +178733,7 @@ } }, { - "id": 14538, + "id": 21633, "properties": { "east": "none", "north": "low", @@ -175499,7 +178744,7 @@ } }, { - "id": 14539, + "id": 21634, "properties": { "east": "none", "north": "low", @@ -175510,7 +178755,7 @@ } }, { - "id": 14540, + "id": 21635, "properties": { "east": "none", "north": "low", @@ -175521,7 +178766,7 @@ } }, { - "id": 14541, + "id": 21636, "properties": { "east": "none", "north": "low", @@ -175532,7 +178777,7 @@ } }, { - "id": 14542, + "id": 21637, "properties": { "east": "none", "north": "low", @@ -175543,7 +178788,7 @@ } }, { - "id": 14543, + "id": 21638, "properties": { "east": "none", "north": "low", @@ -175554,7 +178799,7 @@ } }, { - "id": 14544, + "id": 21639, "properties": { "east": "none", "north": "low", @@ -175565,7 +178810,7 @@ } }, { - "id": 14545, + "id": 21640, "properties": { "east": "none", "north": "low", @@ -175576,7 +178821,7 @@ } }, { - "id": 14546, + "id": 21641, "properties": { "east": "none", "north": "low", @@ -175587,7 +178832,7 @@ } }, { - "id": 14547, + "id": 21642, "properties": { "east": "none", "north": "low", @@ -175598,7 +178843,7 @@ } }, { - "id": 14548, + "id": 21643, "properties": { "east": "none", "north": "low", @@ -175609,7 +178854,7 @@ } }, { - "id": 14549, + "id": 21644, "properties": { "east": "none", "north": "low", @@ -175620,7 +178865,7 @@ } }, { - "id": 14550, + "id": 21645, "properties": { "east": "none", "north": "low", @@ -175631,7 +178876,7 @@ } }, { - "id": 14551, + "id": 21646, "properties": { "east": "none", "north": "low", @@ -175642,7 +178887,7 @@ } }, { - "id": 14552, + "id": 21647, "properties": { "east": "none", "north": "low", @@ -175653,7 +178898,7 @@ } }, { - "id": 14553, + "id": 21648, "properties": { "east": "none", "north": "low", @@ -175664,7 +178909,7 @@ } }, { - "id": 14554, + "id": 21649, "properties": { "east": "none", "north": "low", @@ -175675,7 +178920,7 @@ } }, { - "id": 14555, + "id": 21650, "properties": { "east": "none", "north": "low", @@ -175686,7 +178931,7 @@ } }, { - "id": 14556, + "id": 21651, "properties": { "east": "none", "north": "tall", @@ -175697,7 +178942,7 @@ } }, { - "id": 14557, + "id": 21652, "properties": { "east": "none", "north": "tall", @@ -175708,7 +178953,7 @@ } }, { - "id": 14558, + "id": 21653, "properties": { "east": "none", "north": "tall", @@ -175719,7 +178964,7 @@ } }, { - "id": 14559, + "id": 21654, "properties": { "east": "none", "north": "tall", @@ -175730,7 +178975,7 @@ } }, { - "id": 14560, + "id": 21655, "properties": { "east": "none", "north": "tall", @@ -175741,7 +178986,7 @@ } }, { - "id": 14561, + "id": 21656, "properties": { "east": "none", "north": "tall", @@ -175752,7 +178997,7 @@ } }, { - "id": 14562, + "id": 21657, "properties": { "east": "none", "north": "tall", @@ -175763,7 +179008,7 @@ } }, { - "id": 14563, + "id": 21658, "properties": { "east": "none", "north": "tall", @@ -175774,7 +179019,7 @@ } }, { - "id": 14564, + "id": 21659, "properties": { "east": "none", "north": "tall", @@ -175785,7 +179030,7 @@ } }, { - "id": 14565, + "id": 21660, "properties": { "east": "none", "north": "tall", @@ -175796,7 +179041,7 @@ } }, { - "id": 14566, + "id": 21661, "properties": { "east": "none", "north": "tall", @@ -175807,7 +179052,7 @@ } }, { - "id": 14567, + "id": 21662, "properties": { "east": "none", "north": "tall", @@ -175818,7 +179063,7 @@ } }, { - "id": 14568, + "id": 21663, "properties": { "east": "none", "north": "tall", @@ -175829,7 +179074,7 @@ } }, { - "id": 14569, + "id": 21664, "properties": { "east": "none", "north": "tall", @@ -175840,7 +179085,7 @@ } }, { - "id": 14570, + "id": 21665, "properties": { "east": "none", "north": "tall", @@ -175851,7 +179096,7 @@ } }, { - "id": 14571, + "id": 21666, "properties": { "east": "none", "north": "tall", @@ -175862,7 +179107,7 @@ } }, { - "id": 14572, + "id": 21667, "properties": { "east": "none", "north": "tall", @@ -175873,7 +179118,7 @@ } }, { - "id": 14573, + "id": 21668, "properties": { "east": "none", "north": "tall", @@ -175884,7 +179129,7 @@ } }, { - "id": 14574, + "id": 21669, "properties": { "east": "none", "north": "tall", @@ -175895,7 +179140,7 @@ } }, { - "id": 14575, + "id": 21670, "properties": { "east": "none", "north": "tall", @@ -175906,7 +179151,7 @@ } }, { - "id": 14576, + "id": 21671, "properties": { "east": "none", "north": "tall", @@ -175917,7 +179162,7 @@ } }, { - "id": 14577, + "id": 21672, "properties": { "east": "none", "north": "tall", @@ -175928,7 +179173,7 @@ } }, { - "id": 14578, + "id": 21673, "properties": { "east": "none", "north": "tall", @@ -175939,7 +179184,7 @@ } }, { - "id": 14579, + "id": 21674, "properties": { "east": "none", "north": "tall", @@ -175950,7 +179195,7 @@ } }, { - "id": 14580, + "id": 21675, "properties": { "east": "none", "north": "tall", @@ -175961,7 +179206,7 @@ } }, { - "id": 14581, + "id": 21676, "properties": { "east": "none", "north": "tall", @@ -175972,7 +179217,7 @@ } }, { - "id": 14582, + "id": 21677, "properties": { "east": "none", "north": "tall", @@ -175983,7 +179228,7 @@ } }, { - "id": 14583, + "id": 21678, "properties": { "east": "none", "north": "tall", @@ -175994,7 +179239,7 @@ } }, { - "id": 14584, + "id": 21679, "properties": { "east": "none", "north": "tall", @@ -176005,7 +179250,7 @@ } }, { - "id": 14585, + "id": 21680, "properties": { "east": "none", "north": "tall", @@ -176016,7 +179261,7 @@ } }, { - "id": 14586, + "id": 21681, "properties": { "east": "none", "north": "tall", @@ -176027,7 +179272,7 @@ } }, { - "id": 14587, + "id": 21682, "properties": { "east": "none", "north": "tall", @@ -176038,7 +179283,7 @@ } }, { - "id": 14588, + "id": 21683, "properties": { "east": "none", "north": "tall", @@ -176049,7 +179294,7 @@ } }, { - "id": 14589, + "id": 21684, "properties": { "east": "none", "north": "tall", @@ -176060,7 +179305,7 @@ } }, { - "id": 14590, + "id": 21685, "properties": { "east": "none", "north": "tall", @@ -176071,7 +179316,7 @@ } }, { - "id": 14591, + "id": 21686, "properties": { "east": "none", "north": "tall", @@ -176082,7 +179327,7 @@ } }, { - "id": 14592, + "id": 21687, "properties": { "east": "low", "north": "none", @@ -176093,7 +179338,7 @@ } }, { - "id": 14593, + "id": 21688, "properties": { "east": "low", "north": "none", @@ -176104,7 +179349,7 @@ } }, { - "id": 14594, + "id": 21689, "properties": { "east": "low", "north": "none", @@ -176115,7 +179360,7 @@ } }, { - "id": 14595, + "id": 21690, "properties": { "east": "low", "north": "none", @@ -176126,7 +179371,7 @@ } }, { - "id": 14596, + "id": 21691, "properties": { "east": "low", "north": "none", @@ -176137,7 +179382,7 @@ } }, { - "id": 14597, + "id": 21692, "properties": { "east": "low", "north": "none", @@ -176148,7 +179393,7 @@ } }, { - "id": 14598, + "id": 21693, "properties": { "east": "low", "north": "none", @@ -176159,7 +179404,7 @@ } }, { - "id": 14599, + "id": 21694, "properties": { "east": "low", "north": "none", @@ -176170,7 +179415,7 @@ } }, { - "id": 14600, + "id": 21695, "properties": { "east": "low", "north": "none", @@ -176181,7 +179426,7 @@ } }, { - "id": 14601, + "id": 21696, "properties": { "east": "low", "north": "none", @@ -176192,7 +179437,7 @@ } }, { - "id": 14602, + "id": 21697, "properties": { "east": "low", "north": "none", @@ -176203,7 +179448,7 @@ } }, { - "id": 14603, + "id": 21698, "properties": { "east": "low", "north": "none", @@ -176214,7 +179459,7 @@ } }, { - "id": 14604, + "id": 21699, "properties": { "east": "low", "north": "none", @@ -176225,7 +179470,7 @@ } }, { - "id": 14605, + "id": 21700, "properties": { "east": "low", "north": "none", @@ -176236,7 +179481,7 @@ } }, { - "id": 14606, + "id": 21701, "properties": { "east": "low", "north": "none", @@ -176247,7 +179492,7 @@ } }, { - "id": 14607, + "id": 21702, "properties": { "east": "low", "north": "none", @@ -176258,7 +179503,7 @@ } }, { - "id": 14608, + "id": 21703, "properties": { "east": "low", "north": "none", @@ -176269,7 +179514,7 @@ } }, { - "id": 14609, + "id": 21704, "properties": { "east": "low", "north": "none", @@ -176280,7 +179525,7 @@ } }, { - "id": 14610, + "id": 21705, "properties": { "east": "low", "north": "none", @@ -176291,7 +179536,7 @@ } }, { - "id": 14611, + "id": 21706, "properties": { "east": "low", "north": "none", @@ -176302,7 +179547,7 @@ } }, { - "id": 14612, + "id": 21707, "properties": { "east": "low", "north": "none", @@ -176313,7 +179558,7 @@ } }, { - "id": 14613, + "id": 21708, "properties": { "east": "low", "north": "none", @@ -176324,7 +179569,7 @@ } }, { - "id": 14614, + "id": 21709, "properties": { "east": "low", "north": "none", @@ -176335,7 +179580,7 @@ } }, { - "id": 14615, + "id": 21710, "properties": { "east": "low", "north": "none", @@ -176346,7 +179591,7 @@ } }, { - "id": 14616, + "id": 21711, "properties": { "east": "low", "north": "none", @@ -176357,7 +179602,7 @@ } }, { - "id": 14617, + "id": 21712, "properties": { "east": "low", "north": "none", @@ -176368,7 +179613,7 @@ } }, { - "id": 14618, + "id": 21713, "properties": { "east": "low", "north": "none", @@ -176379,7 +179624,7 @@ } }, { - "id": 14619, + "id": 21714, "properties": { "east": "low", "north": "none", @@ -176390,7 +179635,7 @@ } }, { - "id": 14620, + "id": 21715, "properties": { "east": "low", "north": "none", @@ -176401,7 +179646,7 @@ } }, { - "id": 14621, + "id": 21716, "properties": { "east": "low", "north": "none", @@ -176412,7 +179657,7 @@ } }, { - "id": 14622, + "id": 21717, "properties": { "east": "low", "north": "none", @@ -176423,7 +179668,7 @@ } }, { - "id": 14623, + "id": 21718, "properties": { "east": "low", "north": "none", @@ -176434,7 +179679,7 @@ } }, { - "id": 14624, + "id": 21719, "properties": { "east": "low", "north": "none", @@ -176445,7 +179690,7 @@ } }, { - "id": 14625, + "id": 21720, "properties": { "east": "low", "north": "none", @@ -176456,7 +179701,7 @@ } }, { - "id": 14626, + "id": 21721, "properties": { "east": "low", "north": "none", @@ -176467,7 +179712,7 @@ } }, { - "id": 14627, + "id": 21722, "properties": { "east": "low", "north": "none", @@ -176478,7 +179723,7 @@ } }, { - "id": 14628, + "id": 21723, "properties": { "east": "low", "north": "low", @@ -176489,7 +179734,7 @@ } }, { - "id": 14629, + "id": 21724, "properties": { "east": "low", "north": "low", @@ -176500,7 +179745,7 @@ } }, { - "id": 14630, + "id": 21725, "properties": { "east": "low", "north": "low", @@ -176511,7 +179756,7 @@ } }, { - "id": 14631, + "id": 21726, "properties": { "east": "low", "north": "low", @@ -176522,7 +179767,7 @@ } }, { - "id": 14632, + "id": 21727, "properties": { "east": "low", "north": "low", @@ -176533,7 +179778,7 @@ } }, { - "id": 14633, + "id": 21728, "properties": { "east": "low", "north": "low", @@ -176544,7 +179789,7 @@ } }, { - "id": 14634, + "id": 21729, "properties": { "east": "low", "north": "low", @@ -176555,7 +179800,7 @@ } }, { - "id": 14635, + "id": 21730, "properties": { "east": "low", "north": "low", @@ -176566,7 +179811,7 @@ } }, { - "id": 14636, + "id": 21731, "properties": { "east": "low", "north": "low", @@ -176577,7 +179822,7 @@ } }, { - "id": 14637, + "id": 21732, "properties": { "east": "low", "north": "low", @@ -176588,7 +179833,7 @@ } }, { - "id": 14638, + "id": 21733, "properties": { "east": "low", "north": "low", @@ -176599,7 +179844,7 @@ } }, { - "id": 14639, + "id": 21734, "properties": { "east": "low", "north": "low", @@ -176610,7 +179855,7 @@ } }, { - "id": 14640, + "id": 21735, "properties": { "east": "low", "north": "low", @@ -176621,7 +179866,7 @@ } }, { - "id": 14641, + "id": 21736, "properties": { "east": "low", "north": "low", @@ -176632,7 +179877,7 @@ } }, { - "id": 14642, + "id": 21737, "properties": { "east": "low", "north": "low", @@ -176643,7 +179888,7 @@ } }, { - "id": 14643, + "id": 21738, "properties": { "east": "low", "north": "low", @@ -176654,7 +179899,7 @@ } }, { - "id": 14644, + "id": 21739, "properties": { "east": "low", "north": "low", @@ -176665,7 +179910,7 @@ } }, { - "id": 14645, + "id": 21740, "properties": { "east": "low", "north": "low", @@ -176676,7 +179921,7 @@ } }, { - "id": 14646, + "id": 21741, "properties": { "east": "low", "north": "low", @@ -176687,7 +179932,7 @@ } }, { - "id": 14647, + "id": 21742, "properties": { "east": "low", "north": "low", @@ -176698,7 +179943,7 @@ } }, { - "id": 14648, + "id": 21743, "properties": { "east": "low", "north": "low", @@ -176709,7 +179954,7 @@ } }, { - "id": 14649, + "id": 21744, "properties": { "east": "low", "north": "low", @@ -176720,7 +179965,7 @@ } }, { - "id": 14650, + "id": 21745, "properties": { "east": "low", "north": "low", @@ -176731,7 +179976,7 @@ } }, { - "id": 14651, + "id": 21746, "properties": { "east": "low", "north": "low", @@ -176742,7 +179987,7 @@ } }, { - "id": 14652, + "id": 21747, "properties": { "east": "low", "north": "low", @@ -176753,7 +179998,7 @@ } }, { - "id": 14653, + "id": 21748, "properties": { "east": "low", "north": "low", @@ -176764,7 +180009,7 @@ } }, { - "id": 14654, + "id": 21749, "properties": { "east": "low", "north": "low", @@ -176775,7 +180020,7 @@ } }, { - "id": 14655, + "id": 21750, "properties": { "east": "low", "north": "low", @@ -176786,7 +180031,7 @@ } }, { - "id": 14656, + "id": 21751, "properties": { "east": "low", "north": "low", @@ -176797,7 +180042,7 @@ } }, { - "id": 14657, + "id": 21752, "properties": { "east": "low", "north": "low", @@ -176808,7 +180053,7 @@ } }, { - "id": 14658, + "id": 21753, "properties": { "east": "low", "north": "low", @@ -176819,7 +180064,7 @@ } }, { - "id": 14659, + "id": 21754, "properties": { "east": "low", "north": "low", @@ -176830,7 +180075,7 @@ } }, { - "id": 14660, + "id": 21755, "properties": { "east": "low", "north": "low", @@ -176841,7 +180086,7 @@ } }, { - "id": 14661, + "id": 21756, "properties": { "east": "low", "north": "low", @@ -176852,7 +180097,7 @@ } }, { - "id": 14662, + "id": 21757, "properties": { "east": "low", "north": "low", @@ -176863,7 +180108,7 @@ } }, { - "id": 14663, + "id": 21758, "properties": { "east": "low", "north": "low", @@ -176874,7 +180119,7 @@ } }, { - "id": 14664, + "id": 21759, "properties": { "east": "low", "north": "tall", @@ -176885,7 +180130,7 @@ } }, { - "id": 14665, + "id": 21760, "properties": { "east": "low", "north": "tall", @@ -176896,7 +180141,7 @@ } }, { - "id": 14666, + "id": 21761, "properties": { "east": "low", "north": "tall", @@ -176907,7 +180152,7 @@ } }, { - "id": 14667, + "id": 21762, "properties": { "east": "low", "north": "tall", @@ -176918,7 +180163,7 @@ } }, { - "id": 14668, + "id": 21763, "properties": { "east": "low", "north": "tall", @@ -176929,7 +180174,7 @@ } }, { - "id": 14669, + "id": 21764, "properties": { "east": "low", "north": "tall", @@ -176940,7 +180185,7 @@ } }, { - "id": 14670, + "id": 21765, "properties": { "east": "low", "north": "tall", @@ -176951,7 +180196,7 @@ } }, { - "id": 14671, + "id": 21766, "properties": { "east": "low", "north": "tall", @@ -176962,7 +180207,7 @@ } }, { - "id": 14672, + "id": 21767, "properties": { "east": "low", "north": "tall", @@ -176973,7 +180218,7 @@ } }, { - "id": 14673, + "id": 21768, "properties": { "east": "low", "north": "tall", @@ -176984,7 +180229,7 @@ } }, { - "id": 14674, + "id": 21769, "properties": { "east": "low", "north": "tall", @@ -176995,7 +180240,7 @@ } }, { - "id": 14675, + "id": 21770, "properties": { "east": "low", "north": "tall", @@ -177006,7 +180251,7 @@ } }, { - "id": 14676, + "id": 21771, "properties": { "east": "low", "north": "tall", @@ -177017,7 +180262,7 @@ } }, { - "id": 14677, + "id": 21772, "properties": { "east": "low", "north": "tall", @@ -177028,7 +180273,7 @@ } }, { - "id": 14678, + "id": 21773, "properties": { "east": "low", "north": "tall", @@ -177039,7 +180284,7 @@ } }, { - "id": 14679, + "id": 21774, "properties": { "east": "low", "north": "tall", @@ -177050,7 +180295,7 @@ } }, { - "id": 14680, + "id": 21775, "properties": { "east": "low", "north": "tall", @@ -177061,7 +180306,7 @@ } }, { - "id": 14681, + "id": 21776, "properties": { "east": "low", "north": "tall", @@ -177072,7 +180317,7 @@ } }, { - "id": 14682, + "id": 21777, "properties": { "east": "low", "north": "tall", @@ -177083,7 +180328,7 @@ } }, { - "id": 14683, + "id": 21778, "properties": { "east": "low", "north": "tall", @@ -177094,7 +180339,7 @@ } }, { - "id": 14684, + "id": 21779, "properties": { "east": "low", "north": "tall", @@ -177105,7 +180350,7 @@ } }, { - "id": 14685, + "id": 21780, "properties": { "east": "low", "north": "tall", @@ -177116,7 +180361,7 @@ } }, { - "id": 14686, + "id": 21781, "properties": { "east": "low", "north": "tall", @@ -177127,7 +180372,7 @@ } }, { - "id": 14687, + "id": 21782, "properties": { "east": "low", "north": "tall", @@ -177138,7 +180383,7 @@ } }, { - "id": 14688, + "id": 21783, "properties": { "east": "low", "north": "tall", @@ -177149,7 +180394,7 @@ } }, { - "id": 14689, + "id": 21784, "properties": { "east": "low", "north": "tall", @@ -177160,7 +180405,7 @@ } }, { - "id": 14690, + "id": 21785, "properties": { "east": "low", "north": "tall", @@ -177171,7 +180416,7 @@ } }, { - "id": 14691, + "id": 21786, "properties": { "east": "low", "north": "tall", @@ -177182,7 +180427,7 @@ } }, { - "id": 14692, + "id": 21787, "properties": { "east": "low", "north": "tall", @@ -177193,7 +180438,7 @@ } }, { - "id": 14693, + "id": 21788, "properties": { "east": "low", "north": "tall", @@ -177204,7 +180449,7 @@ } }, { - "id": 14694, + "id": 21789, "properties": { "east": "low", "north": "tall", @@ -177215,7 +180460,7 @@ } }, { - "id": 14695, + "id": 21790, "properties": { "east": "low", "north": "tall", @@ -177226,7 +180471,7 @@ } }, { - "id": 14696, + "id": 21791, "properties": { "east": "low", "north": "tall", @@ -177237,7 +180482,7 @@ } }, { - "id": 14697, + "id": 21792, "properties": { "east": "low", "north": "tall", @@ -177248,7 +180493,7 @@ } }, { - "id": 14698, + "id": 21793, "properties": { "east": "low", "north": "tall", @@ -177259,7 +180504,7 @@ } }, { - "id": 14699, + "id": 21794, "properties": { "east": "low", "north": "tall", @@ -177270,7 +180515,7 @@ } }, { - "id": 14700, + "id": 21795, "properties": { "east": "tall", "north": "none", @@ -177281,7 +180526,7 @@ } }, { - "id": 14701, + "id": 21796, "properties": { "east": "tall", "north": "none", @@ -177292,7 +180537,7 @@ } }, { - "id": 14702, + "id": 21797, "properties": { "east": "tall", "north": "none", @@ -177303,7 +180548,7 @@ } }, { - "id": 14703, + "id": 21798, "properties": { "east": "tall", "north": "none", @@ -177314,7 +180559,7 @@ } }, { - "id": 14704, + "id": 21799, "properties": { "east": "tall", "north": "none", @@ -177325,7 +180570,7 @@ } }, { - "id": 14705, + "id": 21800, "properties": { "east": "tall", "north": "none", @@ -177336,7 +180581,7 @@ } }, { - "id": 14706, + "id": 21801, "properties": { "east": "tall", "north": "none", @@ -177347,7 +180592,7 @@ } }, { - "id": 14707, + "id": 21802, "properties": { "east": "tall", "north": "none", @@ -177358,7 +180603,7 @@ } }, { - "id": 14708, + "id": 21803, "properties": { "east": "tall", "north": "none", @@ -177369,7 +180614,7 @@ } }, { - "id": 14709, + "id": 21804, "properties": { "east": "tall", "north": "none", @@ -177380,7 +180625,7 @@ } }, { - "id": 14710, + "id": 21805, "properties": { "east": "tall", "north": "none", @@ -177391,7 +180636,7 @@ } }, { - "id": 14711, + "id": 21806, "properties": { "east": "tall", "north": "none", @@ -177402,7 +180647,7 @@ } }, { - "id": 14712, + "id": 21807, "properties": { "east": "tall", "north": "none", @@ -177413,7 +180658,7 @@ } }, { - "id": 14713, + "id": 21808, "properties": { "east": "tall", "north": "none", @@ -177424,7 +180669,7 @@ } }, { - "id": 14714, + "id": 21809, "properties": { "east": "tall", "north": "none", @@ -177435,7 +180680,7 @@ } }, { - "id": 14715, + "id": 21810, "properties": { "east": "tall", "north": "none", @@ -177446,7 +180691,7 @@ } }, { - "id": 14716, + "id": 21811, "properties": { "east": "tall", "north": "none", @@ -177457,7 +180702,7 @@ } }, { - "id": 14717, + "id": 21812, "properties": { "east": "tall", "north": "none", @@ -177468,7 +180713,7 @@ } }, { - "id": 14718, + "id": 21813, "properties": { "east": "tall", "north": "none", @@ -177479,7 +180724,7 @@ } }, { - "id": 14719, + "id": 21814, "properties": { "east": "tall", "north": "none", @@ -177490,7 +180735,7 @@ } }, { - "id": 14720, + "id": 21815, "properties": { "east": "tall", "north": "none", @@ -177501,7 +180746,7 @@ } }, { - "id": 14721, + "id": 21816, "properties": { "east": "tall", "north": "none", @@ -177512,7 +180757,7 @@ } }, { - "id": 14722, + "id": 21817, "properties": { "east": "tall", "north": "none", @@ -177523,7 +180768,7 @@ } }, { - "id": 14723, + "id": 21818, "properties": { "east": "tall", "north": "none", @@ -177534,7 +180779,7 @@ } }, { - "id": 14724, + "id": 21819, "properties": { "east": "tall", "north": "none", @@ -177545,7 +180790,7 @@ } }, { - "id": 14725, + "id": 21820, "properties": { "east": "tall", "north": "none", @@ -177556,7 +180801,7 @@ } }, { - "id": 14726, + "id": 21821, "properties": { "east": "tall", "north": "none", @@ -177567,7 +180812,7 @@ } }, { - "id": 14727, + "id": 21822, "properties": { "east": "tall", "north": "none", @@ -177578,7 +180823,7 @@ } }, { - "id": 14728, + "id": 21823, "properties": { "east": "tall", "north": "none", @@ -177589,7 +180834,7 @@ } }, { - "id": 14729, + "id": 21824, "properties": { "east": "tall", "north": "none", @@ -177600,7 +180845,7 @@ } }, { - "id": 14730, + "id": 21825, "properties": { "east": "tall", "north": "none", @@ -177611,7 +180856,7 @@ } }, { - "id": 14731, + "id": 21826, "properties": { "east": "tall", "north": "none", @@ -177622,7 +180867,7 @@ } }, { - "id": 14732, + "id": 21827, "properties": { "east": "tall", "north": "none", @@ -177633,7 +180878,7 @@ } }, { - "id": 14733, + "id": 21828, "properties": { "east": "tall", "north": "none", @@ -177644,7 +180889,7 @@ } }, { - "id": 14734, + "id": 21829, "properties": { "east": "tall", "north": "none", @@ -177655,7 +180900,7 @@ } }, { - "id": 14735, + "id": 21830, "properties": { "east": "tall", "north": "none", @@ -177666,7 +180911,7 @@ } }, { - "id": 14736, + "id": 21831, "properties": { "east": "tall", "north": "low", @@ -177677,7 +180922,7 @@ } }, { - "id": 14737, + "id": 21832, "properties": { "east": "tall", "north": "low", @@ -177688,7 +180933,7 @@ } }, { - "id": 14738, + "id": 21833, "properties": { "east": "tall", "north": "low", @@ -177699,7 +180944,7 @@ } }, { - "id": 14739, + "id": 21834, "properties": { "east": "tall", "north": "low", @@ -177710,7 +180955,7 @@ } }, { - "id": 14740, + "id": 21835, "properties": { "east": "tall", "north": "low", @@ -177721,7 +180966,7 @@ } }, { - "id": 14741, + "id": 21836, "properties": { "east": "tall", "north": "low", @@ -177732,7 +180977,7 @@ } }, { - "id": 14742, + "id": 21837, "properties": { "east": "tall", "north": "low", @@ -177743,7 +180988,7 @@ } }, { - "id": 14743, + "id": 21838, "properties": { "east": "tall", "north": "low", @@ -177754,7 +180999,7 @@ } }, { - "id": 14744, + "id": 21839, "properties": { "east": "tall", "north": "low", @@ -177765,7 +181010,7 @@ } }, { - "id": 14745, + "id": 21840, "properties": { "east": "tall", "north": "low", @@ -177776,7 +181021,7 @@ } }, { - "id": 14746, + "id": 21841, "properties": { "east": "tall", "north": "low", @@ -177787,7 +181032,7 @@ } }, { - "id": 14747, + "id": 21842, "properties": { "east": "tall", "north": "low", @@ -177798,7 +181043,7 @@ } }, { - "id": 14748, + "id": 21843, "properties": { "east": "tall", "north": "low", @@ -177809,7 +181054,7 @@ } }, { - "id": 14749, + "id": 21844, "properties": { "east": "tall", "north": "low", @@ -177820,7 +181065,7 @@ } }, { - "id": 14750, + "id": 21845, "properties": { "east": "tall", "north": "low", @@ -177831,7 +181076,7 @@ } }, { - "id": 14751, + "id": 21846, "properties": { "east": "tall", "north": "low", @@ -177842,7 +181087,7 @@ } }, { - "id": 14752, + "id": 21847, "properties": { "east": "tall", "north": "low", @@ -177853,7 +181098,7 @@ } }, { - "id": 14753, + "id": 21848, "properties": { "east": "tall", "north": "low", @@ -177864,7 +181109,7 @@ } }, { - "id": 14754, + "id": 21849, "properties": { "east": "tall", "north": "low", @@ -177875,7 +181120,7 @@ } }, { - "id": 14755, + "id": 21850, "properties": { "east": "tall", "north": "low", @@ -177886,7 +181131,7 @@ } }, { - "id": 14756, + "id": 21851, "properties": { "east": "tall", "north": "low", @@ -177897,7 +181142,7 @@ } }, { - "id": 14757, + "id": 21852, "properties": { "east": "tall", "north": "low", @@ -177908,7 +181153,7 @@ } }, { - "id": 14758, + "id": 21853, "properties": { "east": "tall", "north": "low", @@ -177919,7 +181164,7 @@ } }, { - "id": 14759, + "id": 21854, "properties": { "east": "tall", "north": "low", @@ -177930,7 +181175,7 @@ } }, { - "id": 14760, + "id": 21855, "properties": { "east": "tall", "north": "low", @@ -177941,7 +181186,7 @@ } }, { - "id": 14761, + "id": 21856, "properties": { "east": "tall", "north": "low", @@ -177952,7 +181197,7 @@ } }, { - "id": 14762, + "id": 21857, "properties": { "east": "tall", "north": "low", @@ -177963,7 +181208,7 @@ } }, { - "id": 14763, + "id": 21858, "properties": { "east": "tall", "north": "low", @@ -177974,7 +181219,7 @@ } }, { - "id": 14764, + "id": 21859, "properties": { "east": "tall", "north": "low", @@ -177985,7 +181230,7 @@ } }, { - "id": 14765, + "id": 21860, "properties": { "east": "tall", "north": "low", @@ -177996,7 +181241,7 @@ } }, { - "id": 14766, + "id": 21861, "properties": { "east": "tall", "north": "low", @@ -178007,7 +181252,7 @@ } }, { - "id": 14767, + "id": 21862, "properties": { "east": "tall", "north": "low", @@ -178018,7 +181263,7 @@ } }, { - "id": 14768, + "id": 21863, "properties": { "east": "tall", "north": "low", @@ -178029,7 +181274,7 @@ } }, { - "id": 14769, + "id": 21864, "properties": { "east": "tall", "north": "low", @@ -178040,7 +181285,7 @@ } }, { - "id": 14770, + "id": 21865, "properties": { "east": "tall", "north": "low", @@ -178051,7 +181296,7 @@ } }, { - "id": 14771, + "id": 21866, "properties": { "east": "tall", "north": "low", @@ -178062,7 +181307,7 @@ } }, { - "id": 14772, + "id": 21867, "properties": { "east": "tall", "north": "tall", @@ -178073,7 +181318,7 @@ } }, { - "id": 14773, + "id": 21868, "properties": { "east": "tall", "north": "tall", @@ -178084,7 +181329,7 @@ } }, { - "id": 14774, + "id": 21869, "properties": { "east": "tall", "north": "tall", @@ -178095,7 +181340,7 @@ } }, { - "id": 14775, + "id": 21870, "properties": { "east": "tall", "north": "tall", @@ -178106,7 +181351,7 @@ } }, { - "id": 14776, + "id": 21871, "properties": { "east": "tall", "north": "tall", @@ -178117,7 +181362,7 @@ } }, { - "id": 14777, + "id": 21872, "properties": { "east": "tall", "north": "tall", @@ -178128,7 +181373,7 @@ } }, { - "id": 14778, + "id": 21873, "properties": { "east": "tall", "north": "tall", @@ -178139,7 +181384,7 @@ } }, { - "id": 14779, + "id": 21874, "properties": { "east": "tall", "north": "tall", @@ -178150,7 +181395,7 @@ } }, { - "id": 14780, + "id": 21875, "properties": { "east": "tall", "north": "tall", @@ -178161,7 +181406,7 @@ } }, { - "id": 14781, + "id": 21876, "properties": { "east": "tall", "north": "tall", @@ -178172,7 +181417,7 @@ } }, { - "id": 14782, + "id": 21877, "properties": { "east": "tall", "north": "tall", @@ -178183,7 +181428,7 @@ } }, { - "id": 14783, + "id": 21878, "properties": { "east": "tall", "north": "tall", @@ -178194,7 +181439,7 @@ } }, { - "id": 14784, + "id": 21879, "properties": { "east": "tall", "north": "tall", @@ -178205,7 +181450,7 @@ } }, { - "id": 14785, + "id": 21880, "properties": { "east": "tall", "north": "tall", @@ -178216,7 +181461,7 @@ } }, { - "id": 14786, + "id": 21881, "properties": { "east": "tall", "north": "tall", @@ -178227,7 +181472,7 @@ } }, { - "id": 14787, + "id": 21882, "properties": { "east": "tall", "north": "tall", @@ -178238,7 +181483,7 @@ } }, { - "id": 14788, + "id": 21883, "properties": { "east": "tall", "north": "tall", @@ -178249,7 +181494,7 @@ } }, { - "id": 14789, + "id": 21884, "properties": { "east": "tall", "north": "tall", @@ -178260,7 +181505,7 @@ } }, { - "id": 14790, + "id": 21885, "properties": { "east": "tall", "north": "tall", @@ -178271,7 +181516,7 @@ } }, { - "id": 14791, + "id": 21886, "properties": { "east": "tall", "north": "tall", @@ -178282,7 +181527,7 @@ } }, { - "id": 14792, + "id": 21887, "properties": { "east": "tall", "north": "tall", @@ -178293,7 +181538,7 @@ } }, { - "id": 14793, + "id": 21888, "properties": { "east": "tall", "north": "tall", @@ -178304,7 +181549,7 @@ } }, { - "id": 14794, + "id": 21889, "properties": { "east": "tall", "north": "tall", @@ -178315,7 +181560,7 @@ } }, { - "id": 14795, + "id": 21890, "properties": { "east": "tall", "north": "tall", @@ -178326,7 +181571,7 @@ } }, { - "id": 14796, + "id": 21891, "properties": { "east": "tall", "north": "tall", @@ -178337,7 +181582,7 @@ } }, { - "id": 14797, + "id": 21892, "properties": { "east": "tall", "north": "tall", @@ -178348,7 +181593,7 @@ } }, { - "id": 14798, + "id": 21893, "properties": { "east": "tall", "north": "tall", @@ -178359,7 +181604,7 @@ } }, { - "id": 14799, + "id": 21894, "properties": { "east": "tall", "north": "tall", @@ -178370,7 +181615,7 @@ } }, { - "id": 14800, + "id": 21895, "properties": { "east": "tall", "north": "tall", @@ -178381,7 +181626,7 @@ } }, { - "id": 14801, + "id": 21896, "properties": { "east": "tall", "north": "tall", @@ -178392,7 +181637,7 @@ } }, { - "id": 14802, + "id": 21897, "properties": { "east": "tall", "north": "tall", @@ -178403,7 +181648,7 @@ } }, { - "id": 14803, + "id": 21898, "properties": { "east": "tall", "north": "tall", @@ -178414,7 +181659,7 @@ } }, { - "id": 14804, + "id": 21899, "properties": { "east": "tall", "north": "tall", @@ -178425,7 +181670,7 @@ } }, { - "id": 14805, + "id": 21900, "properties": { "east": "tall", "north": "tall", @@ -178436,7 +181681,7 @@ } }, { - "id": 14806, + "id": 21901, "properties": { "east": "tall", "north": "tall", @@ -178447,7 +181692,7 @@ } }, { - "id": 14807, + "id": 21902, "properties": { "east": "tall", "north": "tall", @@ -178459,15 +181704,15 @@ } ] }, - "minecraft:pumpkin": { + "minecraft:poppy": { "states": [ { "default": true, - "id": 5849 + "id": 2077 } ] }, - "minecraft:pumpkin_stem": { + "minecraft:potatoes": { "properties": { "age": [ "0", @@ -178483,1056 +181728,589 @@ "states": [ { "default": true, - "id": 6821, + "id": 8603, "properties": { "age": "0" } }, { - "id": 6822, + "id": 8604, "properties": { "age": "1" } }, { - "id": 6823, + "id": 8605, "properties": { "age": "2" } }, { - "id": 6824, + "id": 8606, "properties": { "age": "3" } }, { - "id": 6825, + "id": 8607, "properties": { "age": "4" } }, { - "id": 6826, + "id": 8608, "properties": { "age": "5" } }, { - "id": 6827, + "id": 8609, "properties": { "age": "6" } }, { - "id": 6828, + "id": 8610, "properties": { "age": "7" } } ] }, - "minecraft:purple_banner": { + "minecraft:potted_acacia_sapling": { + "states": [ + { + "default": true, + "id": 8573 + } + ] + }, + "minecraft:potted_allium": { + "states": [ + { + "default": true, + "id": 8581 + } + ] + }, + "minecraft:potted_azalea_bush": { + "states": [ + { + "default": true, + "id": 26561 + } + ] + }, + "minecraft:potted_azure_bluet": { + "states": [ + { + "default": true, + "id": 8582 + } + ] + }, + "minecraft:potted_bamboo": { + "states": [ + { + "default": true, + "id": 12957 + } + ] + }, + "minecraft:potted_birch_sapling": { + "states": [ + { + "default": true, + "id": 8571 + } + ] + }, + "minecraft:potted_blue_orchid": { + "states": [ + { + "default": true, + "id": 8580 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "states": [ + { + "default": true, + "id": 8592 + } + ] + }, + "minecraft:potted_cactus": { + "states": [ + { + "default": true, + "id": 8594 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "states": [ + { + "default": true, + "id": 8574 + } + ] + }, + "minecraft:potted_cornflower": { + "states": [ + { + "default": true, + "id": 8588 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "states": [ + { + "default": true, + "id": 19455 + } + ] + }, + "minecraft:potted_crimson_roots": { + "states": [ + { + "default": true, + "id": 19457 + } + ] + }, + "minecraft:potted_dandelion": { + "states": [ + { + "default": true, + "id": 8578 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "states": [ + { + "default": true, + "id": 8575 + } + ] + }, + "minecraft:potted_dead_bush": { + "states": [ + { + "default": true, + "id": 8593 + } + ] + }, + "minecraft:potted_fern": { + "states": [ + { + "default": true, + "id": 8577 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "states": [ + { + "default": true, + "id": 26562 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "states": [ + { + "default": true, + "id": 8572 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "states": [ + { + "default": true, + "id": 8589 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "states": [ + { + "default": true, + "id": 8576 + } + ] + }, + "minecraft:potted_oak_sapling": { + "states": [ + { + "default": true, + "id": 8569 + } + ] + }, + "minecraft:potted_orange_tulip": { + "states": [ + { + "default": true, + "id": 8584 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "states": [ + { + "default": true, + "id": 8587 + } + ] + }, + "minecraft:potted_pink_tulip": { + "states": [ + { + "default": true, + "id": 8586 + } + ] + }, + "minecraft:potted_poppy": { + "states": [ + { + "default": true, + "id": 8579 + } + ] + }, + "minecraft:potted_red_mushroom": { + "states": [ + { + "default": true, + "id": 8591 + } + ] + }, + "minecraft:potted_red_tulip": { + "states": [ + { + "default": true, + "id": 8583 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "states": [ + { + "default": true, + "id": 8570 + } + ] + }, + "minecraft:potted_torchflower": { + "states": [ + { + "default": true, + "id": 8568 + } + ] + }, + "minecraft:potted_warped_fungus": { + "states": [ + { + "default": true, + "id": 19456 + } + ] + }, + "minecraft:potted_warped_roots": { + "states": [ + { + "default": true, + "id": 19458 + } + ] + }, + "minecraft:potted_white_tulip": { + "states": [ + { + "default": true, + "id": 8585 + } + ] + }, + "minecraft:potted_wither_rose": { + "states": [ + { + "default": true, + "id": 8590 + } + ] + }, + "minecraft:powder_snow": { + "states": [ + { + "default": true, + "id": 22318 + } + ] + }, + "minecraft:powder_snow_cauldron": { "properties": { - "rotation": [ - "0", + "level": [ "1", "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" + "3" ] }, "states": [ { "default": true, - "id": 10919, + "id": 7403, "properties": { - "rotation": "0" + "level": "1" } }, { - "id": 10920, + "id": 7404, "properties": { - "rotation": "1" + "level": "2" } }, { - "id": 10921, + "id": 7405, "properties": { - "rotation": "2" + "level": "3" } - }, + } + ] + }, + "minecraft:powered_rail": { + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 10922, + "id": 1944, "properties": { - "rotation": "3" + "powered": "true", + "shape": "north_south", + "waterlogged": "true" } }, { - "id": 10923, + "id": 1945, "properties": { - "rotation": "4" + "powered": "true", + "shape": "north_south", + "waterlogged": "false" } }, { - "id": 10924, + "id": 1946, "properties": { - "rotation": "5" + "powered": "true", + "shape": "east_west", + "waterlogged": "true" } }, { - "id": 10925, + "id": 1947, "properties": { - "rotation": "6" + "powered": "true", + "shape": "east_west", + "waterlogged": "false" } }, { - "id": 10926, + "id": 1948, "properties": { - "rotation": "7" + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" } }, { - "id": 10927, + "id": 1949, "properties": { - "rotation": "8" + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" } }, { - "id": 10928, + "id": 1950, "properties": { - "rotation": "9" + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" } }, { - "id": 10929, + "id": 1951, "properties": { - "rotation": "10" + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" } }, { - "id": 10930, + "id": 1952, "properties": { - "rotation": "11" + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" } }, { - "id": 10931, + "id": 1953, "properties": { - "rotation": "12" + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" } }, { - "id": 10932, + "id": 1954, "properties": { - "rotation": "13" + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" } }, { - "id": 10933, + "id": 1955, "properties": { - "rotation": "14" + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" } }, { - "id": 10934, + "id": 1956, "properties": { - "rotation": "15" - } - } - ] - }, - "minecraft:purple_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ - { - "id": 1848, - "properties": { - "facing": "north", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1849, - "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1850, - "properties": { - "facing": "north", - "occupied": "false", - "part": "head" - } - }, - { - "default": true, - "id": 1851, - "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1852, - "properties": { - "facing": "south", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1853, - "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1854, - "properties": { - "facing": "south", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1855, - "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1856, - "properties": { - "facing": "west", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1857, - "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1858, - "properties": { - "facing": "west", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1859, - "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" - } - }, - { - "id": 1860, - "properties": { - "facing": "east", - "occupied": "true", - "part": "head" - } - }, - { - "id": 1861, - "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" - } - }, - { - "id": 1862, - "properties": { - "facing": "east", - "occupied": "false", - "part": "head" - } - }, - { - "id": 1863, - "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" - } - } - ] - }, - "minecraft:purple_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 20901, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20902, - "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" - } - }, - { - "id": 20903, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "powered": "false", + "shape": "north_south", + "waterlogged": "true" } }, { "default": true, - "id": 20904, - "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - }, - { - "id": 20905, - "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" - } - }, - { - "id": 20906, + "id": 1957, "properties": { - "candles": "2", - "lit": "true", + "powered": "false", + "shape": "north_south", "waterlogged": "false" } }, { - "id": 20907, + "id": 1958, "properties": { - "candles": "2", - "lit": "false", + "powered": "false", + "shape": "east_west", "waterlogged": "true" } }, { - "id": 20908, + "id": 1959, "properties": { - "candles": "2", - "lit": "false", + "powered": "false", + "shape": "east_west", "waterlogged": "false" } }, { - "id": 20909, + "id": 1960, "properties": { - "candles": "3", - "lit": "true", + "powered": "false", + "shape": "ascending_east", "waterlogged": "true" } }, { - "id": 20910, + "id": 1961, "properties": { - "candles": "3", - "lit": "true", + "powered": "false", + "shape": "ascending_east", "waterlogged": "false" } }, { - "id": 20911, + "id": 1962, "properties": { - "candles": "3", - "lit": "false", + "powered": "false", + "shape": "ascending_west", "waterlogged": "true" } }, { - "id": 20912, + "id": 1963, "properties": { - "candles": "3", - "lit": "false", + "powered": "false", + "shape": "ascending_west", "waterlogged": "false" } }, { - "id": 20913, + "id": 1964, "properties": { - "candles": "4", - "lit": "true", + "powered": "false", + "shape": "ascending_north", "waterlogged": "true" } }, { - "id": 20914, + "id": 1965, "properties": { - "candles": "4", - "lit": "true", + "powered": "false", + "shape": "ascending_north", "waterlogged": "false" } }, { - "id": 20915, + "id": 1966, "properties": { - "candles": "4", - "lit": "false", + "powered": "false", + "shape": "ascending_south", "waterlogged": "true" } }, { - "id": 20916, + "id": 1967, "properties": { - "candles": "4", - "lit": "false", + "powered": "false", + "shape": "ascending_south", "waterlogged": "false" } } ] }, - "minecraft:purple_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21019, - "properties": { - "lit": "true" - } - }, - { - "default": true, - "id": 21020, - "properties": { - "lit": "false" - } - } - ] - }, - "minecraft:purple_carpet": { - "states": [ - { - "default": true, - "id": 10738 - } - ] - }, - "minecraft:purple_concrete": { - "states": [ - { - "default": true, - "id": 12738 - } - ] - }, - "minecraft:purple_concrete_powder": { - "states": [ - { - "default": true, - "id": 12754 - } - ] - }, - "minecraft:purple_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 12704, - "properties": { - "facing": "north" - } - }, - { - "id": 12705, - "properties": { - "facing": "south" - } - }, - { - "id": 12706, - "properties": { - "facing": "west" - } - }, - { - "id": 12707, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ - { - "id": 12628, - "properties": { - "facing": "north" - } - }, - { - "id": 12629, - "properties": { - "facing": "east" - } - }, - { - "id": 12630, - "properties": { - "facing": "south" - } - }, - { - "id": 12631, - "properties": { - "facing": "west" - } - }, - { - "default": true, - "id": 12632, - "properties": { - "facing": "up" - } - }, - { - "id": 12633, - "properties": { - "facing": "down" - } - } - ] - }, - "minecraft:purple_stained_glass": { - "states": [ - { - "default": true, - "id": 5956 - } - ] - }, - "minecraft:purple_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 9692, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9693, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9694, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9695, - "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9696, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9697, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9698, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9699, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9700, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9701, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9702, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9703, - "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9704, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9705, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9706, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9707, - "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9708, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9709, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9710, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9711, - "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9712, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9713, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9714, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9715, - "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9716, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9717, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9718, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - }, - { - "id": 9719, - "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9720, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" - } - }, - { - "id": 9721, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" - } - }, - { - "id": 9722, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - }, - { - "default": true, - "id": 9723, - "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - ] - }, - "minecraft:purple_terracotta": { - "states": [ - { - "default": true, - "id": 9366 - } - ] - }, - "minecraft:purple_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 11055, - "properties": { - "facing": "north" - } - }, - { - "id": 11056, - "properties": { - "facing": "south" - } - }, - { - "id": 11057, - "properties": { - "facing": "west" - } - }, - { - "id": 11058, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:purple_wool": { - "states": [ - { - "default": true, - "id": 2057 - } - ] - }, - "minecraft:purpur_block": { - "states": [ - { - "default": true, - "id": 12410 - } - ] - }, - "minecraft:purpur_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, + "minecraft:prismarine": { "states": [ - { - "id": 12411, - "properties": { - "axis": "x" - } - }, { "default": true, - "id": 12412, - "properties": { - "axis": "y" - } - }, - { - "id": 12413, - "properties": { - "axis": "z" - } + "id": 10463 } ] }, - "minecraft:purpur_slab": { + "minecraft:prismarine_brick_slab": { "properties": { "type": [ "top", @@ -179546,21 +182324,21 @@ }, "states": [ { - "id": 11300, + "id": 10712, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11301, + "id": 10713, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11302, + "id": 10714, "properties": { "type": "bottom", "waterlogged": "true" @@ -179568,21 +182346,21 @@ }, { "default": true, - "id": 11303, + "id": 10715, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11304, + "id": 10716, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11305, + "id": 10717, "properties": { "type": "double", "waterlogged": "false" @@ -179590,7 +182368,7 @@ } ] }, - "minecraft:purpur_stairs": { + "minecraft:prismarine_brick_stairs": { "properties": { "facing": [ "north", @@ -179616,7 +182394,7 @@ }, "states": [ { - "id": 12414, + "id": 10546, "properties": { "facing": "north", "half": "top", @@ -179625,7 +182403,7 @@ } }, { - "id": 12415, + "id": 10547, "properties": { "facing": "north", "half": "top", @@ -179634,7 +182412,7 @@ } }, { - "id": 12416, + "id": 10548, "properties": { "facing": "north", "half": "top", @@ -179643,7 +182421,7 @@ } }, { - "id": 12417, + "id": 10549, "properties": { "facing": "north", "half": "top", @@ -179652,7 +182430,7 @@ } }, { - "id": 12418, + "id": 10550, "properties": { "facing": "north", "half": "top", @@ -179661,7 +182439,7 @@ } }, { - "id": 12419, + "id": 10551, "properties": { "facing": "north", "half": "top", @@ -179670,7 +182448,7 @@ } }, { - "id": 12420, + "id": 10552, "properties": { "facing": "north", "half": "top", @@ -179679,7 +182457,7 @@ } }, { - "id": 12421, + "id": 10553, "properties": { "facing": "north", "half": "top", @@ -179688,7 +182466,7 @@ } }, { - "id": 12422, + "id": 10554, "properties": { "facing": "north", "half": "top", @@ -179697,7 +182475,7 @@ } }, { - "id": 12423, + "id": 10555, "properties": { "facing": "north", "half": "top", @@ -179706,7 +182484,7 @@ } }, { - "id": 12424, + "id": 10556, "properties": { "facing": "north", "half": "bottom", @@ -179716,7 +182494,7 @@ }, { "default": true, - "id": 12425, + "id": 10557, "properties": { "facing": "north", "half": "bottom", @@ -179725,7 +182503,7 @@ } }, { - "id": 12426, + "id": 10558, "properties": { "facing": "north", "half": "bottom", @@ -179734,7 +182512,7 @@ } }, { - "id": 12427, + "id": 10559, "properties": { "facing": "north", "half": "bottom", @@ -179743,7 +182521,7 @@ } }, { - "id": 12428, + "id": 10560, "properties": { "facing": "north", "half": "bottom", @@ -179752,7 +182530,7 @@ } }, { - "id": 12429, + "id": 10561, "properties": { "facing": "north", "half": "bottom", @@ -179761,7 +182539,7 @@ } }, { - "id": 12430, + "id": 10562, "properties": { "facing": "north", "half": "bottom", @@ -179770,7 +182548,7 @@ } }, { - "id": 12431, + "id": 10563, "properties": { "facing": "north", "half": "bottom", @@ -179779,7 +182557,7 @@ } }, { - "id": 12432, + "id": 10564, "properties": { "facing": "north", "half": "bottom", @@ -179788,7 +182566,7 @@ } }, { - "id": 12433, + "id": 10565, "properties": { "facing": "north", "half": "bottom", @@ -179797,7 +182575,7 @@ } }, { - "id": 12434, + "id": 10566, "properties": { "facing": "south", "half": "top", @@ -179806,7 +182584,7 @@ } }, { - "id": 12435, + "id": 10567, "properties": { "facing": "south", "half": "top", @@ -179815,7 +182593,7 @@ } }, { - "id": 12436, + "id": 10568, "properties": { "facing": "south", "half": "top", @@ -179824,7 +182602,7 @@ } }, { - "id": 12437, + "id": 10569, "properties": { "facing": "south", "half": "top", @@ -179833,7 +182611,7 @@ } }, { - "id": 12438, + "id": 10570, "properties": { "facing": "south", "half": "top", @@ -179842,7 +182620,7 @@ } }, { - "id": 12439, + "id": 10571, "properties": { "facing": "south", "half": "top", @@ -179851,7 +182629,7 @@ } }, { - "id": 12440, + "id": 10572, "properties": { "facing": "south", "half": "top", @@ -179860,7 +182638,7 @@ } }, { - "id": 12441, + "id": 10573, "properties": { "facing": "south", "half": "top", @@ -179869,7 +182647,7 @@ } }, { - "id": 12442, + "id": 10574, "properties": { "facing": "south", "half": "top", @@ -179878,7 +182656,7 @@ } }, { - "id": 12443, + "id": 10575, "properties": { "facing": "south", "half": "top", @@ -179887,7 +182665,7 @@ } }, { - "id": 12444, + "id": 10576, "properties": { "facing": "south", "half": "bottom", @@ -179896,7 +182674,7 @@ } }, { - "id": 12445, + "id": 10577, "properties": { "facing": "south", "half": "bottom", @@ -179905,7 +182683,7 @@ } }, { - "id": 12446, + "id": 10578, "properties": { "facing": "south", "half": "bottom", @@ -179914,7 +182692,7 @@ } }, { - "id": 12447, + "id": 10579, "properties": { "facing": "south", "half": "bottom", @@ -179923,7 +182701,7 @@ } }, { - "id": 12448, + "id": 10580, "properties": { "facing": "south", "half": "bottom", @@ -179932,7 +182710,7 @@ } }, { - "id": 12449, + "id": 10581, "properties": { "facing": "south", "half": "bottom", @@ -179941,7 +182719,7 @@ } }, { - "id": 12450, + "id": 10582, "properties": { "facing": "south", "half": "bottom", @@ -179950,7 +182728,7 @@ } }, { - "id": 12451, + "id": 10583, "properties": { "facing": "south", "half": "bottom", @@ -179959,7 +182737,7 @@ } }, { - "id": 12452, + "id": 10584, "properties": { "facing": "south", "half": "bottom", @@ -179968,7 +182746,7 @@ } }, { - "id": 12453, + "id": 10585, "properties": { "facing": "south", "half": "bottom", @@ -179977,7 +182755,7 @@ } }, { - "id": 12454, + "id": 10586, "properties": { "facing": "west", "half": "top", @@ -179986,7 +182764,7 @@ } }, { - "id": 12455, + "id": 10587, "properties": { "facing": "west", "half": "top", @@ -179995,7 +182773,7 @@ } }, { - "id": 12456, + "id": 10588, "properties": { "facing": "west", "half": "top", @@ -180004,7 +182782,7 @@ } }, { - "id": 12457, + "id": 10589, "properties": { "facing": "west", "half": "top", @@ -180013,7 +182791,7 @@ } }, { - "id": 12458, + "id": 10590, "properties": { "facing": "west", "half": "top", @@ -180022,7 +182800,7 @@ } }, { - "id": 12459, + "id": 10591, "properties": { "facing": "west", "half": "top", @@ -180031,7 +182809,7 @@ } }, { - "id": 12460, + "id": 10592, "properties": { "facing": "west", "half": "top", @@ -180040,7 +182818,7 @@ } }, { - "id": 12461, + "id": 10593, "properties": { "facing": "west", "half": "top", @@ -180049,7 +182827,7 @@ } }, { - "id": 12462, + "id": 10594, "properties": { "facing": "west", "half": "top", @@ -180058,7 +182836,7 @@ } }, { - "id": 12463, + "id": 10595, "properties": { "facing": "west", "half": "top", @@ -180067,7 +182845,7 @@ } }, { - "id": 12464, + "id": 10596, "properties": { "facing": "west", "half": "bottom", @@ -180076,7 +182854,7 @@ } }, { - "id": 12465, + "id": 10597, "properties": { "facing": "west", "half": "bottom", @@ -180085,7 +182863,7 @@ } }, { - "id": 12466, + "id": 10598, "properties": { "facing": "west", "half": "bottom", @@ -180094,7 +182872,7 @@ } }, { - "id": 12467, + "id": 10599, "properties": { "facing": "west", "half": "bottom", @@ -180103,7 +182881,7 @@ } }, { - "id": 12468, + "id": 10600, "properties": { "facing": "west", "half": "bottom", @@ -180112,7 +182890,7 @@ } }, { - "id": 12469, + "id": 10601, "properties": { "facing": "west", "half": "bottom", @@ -180121,7 +182899,7 @@ } }, { - "id": 12470, + "id": 10602, "properties": { "facing": "west", "half": "bottom", @@ -180130,7 +182908,7 @@ } }, { - "id": 12471, + "id": 10603, "properties": { "facing": "west", "half": "bottom", @@ -180139,7 +182917,7 @@ } }, { - "id": 12472, + "id": 10604, "properties": { "facing": "west", "half": "bottom", @@ -180148,7 +182926,7 @@ } }, { - "id": 12473, + "id": 10605, "properties": { "facing": "west", "half": "bottom", @@ -180157,7 +182935,7 @@ } }, { - "id": 12474, + "id": 10606, "properties": { "facing": "east", "half": "top", @@ -180166,7 +182944,7 @@ } }, { - "id": 12475, + "id": 10607, "properties": { "facing": "east", "half": "top", @@ -180175,7 +182953,7 @@ } }, { - "id": 12476, + "id": 10608, "properties": { "facing": "east", "half": "top", @@ -180184,7 +182962,7 @@ } }, { - "id": 12477, + "id": 10609, "properties": { "facing": "east", "half": "top", @@ -180193,7 +182971,7 @@ } }, { - "id": 12478, + "id": 10610, "properties": { "facing": "east", "half": "top", @@ -180202,7 +182980,7 @@ } }, { - "id": 12479, + "id": 10611, "properties": { "facing": "east", "half": "top", @@ -180211,7 +182989,7 @@ } }, { - "id": 12480, + "id": 10612, "properties": { "facing": "east", "half": "top", @@ -180220,7 +182998,7 @@ } }, { - "id": 12481, + "id": 10613, "properties": { "facing": "east", "half": "top", @@ -180229,7 +183007,7 @@ } }, { - "id": 12482, + "id": 10614, "properties": { "facing": "east", "half": "top", @@ -180238,7 +183016,7 @@ } }, { - "id": 12483, + "id": 10615, "properties": { "facing": "east", "half": "top", @@ -180247,7 +183025,7 @@ } }, { - "id": 12484, + "id": 10616, "properties": { "facing": "east", "half": "bottom", @@ -180256,7 +183034,7 @@ } }, { - "id": 12485, + "id": 10617, "properties": { "facing": "east", "half": "bottom", @@ -180265,7 +183043,7 @@ } }, { - "id": 12486, + "id": 10618, "properties": { "facing": "east", "half": "bottom", @@ -180274,7 +183052,7 @@ } }, { - "id": 12487, + "id": 10619, "properties": { "facing": "east", "half": "bottom", @@ -180283,7 +183061,7 @@ } }, { - "id": 12488, + "id": 10620, "properties": { "facing": "east", "half": "bottom", @@ -180292,7 +183070,7 @@ } }, { - "id": 12489, + "id": 10621, "properties": { "facing": "east", "half": "bottom", @@ -180301,7 +183079,7 @@ } }, { - "id": 12490, + "id": 10622, "properties": { "facing": "east", "half": "bottom", @@ -180310,7 +183088,7 @@ } }, { - "id": 12491, + "id": 10623, "properties": { "facing": "east", "half": "bottom", @@ -180319,7 +183097,7 @@ } }, { - "id": 12492, + "id": 10624, "properties": { "facing": "east", "half": "bottom", @@ -180328,7 +183106,7 @@ } }, { - "id": 12493, + "id": 10625, "properties": { "facing": "east", "half": "bottom", @@ -180338,53 +183116,15 @@ } ] }, - "minecraft:quartz_block": { - "states": [ - { - "default": true, - "id": 9235 - } - ] - }, - "minecraft:quartz_bricks": { - "states": [ - { - "default": true, - "id": 20724 - } - ] - }, - "minecraft:quartz_pillar": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, + "minecraft:prismarine_bricks": { "states": [ - { - "id": 9237, - "properties": { - "axis": "x" - } - }, { "default": true, - "id": 9238, - "properties": { - "axis": "y" - } - }, - { - "id": 9239, - "properties": { - "axis": "z" - } + "id": 10464 } ] }, - "minecraft:quartz_slab": { + "minecraft:prismarine_slab": { "properties": { "type": [ "top", @@ -180398,21 +183138,21 @@ }, "states": [ { - "id": 11282, + "id": 10706, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11283, + "id": 10707, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11284, + "id": 10708, "properties": { "type": "bottom", "waterlogged": "true" @@ -180420,21 +183160,21 @@ }, { "default": true, - "id": 11285, + "id": 10709, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11286, + "id": 10710, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11287, + "id": 10711, "properties": { "type": "double", "waterlogged": "false" @@ -180442,7 +183182,7 @@ } ] }, - "minecraft:quartz_stairs": { + "minecraft:prismarine_stairs": { "properties": { "facing": [ "north", @@ -180468,7 +183208,7 @@ }, "states": [ { - "id": 9240, + "id": 10466, "properties": { "facing": "north", "half": "top", @@ -180477,7 +183217,7 @@ } }, { - "id": 9241, + "id": 10467, "properties": { "facing": "north", "half": "top", @@ -180486,7 +183226,7 @@ } }, { - "id": 9242, + "id": 10468, "properties": { "facing": "north", "half": "top", @@ -180495,7 +183235,7 @@ } }, { - "id": 9243, + "id": 10469, "properties": { "facing": "north", "half": "top", @@ -180504,7 +183244,7 @@ } }, { - "id": 9244, + "id": 10470, "properties": { "facing": "north", "half": "top", @@ -180513,7 +183253,7 @@ } }, { - "id": 9245, + "id": 10471, "properties": { "facing": "north", "half": "top", @@ -180522,7 +183262,7 @@ } }, { - "id": 9246, + "id": 10472, "properties": { "facing": "north", "half": "top", @@ -180531,7 +183271,7 @@ } }, { - "id": 9247, + "id": 10473, "properties": { "facing": "north", "half": "top", @@ -180540,7 +183280,7 @@ } }, { - "id": 9248, + "id": 10474, "properties": { "facing": "north", "half": "top", @@ -180549,7 +183289,7 @@ } }, { - "id": 9249, + "id": 10475, "properties": { "facing": "north", "half": "top", @@ -180558,7 +183298,7 @@ } }, { - "id": 9250, + "id": 10476, "properties": { "facing": "north", "half": "bottom", @@ -180568,7 +183308,7 @@ }, { "default": true, - "id": 9251, + "id": 10477, "properties": { "facing": "north", "half": "bottom", @@ -180577,7 +183317,7 @@ } }, { - "id": 9252, + "id": 10478, "properties": { "facing": "north", "half": "bottom", @@ -180586,7 +183326,7 @@ } }, { - "id": 9253, + "id": 10479, "properties": { "facing": "north", "half": "bottom", @@ -180595,7 +183335,7 @@ } }, { - "id": 9254, + "id": 10480, "properties": { "facing": "north", "half": "bottom", @@ -180604,7 +183344,7 @@ } }, { - "id": 9255, + "id": 10481, "properties": { "facing": "north", "half": "bottom", @@ -180613,7 +183353,7 @@ } }, { - "id": 9256, + "id": 10482, "properties": { "facing": "north", "half": "bottom", @@ -180622,7 +183362,7 @@ } }, { - "id": 9257, + "id": 10483, "properties": { "facing": "north", "half": "bottom", @@ -180631,7 +183371,7 @@ } }, { - "id": 9258, + "id": 10484, "properties": { "facing": "north", "half": "bottom", @@ -180640,7 +183380,7 @@ } }, { - "id": 9259, + "id": 10485, "properties": { "facing": "north", "half": "bottom", @@ -180649,7 +183389,7 @@ } }, { - "id": 9260, + "id": 10486, "properties": { "facing": "south", "half": "top", @@ -180658,7 +183398,7 @@ } }, { - "id": 9261, + "id": 10487, "properties": { "facing": "south", "half": "top", @@ -180667,7 +183407,7 @@ } }, { - "id": 9262, + "id": 10488, "properties": { "facing": "south", "half": "top", @@ -180676,7 +183416,7 @@ } }, { - "id": 9263, + "id": 10489, "properties": { "facing": "south", "half": "top", @@ -180685,7 +183425,7 @@ } }, { - "id": 9264, + "id": 10490, "properties": { "facing": "south", "half": "top", @@ -180694,7 +183434,7 @@ } }, { - "id": 9265, + "id": 10491, "properties": { "facing": "south", "half": "top", @@ -180703,7 +183443,7 @@ } }, { - "id": 9266, + "id": 10492, "properties": { "facing": "south", "half": "top", @@ -180712,7 +183452,7 @@ } }, { - "id": 9267, + "id": 10493, "properties": { "facing": "south", "half": "top", @@ -180721,7 +183461,7 @@ } }, { - "id": 9268, + "id": 10494, "properties": { "facing": "south", "half": "top", @@ -180730,7 +183470,7 @@ } }, { - "id": 9269, + "id": 10495, "properties": { "facing": "south", "half": "top", @@ -180739,7 +183479,7 @@ } }, { - "id": 9270, + "id": 10496, "properties": { "facing": "south", "half": "bottom", @@ -180748,7 +183488,7 @@ } }, { - "id": 9271, + "id": 10497, "properties": { "facing": "south", "half": "bottom", @@ -180757,7 +183497,7 @@ } }, { - "id": 9272, + "id": 10498, "properties": { "facing": "south", "half": "bottom", @@ -180766,7 +183506,7 @@ } }, { - "id": 9273, + "id": 10499, "properties": { "facing": "south", "half": "bottom", @@ -180775,7 +183515,7 @@ } }, { - "id": 9274, + "id": 10500, "properties": { "facing": "south", "half": "bottom", @@ -180784,7 +183524,7 @@ } }, { - "id": 9275, + "id": 10501, "properties": { "facing": "south", "half": "bottom", @@ -180793,7 +183533,7 @@ } }, { - "id": 9276, + "id": 10502, "properties": { "facing": "south", "half": "bottom", @@ -180802,7 +183542,7 @@ } }, { - "id": 9277, + "id": 10503, "properties": { "facing": "south", "half": "bottom", @@ -180811,7 +183551,7 @@ } }, { - "id": 9278, + "id": 10504, "properties": { "facing": "south", "half": "bottom", @@ -180820,7 +183560,7 @@ } }, { - "id": 9279, + "id": 10505, "properties": { "facing": "south", "half": "bottom", @@ -180829,7 +183569,7 @@ } }, { - "id": 9280, + "id": 10506, "properties": { "facing": "west", "half": "top", @@ -180838,7 +183578,7 @@ } }, { - "id": 9281, + "id": 10507, "properties": { "facing": "west", "half": "top", @@ -180847,7 +183587,7 @@ } }, { - "id": 9282, + "id": 10508, "properties": { "facing": "west", "half": "top", @@ -180856,7 +183596,7 @@ } }, { - "id": 9283, + "id": 10509, "properties": { "facing": "west", "half": "top", @@ -180865,7 +183605,7 @@ } }, { - "id": 9284, + "id": 10510, "properties": { "facing": "west", "half": "top", @@ -180874,7 +183614,7 @@ } }, { - "id": 9285, + "id": 10511, "properties": { "facing": "west", "half": "top", @@ -180883,7 +183623,7 @@ } }, { - "id": 9286, + "id": 10512, "properties": { "facing": "west", "half": "top", @@ -180892,7 +183632,7 @@ } }, { - "id": 9287, + "id": 10513, "properties": { "facing": "west", "half": "top", @@ -180901,7 +183641,7 @@ } }, { - "id": 9288, + "id": 10514, "properties": { "facing": "west", "half": "top", @@ -180910,7 +183650,7 @@ } }, { - "id": 9289, + "id": 10515, "properties": { "facing": "west", "half": "top", @@ -180919,7 +183659,7 @@ } }, { - "id": 9290, + "id": 10516, "properties": { "facing": "west", "half": "bottom", @@ -180928,7 +183668,7 @@ } }, { - "id": 9291, + "id": 10517, "properties": { "facing": "west", "half": "bottom", @@ -180937,7 +183677,7 @@ } }, { - "id": 9292, + "id": 10518, "properties": { "facing": "west", "half": "bottom", @@ -180946,7 +183686,7 @@ } }, { - "id": 9293, + "id": 10519, "properties": { "facing": "west", "half": "bottom", @@ -180955,7 +183695,7 @@ } }, { - "id": 9294, + "id": 10520, "properties": { "facing": "west", "half": "bottom", @@ -180964,7 +183704,7 @@ } }, { - "id": 9295, + "id": 10521, "properties": { "facing": "west", "half": "bottom", @@ -180973,7 +183713,7 @@ } }, { - "id": 9296, + "id": 10522, "properties": { "facing": "west", "half": "bottom", @@ -180982,7 +183722,7 @@ } }, { - "id": 9297, + "id": 10523, "properties": { "facing": "west", "half": "bottom", @@ -180991,7 +183731,7 @@ } }, { - "id": 9298, + "id": 10524, "properties": { "facing": "west", "half": "bottom", @@ -181000,7 +183740,7 @@ } }, { - "id": 9299, + "id": 10525, "properties": { "facing": "west", "half": "bottom", @@ -181009,7 +183749,7 @@ } }, { - "id": 9300, + "id": 10526, "properties": { "facing": "east", "half": "top", @@ -181018,7 +183758,7 @@ } }, { - "id": 9301, + "id": 10527, "properties": { "facing": "east", "half": "top", @@ -181027,7 +183767,7 @@ } }, { - "id": 9302, + "id": 10528, "properties": { "facing": "east", "half": "top", @@ -181036,7 +183776,7 @@ } }, { - "id": 9303, + "id": 10529, "properties": { "facing": "east", "half": "top", @@ -181045,7 +183785,7 @@ } }, { - "id": 9304, + "id": 10530, "properties": { "facing": "east", "half": "top", @@ -181054,7 +183794,7 @@ } }, { - "id": 9305, + "id": 10531, "properties": { "facing": "east", "half": "top", @@ -181063,7 +183803,7 @@ } }, { - "id": 9306, + "id": 10532, "properties": { "facing": "east", "half": "top", @@ -181072,7 +183812,7 @@ } }, { - "id": 9307, + "id": 10533, "properties": { "facing": "east", "half": "top", @@ -181081,7 +183821,7 @@ } }, { - "id": 9308, + "id": 10534, "properties": { "facing": "east", "half": "top", @@ -181090,7 +183830,7 @@ } }, { - "id": 9309, + "id": 10535, "properties": { "facing": "east", "half": "top", @@ -181099,7 +183839,7 @@ } }, { - "id": 9310, + "id": 10536, "properties": { "facing": "east", "half": "bottom", @@ -181108,7 +183848,7 @@ } }, { - "id": 9311, + "id": 10537, "properties": { "facing": "east", "half": "bottom", @@ -181117,7 +183857,7 @@ } }, { - "id": 9312, + "id": 10538, "properties": { "facing": "east", "half": "bottom", @@ -181126,7 +183866,7 @@ } }, { - "id": 9313, + "id": 10539, "properties": { "facing": "east", "half": "bottom", @@ -181135,7 +183875,7 @@ } }, { - "id": 9314, + "id": 10540, "properties": { "facing": "east", "half": "bottom", @@ -181144,7 +183884,7 @@ } }, { - "id": 9315, + "id": 10541, "properties": { "facing": "east", "half": "bottom", @@ -181153,7 +183893,7 @@ } }, { - "id": 9316, + "id": 10542, "properties": { "facing": "east", "half": "bottom", @@ -181162,7 +183902,7 @@ } }, { - "id": 9317, + "id": 10543, "properties": { "facing": "east", "half": "bottom", @@ -181171,7 +183911,7 @@ } }, { - "id": 9318, + "id": 10544, "properties": { "facing": "east", "half": "bottom", @@ -181180,7 +183920,7 @@ } }, { - "id": 9319, + "id": 10545, "properties": { "facing": "east", "half": "bottom", @@ -181190,2370 +183930,2507 @@ } ] }, - "minecraft:rail": { + "minecraft:prismarine_wall": { "properties": { - "shape": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south", - "south_east", - "south_west", - "north_west", - "north_east" + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { - "id": 4662, + "id": 14484, "properties": { - "shape": "north_south", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 4663, + "id": 14485, "properties": { - "shape": "north_south", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4664, + "id": 14486, "properties": { - "shape": "east_west", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4665, + "default": true, + "id": 14487, "properties": { - "shape": "east_west", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4666, + "id": 14488, "properties": { - "shape": "ascending_east", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4667, + "id": 14489, "properties": { - "shape": "ascending_east", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4668, + "id": 14490, "properties": { - "shape": "ascending_west", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4669, + "id": 14491, "properties": { - "shape": "ascending_west", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4670, + "id": 14492, "properties": { - "shape": "ascending_north", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4671, + "id": 14493, "properties": { - "shape": "ascending_north", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4672, + "id": 14494, "properties": { - "shape": "ascending_south", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4673, + "id": 14495, "properties": { - "shape": "ascending_south", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4674, + "id": 14496, "properties": { - "shape": "south_east", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4675, + "id": 14497, "properties": { - "shape": "south_east", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4676, + "id": 14498, "properties": { - "shape": "south_west", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4677, + "id": 14499, "properties": { - "shape": "south_west", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4678, + "id": 14500, "properties": { - "shape": "north_west", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4679, + "id": 14501, "properties": { - "shape": "north_west", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4680, + "id": 14502, "properties": { - "shape": "north_east", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4681, + "id": 14503, "properties": { - "shape": "north_east", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:raw_copper_block": { - "states": [ - { - "default": true, - "id": 24245 - } - ] - }, - "minecraft:raw_gold_block": { - "states": [ - { - "default": true, - "id": 24246 - } - ] - }, - "minecraft:raw_iron_block": { - "states": [ - { - "default": true, - "id": 24244 - } - ] - }, - "minecraft:red_banner": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 10983, + "id": 14504, "properties": { - "rotation": "0" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10984, + "id": 14505, "properties": { - "rotation": "1" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 10985, + "id": 14506, "properties": { - "rotation": "2" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 10986, + "id": 14507, "properties": { - "rotation": "3" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10987, + "id": 14508, "properties": { - "rotation": "4" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 10988, + "id": 14509, "properties": { - "rotation": "5" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 10989, + "id": 14510, "properties": { - "rotation": "6" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10990, + "id": 14511, "properties": { - "rotation": "7" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 10991, + "id": 14512, "properties": { - "rotation": "8" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 10992, + "id": 14513, "properties": { - "rotation": "9" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 10993, + "id": 14514, "properties": { - "rotation": "10" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 10994, + "id": 14515, "properties": { - "rotation": "11" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 10995, + "id": 14516, "properties": { - "rotation": "12" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 10996, + "id": 14517, "properties": { - "rotation": "13" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 10997, + "id": 14518, "properties": { - "rotation": "14" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 10998, + "id": 14519, "properties": { - "rotation": "15" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:red_bed": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "occupied": [ - "true", - "false" - ], - "part": [ - "head", - "foot" - ] - }, - "states": [ + }, { - "id": 1912, + "id": 14520, "properties": { - "facing": "north", - "occupied": "true", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1913, + "id": 14521, "properties": { - "facing": "north", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1914, + "id": 14522, "properties": { - "facing": "north", - "occupied": "false", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 1915, + "id": 14523, "properties": { - "facing": "north", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 1916, + "id": 14524, "properties": { - "facing": "south", - "occupied": "true", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1917, + "id": 14525, "properties": { - "facing": "south", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1918, + "id": 14526, "properties": { - "facing": "south", - "occupied": "false", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 1919, + "id": 14527, "properties": { - "facing": "south", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 1920, + "id": 14528, "properties": { - "facing": "west", - "occupied": "true", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1921, + "id": 14529, "properties": { - "facing": "west", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 1922, + "id": 14530, "properties": { - "facing": "west", - "occupied": "false", - "part": "head" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1923, + "id": 14531, "properties": { - "facing": "west", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1924, + "id": 14532, "properties": { - "facing": "east", - "occupied": "true", - "part": "head" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1925, + "id": 14533, "properties": { - "facing": "east", - "occupied": "true", - "part": "foot" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1926, + "id": 14534, "properties": { - "facing": "east", - "occupied": "false", - "part": "head" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1927, + "id": 14535, "properties": { - "facing": "east", - "occupied": "false", - "part": "foot" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:red_candle": { - "properties": { - "candles": [ - "1", - "2", - "3", - "4" - ], - "lit": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 20965, + "id": 14536, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 20966, + "id": 14537, "properties": { - "candles": "1", - "lit": "true", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20967, + "id": 14538, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 20968, + "id": 14539, "properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 20969, + "id": 14540, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20970, + "id": 14541, "properties": { - "candles": "2", - "lit": "true", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 20971, + "id": 14542, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 20972, + "id": 14543, "properties": { - "candles": "2", - "lit": "false", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20973, + "id": 14544, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 20974, + "id": 14545, "properties": { - "candles": "3", - "lit": "true", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 20975, + "id": 14546, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 20976, + "id": 14547, "properties": { - "candles": "3", - "lit": "false", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 20977, + "id": 14548, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 20978, + "id": 14549, "properties": { - "candles": "4", - "lit": "true", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 20979, + "id": 14550, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 20980, + "id": 14551, "properties": { - "candles": "4", - "lit": "false", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:red_candle_cake": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21027, + "id": 14552, "properties": { - "lit": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 21028, + "id": 14553, "properties": { - "lit": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:red_carpet": { - "states": [ - { - "default": true, - "id": 10742 - } - ] - }, - "minecraft:red_concrete": { - "states": [ - { - "default": true, - "id": 12742 - } - ] - }, - "minecraft:red_concrete_powder": { - "states": [ + }, { - "default": true, - "id": 12758 - } - ] - }, - "minecraft:red_glazed_terracotta": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "id": 14554, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, { - "default": true, - "id": 12720, + "id": 14555, "properties": { - "facing": "north" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 12721, + "id": 14556, "properties": { - "facing": "south" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 12722, + "id": 14557, "properties": { - "facing": "west" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 12723, + "id": 14558, "properties": { - "facing": "east" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:red_mushroom": { - "states": [ + }, { - "default": true, - "id": 2090 - } - ] - }, - "minecraft:red_mushroom_block": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + "id": 14559, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, { - "default": true, - "id": 6614, + "id": 14560, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6615, + "id": 14561, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6616, + "id": 14562, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6617, + "id": 14563, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6618, + "id": 14564, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6619, + "id": 14565, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6620, + "id": 14566, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6621, + "id": 14567, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6622, + "id": 14568, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6623, + "id": 14569, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6624, + "id": 14570, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6625, + "id": 14571, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6626, + "id": 14572, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6627, + "id": 14573, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6628, + "id": 14574, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6629, + "id": 14575, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6630, + "id": 14576, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6631, + "id": 14577, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6632, + "id": 14578, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6633, + "id": 14579, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", + "east": "none", + "north": "tall", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6634, + "id": 14580, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6635, + "id": 14581, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6636, + "id": 14582, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6637, + "id": 14583, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6638, + "id": 14584, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6639, + "id": 14585, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6640, + "id": 14586, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6641, + "id": 14587, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6642, + "id": 14588, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6643, + "id": 14589, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6644, + "id": 14590, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6645, + "id": 14591, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", + "east": "none", + "north": "tall", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6646, + "id": 14592, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6647, + "id": 14593, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6648, + "id": 14594, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6649, + "id": 14595, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6650, + "id": 14596, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6651, + "id": 14597, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6652, + "id": 14598, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6653, + "id": 14599, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6654, + "id": 14600, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6655, + "id": 14601, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6656, + "id": 14602, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6657, + "id": 14603, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "none", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6658, + "id": 14604, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6659, + "id": 14605, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6660, + "id": 14606, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6661, + "id": 14607, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6662, + "id": 14608, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6663, + "id": 14609, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6664, + "id": 14610, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6665, + "id": 14611, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6666, + "id": 14612, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6667, + "id": 14613, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6668, + "id": 14614, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6669, + "id": 14615, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "low", "up": "false", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6670, + "id": 14616, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6671, + "id": 14617, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "true", + "west": "low" } }, { - "id": 6672, + "id": 14618, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6673, + "id": 14619, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6674, + "id": 14620, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "true" + "waterlogged": "false", + "west": "low" } }, { - "id": 6675, + "id": 14621, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "true", - "west": "false" + "waterlogged": "false", + "west": "tall" } }, { - "id": 6676, + "id": 14622, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "true" + "waterlogged": "true", + "west": "none" } }, { - "id": 6677, + "id": 14623, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", "up": "false", - "west": "false" + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:red_nether_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 14142, + "id": 14624, "properties": { - "type": "top", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 14143, + "id": 14625, "properties": { - "type": "top", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 14144, + "id": 14626, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 14145, + "id": 14627, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 14146, + "id": 14628, "properties": { - "type": "double", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 14147, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 13842, + "id": 14629, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13843, + "id": 14630, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13844, + "id": 14631, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13845, + "id": 14632, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13846, + "id": 14633, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13847, + "id": 14634, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13848, + "id": 14635, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13849, + "id": 14636, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13850, + "id": 14637, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13851, + "id": 14638, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13852, + "id": 14639, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 13853, + "id": 14640, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13854, + "id": 14641, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13855, + "id": 14642, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13856, + "id": 14643, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13857, + "id": 14644, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13858, + "id": 14645, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13859, + "id": 14646, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13860, + "id": 14647, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13861, + "id": 14648, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13862, + "id": 14649, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13863, + "id": 14650, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13864, + "id": 14651, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13865, + "id": 14652, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13866, + "id": 14653, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13867, + "id": 14654, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13868, + "id": 14655, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13869, + "id": 14656, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13870, + "id": 14657, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13871, + "id": 14658, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13872, + "id": 14659, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13873, + "id": 14660, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13874, + "id": 14661, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13875, + "id": 14662, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13876, + "id": 14663, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13877, + "id": 14664, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13878, + "id": 14665, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13879, + "id": 14666, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13880, + "id": 14667, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13881, + "id": 14668, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13882, + "id": 14669, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13883, + "id": 14670, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13884, + "id": 14671, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13885, + "id": 14672, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13886, + "id": 14673, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13887, + "id": 14674, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13888, + "id": 14675, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13889, + "id": 14676, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13890, + "id": 14677, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13891, + "id": 14678, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13892, + "id": 14679, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13893, + "id": 14680, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13894, + "id": 14681, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13895, + "id": 14682, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13896, + "id": 14683, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13897, + "id": 14684, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13898, + "id": 14685, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13899, + "id": 14686, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13900, + "id": 14687, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13901, + "id": 14688, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13902, + "id": 14689, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13903, + "id": 14690, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13904, + "id": 14691, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13905, + "id": 14692, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13906, + "id": 14693, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13907, + "id": 14694, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13908, + "id": 14695, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13909, + "id": 14696, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13910, + "id": 14697, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 13911, + "id": 14698, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 13912, + "id": 14699, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13913, + "id": 14700, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 13914, + "id": 14701, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 13915, + "id": 14702, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 13916, + "id": 14703, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 13917, + "id": 14704, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 13918, + "id": 14705, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 13919, + "id": 14706, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 13920, + "id": 14707, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 13921, + "id": 14708, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:red_nether_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17076, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17077, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17078, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "default": true, - "id": 17079, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17080, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17081, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17082, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17083, - "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17084, - "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -183562,9 +186439,9 @@ } }, { - "id": 17085, + "id": 14709, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -183573,9 +186450,9 @@ } }, { - "id": 17086, + "id": 14710, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -183584,9 +186461,9 @@ } }, { - "id": 17087, + "id": 14711, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -183595,9 +186472,9 @@ } }, { - "id": 17088, + "id": 14712, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183606,9 +186483,9 @@ } }, { - "id": 17089, + "id": 14713, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183617,9 +186494,9 @@ } }, { - "id": 17090, + "id": 14714, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183628,9 +186505,9 @@ } }, { - "id": 17091, + "id": 14715, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183639,9 +186516,9 @@ } }, { - "id": 17092, + "id": 14716, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183650,9 +186527,9 @@ } }, { - "id": 17093, + "id": 14717, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -183661,9 +186538,9 @@ } }, { - "id": 17094, + "id": 14718, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183672,9 +186549,9 @@ } }, { - "id": 17095, + "id": 14719, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183683,9 +186560,9 @@ } }, { - "id": 17096, + "id": 14720, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183694,9 +186571,9 @@ } }, { - "id": 17097, + "id": 14721, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183705,9 +186582,9 @@ } }, { - "id": 17098, + "id": 14722, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183716,9 +186593,9 @@ } }, { - "id": 17099, + "id": 14723, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -183727,9 +186604,9 @@ } }, { - "id": 17100, + "id": 14724, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183738,9 +186615,9 @@ } }, { - "id": 17101, + "id": 14725, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183749,9 +186626,9 @@ } }, { - "id": 17102, + "id": 14726, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183760,9 +186637,9 @@ } }, { - "id": 17103, + "id": 14727, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183771,9 +186648,9 @@ } }, { - "id": 17104, + "id": 14728, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183782,9 +186659,9 @@ } }, { - "id": 17105, + "id": 14729, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -183793,9 +186670,9 @@ } }, { - "id": 17106, + "id": 14730, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183804,9 +186681,9 @@ } }, { - "id": 17107, + "id": 14731, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183815,9 +186692,9 @@ } }, { - "id": 17108, + "id": 14732, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183826,9 +186703,9 @@ } }, { - "id": 17109, + "id": 14733, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183837,9 +186714,9 @@ } }, { - "id": 17110, + "id": 14734, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183848,9 +186725,9 @@ } }, { - "id": 17111, + "id": 14735, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -183859,9 +186736,9 @@ } }, { - "id": 17112, + "id": 14736, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183870,9 +186747,9 @@ } }, { - "id": 17113, + "id": 14737, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183881,9 +186758,9 @@ } }, { - "id": 17114, + "id": 14738, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183892,9 +186769,9 @@ } }, { - "id": 17115, + "id": 14739, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183903,9 +186780,9 @@ } }, { - "id": 17116, + "id": 14740, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183914,9 +186791,9 @@ } }, { - "id": 17117, + "id": 14741, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -183925,9 +186802,9 @@ } }, { - "id": 17118, + "id": 14742, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183936,9 +186813,9 @@ } }, { - "id": 17119, + "id": 14743, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183947,9 +186824,9 @@ } }, { - "id": 17120, + "id": 14744, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183958,9 +186835,9 @@ } }, { - "id": 17121, + "id": 14745, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183969,9 +186846,9 @@ } }, { - "id": 17122, + "id": 14746, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183980,9 +186857,9 @@ } }, { - "id": 17123, + "id": 14747, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -183991,9 +186868,9 @@ } }, { - "id": 17124, + "id": 14748, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184002,9 +186879,9 @@ } }, { - "id": 17125, + "id": 14749, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184013,9 +186890,9 @@ } }, { - "id": 17126, + "id": 14750, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184024,9 +186901,9 @@ } }, { - "id": 17127, + "id": 14751, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184035,9 +186912,9 @@ } }, { - "id": 17128, + "id": 14752, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184046,9 +186923,9 @@ } }, { - "id": 17129, + "id": 14753, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -184057,9 +186934,9 @@ } }, { - "id": 17130, + "id": 14754, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184068,9 +186945,9 @@ } }, { - "id": 17131, + "id": 14755, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184079,9 +186956,9 @@ } }, { - "id": 17132, + "id": 14756, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184090,9 +186967,9 @@ } }, { - "id": 17133, + "id": 14757, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184101,9 +186978,9 @@ } }, { - "id": 17134, + "id": 14758, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184112,9 +186989,9 @@ } }, { - "id": 17135, + "id": 14759, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -184123,9 +187000,9 @@ } }, { - "id": 17136, + "id": 14760, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184134,9 +187011,9 @@ } }, { - "id": 17137, + "id": 14761, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184145,9 +187022,9 @@ } }, { - "id": 17138, + "id": 14762, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184156,9 +187033,9 @@ } }, { - "id": 17139, + "id": 14763, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184167,9 +187044,9 @@ } }, { - "id": 17140, + "id": 14764, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184178,9 +187055,9 @@ } }, { - "id": 17141, + "id": 14765, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -184189,9 +187066,9 @@ } }, { - "id": 17142, + "id": 14766, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184200,9 +187077,9 @@ } }, { - "id": 17143, + "id": 14767, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184211,9 +187088,9 @@ } }, { - "id": 17144, + "id": 14768, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184222,9 +187099,9 @@ } }, { - "id": 17145, + "id": 14769, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184233,9 +187110,9 @@ } }, { - "id": 17146, + "id": 14770, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184244,9 +187121,9 @@ } }, { - "id": 17147, + "id": 14771, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -184255,9 +187132,9 @@ } }, { - "id": 17148, + "id": 14772, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184266,9 +187143,9 @@ } }, { - "id": 17149, + "id": 14773, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184277,9 +187154,9 @@ } }, { - "id": 17150, + "id": 14774, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184288,9 +187165,9 @@ } }, { - "id": 17151, + "id": 14775, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184299,9 +187176,9 @@ } }, { - "id": 17152, + "id": 14776, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184310,9 +187187,9 @@ } }, { - "id": 17153, + "id": 14777, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -184321,9 +187198,9 @@ } }, { - "id": 17154, + "id": 14778, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184332,9 +187209,9 @@ } }, { - "id": 17155, + "id": 14779, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184343,9 +187220,9 @@ } }, { - "id": 17156, + "id": 14780, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184354,9 +187231,9 @@ } }, { - "id": 17157, + "id": 14781, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184365,9 +187242,9 @@ } }, { - "id": 17158, + "id": 14782, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184376,9 +187253,9 @@ } }, { - "id": 17159, + "id": 14783, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -184387,9 +187264,9 @@ } }, { - "id": 17160, + "id": 14784, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184398,9 +187275,9 @@ } }, { - "id": 17161, + "id": 14785, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184409,9 +187286,9 @@ } }, { - "id": 17162, + "id": 14786, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184420,9 +187297,9 @@ } }, { - "id": 17163, + "id": 14787, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184431,9 +187308,9 @@ } }, { - "id": 17164, + "id": 14788, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184442,9 +187319,9 @@ } }, { - "id": 17165, + "id": 14789, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -184453,9 +187330,9 @@ } }, { - "id": 17166, + "id": 14790, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184464,9 +187341,9 @@ } }, { - "id": 17167, + "id": 14791, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184475,9 +187352,9 @@ } }, { - "id": 17168, + "id": 14792, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184486,9 +187363,9 @@ } }, { - "id": 17169, + "id": 14793, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184497,9 +187374,9 @@ } }, { - "id": 17170, + "id": 14794, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184508,9 +187385,9 @@ } }, { - "id": 17171, + "id": 14795, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -184519,9 +187396,9 @@ } }, { - "id": 17172, + "id": 14796, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184530,9 +187407,9 @@ } }, { - "id": 17173, + "id": 14797, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184541,9 +187418,9 @@ } }, { - "id": 17174, + "id": 14798, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184552,9 +187429,9 @@ } }, { - "id": 17175, + "id": 14799, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184563,9 +187440,9 @@ } }, { - "id": 17176, + "id": 14800, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184574,9 +187451,9 @@ } }, { - "id": 17177, + "id": 14801, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -184585,9 +187462,9 @@ } }, { - "id": 17178, + "id": 14802, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", @@ -184596,9 +187473,9 @@ } }, { - "id": 17179, + "id": 14803, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", @@ -184607,9 +187484,9 @@ } }, { - "id": 17180, + "id": 14804, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", @@ -184618,9 +187495,9 @@ } }, { - "id": 17181, + "id": 14805, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", @@ -184629,9 +187506,9 @@ } }, { - "id": 17182, + "id": 14806, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", @@ -184640,2469 +187517,1994 @@ } }, { - "id": 17183, + "id": 14807, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - }, + } + ] + }, + "minecraft:pumpkin": { + "states": [ { - "id": 17184, + "default": true, + "id": 6811 + } + ] + }, + "minecraft:pumpkin_stem": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6821, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "age": "0" } }, { - "id": 17185, + "id": 6822, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "age": "1" } }, { - "id": 17186, + "id": 6823, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "age": "2" } }, { - "id": 17187, + "id": 6824, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "age": "3" } }, { - "id": 17188, + "id": 6825, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "age": "4" } }, { - "id": 17189, + "id": 6826, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "age": "5" } }, { - "id": 17190, + "id": 6827, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "age": "6" } }, { - "id": 17191, + "id": 6828, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "age": "7" } - }, + } + ] + }, + "minecraft:purple_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { - "id": 17192, + "default": true, + "id": 10919, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "rotation": "0" } }, { - "id": 17193, + "id": 10920, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "rotation": "1" } }, { - "id": 17194, + "id": 10921, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "rotation": "2" } }, { - "id": 17195, + "id": 10922, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "rotation": "3" } }, { - "id": 17196, + "id": 10923, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "rotation": "4" } }, { - "id": 17197, + "id": 10924, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "rotation": "5" } }, { - "id": 17198, + "id": 10925, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "rotation": "6" } }, { - "id": 17199, + "id": 10926, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "rotation": "7" } }, { - "id": 17200, + "id": 10927, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "rotation": "8" } }, { - "id": 17201, + "id": 10928, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "rotation": "9" } }, { - "id": 17202, + "id": 10929, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "rotation": "10" } }, { - "id": 17203, + "id": 10930, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "rotation": "11" } }, { - "id": 17204, + "id": 10931, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "rotation": "12" } }, { - "id": 17205, + "id": 10932, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "rotation": "13" } }, { - "id": 17206, + "id": 10933, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "rotation": "14" } }, { - "id": 17207, + "id": 10934, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "rotation": "15" } - }, + } + ] + }, + "minecraft:purple_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { - "id": 17208, + "id": 1848, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "occupied": "true", + "part": "head" } }, { - "id": 17209, + "id": 1849, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "occupied": "true", + "part": "foot" } }, { - "id": 17210, + "id": 1850, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "occupied": "false", + "part": "head" } }, { - "id": 17211, + "default": true, + "id": 1851, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "occupied": "false", + "part": "foot" } }, { - "id": 17212, + "id": 1852, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "occupied": "true", + "part": "head" } }, { - "id": 17213, + "id": 1853, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "occupied": "true", + "part": "foot" } }, { - "id": 17214, + "id": 1854, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "occupied": "false", + "part": "head" } }, { - "id": 17215, + "id": 1855, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "occupied": "false", + "part": "foot" } }, { - "id": 17216, + "id": 1856, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "occupied": "true", + "part": "head" } }, { - "id": 17217, + "id": 1857, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "occupied": "true", + "part": "foot" } }, { - "id": 17218, + "id": 1858, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "occupied": "false", + "part": "head" } }, { - "id": 17219, + "id": 1859, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "occupied": "false", + "part": "foot" } }, { - "id": 17220, + "id": 1860, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "occupied": "true", + "part": "head" } }, { - "id": 17221, + "id": 1861, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "occupied": "true", + "part": "foot" } }, { - "id": 17222, + "id": 1862, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "occupied": "false", + "part": "head" } }, { - "id": 17223, + "id": 1863, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "occupied": "false", + "part": "foot" } - }, + } + ] + }, + "minecraft:purple_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 17224, + "id": 20901, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "candles": "1", + "lit": "true", + "waterlogged": "true" } }, { - "id": 17225, + "id": 20902, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "candles": "1", + "lit": "true", + "waterlogged": "false" } }, { - "id": 17226, + "id": 20903, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "candles": "1", + "lit": "false", + "waterlogged": "true" } }, { - "id": 17227, + "default": true, + "id": 20904, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "candles": "1", + "lit": "false", + "waterlogged": "false" } }, { - "id": 17228, + "id": 20905, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "candles": "2", + "lit": "true", + "waterlogged": "true" } }, { - "id": 17229, + "id": 20906, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "candles": "2", + "lit": "true", + "waterlogged": "false" } }, { - "id": 17230, + "id": 20907, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "candles": "2", + "lit": "false", + "waterlogged": "true" } }, { - "id": 17231, + "id": 20908, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "candles": "2", + "lit": "false", + "waterlogged": "false" } }, { - "id": 17232, + "id": 20909, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "candles": "3", + "lit": "true", + "waterlogged": "true" } }, { - "id": 17233, + "id": 20910, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "candles": "3", + "lit": "true", + "waterlogged": "false" } }, { - "id": 17234, + "id": 20911, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "candles": "3", + "lit": "false", + "waterlogged": "true" } }, { - "id": 17235, + "id": 20912, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "candles": "3", + "lit": "false", + "waterlogged": "false" } }, { - "id": 17236, + "id": 20913, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "candles": "4", + "lit": "true", + "waterlogged": "true" } }, { - "id": 17237, + "id": 20914, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "candles": "4", + "lit": "true", + "waterlogged": "false" } }, { - "id": 17238, + "id": 20915, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "candles": "4", + "lit": "false", + "waterlogged": "true" } }, { - "id": 17239, + "id": 20916, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "candles": "4", + "lit": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:purple_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { - "id": 17240, + "id": 21019, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "lit": "true" } }, { - "id": 17241, + "default": true, + "id": 21020, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "lit": "false" } - }, + } + ] + }, + "minecraft:purple_carpet": { + "states": [ { - "id": 17242, + "default": true, + "id": 10738 + } + ] + }, + "minecraft:purple_concrete": { + "states": [ + { + "default": true, + "id": 12738 + } + ] + }, + "minecraft:purple_concrete_powder": { + "states": [ + { + "default": true, + "id": 12754 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12704, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north" } }, { - "id": 17243, + "id": 12705, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south" } }, { - "id": 17244, + "id": 12706, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west" } }, { - "id": 17245, + "id": 12707, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east" } - }, + } + ] + }, + "minecraft:purple_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 17246, + "id": 12628, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north" } }, { - "id": 17247, + "id": 12629, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east" } }, { - "id": 17248, + "id": 12630, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south" } }, { - "id": 17249, + "id": 12631, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west" } }, { - "id": 17250, + "default": true, + "id": 12632, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "up" } }, { - "id": 17251, + "id": 12633, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "down" } - }, + } + ] + }, + "minecraft:purple_stained_glass": { + "states": [ { - "id": 17252, + "default": true, + "id": 5955 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9692, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 17253, + "id": 9693, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 17254, + "id": 9694, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 17255, + "id": 9695, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 17256, + "id": 9696, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 17257, + "id": 9697, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 17258, + "id": 9698, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 17259, + "id": 9699, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 17260, + "id": 9700, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 17261, + "id": 9701, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 17262, + "id": 9702, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 17263, + "id": 9703, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 17264, + "id": 9704, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 17265, + "id": 9705, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 17266, + "id": 9706, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 17267, + "id": 9707, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 17268, + "id": 9708, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 17269, + "id": 9709, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 17270, + "id": 9710, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 17271, + "id": 9711, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 17272, + "id": 9712, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 17273, + "id": 9713, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 17274, + "id": 9714, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 17275, + "id": 9715, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 17276, + "id": 9716, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 17277, + "id": 9717, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 17278, + "id": 9718, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 17279, + "id": 9719, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 17280, + "id": 9720, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 17281, + "id": 9721, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 17282, + "id": 9722, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 17283, + "default": true, + "id": 9723, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "false" } - }, + } + ] + }, + "minecraft:purple_terracotta": { + "states": [ { - "id": 17284, + "default": true, + "id": 9366 + } + ] + }, + "minecraft:purple_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11055, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north" } }, { - "id": 17285, + "id": 11056, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south" } }, { - "id": 17286, + "id": 11057, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west" } }, { - "id": 17287, + "id": 11058, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east" } - }, + } + ] + }, + "minecraft:purple_wool": { + "states": [ { - "id": 17288, + "default": true, + "id": 2057 + } + ] + }, + "minecraft:purpur_block": { + "states": [ + { + "default": true, + "id": 12410 + } + ] + }, + "minecraft:purpur_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12411, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "axis": "x" } }, { - "id": 17289, + "default": true, + "id": 12412, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "axis": "y" } }, { - "id": 17290, + "id": 12413, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "axis": "z" } - }, + } + ] + }, + "minecraft:purpur_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 17291, + "id": 11300, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "type": "top", + "waterlogged": "true" } }, { - "id": 17292, + "id": 11301, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "type": "top", + "waterlogged": "false" } }, { - "id": 17293, + "id": 11302, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 17294, + "default": true, + "id": 11303, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 17295, + "id": 11304, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "type": "double", + "waterlogged": "true" } }, { - "id": 17296, + "id": 11305, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12414, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17297, + "id": 12415, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17298, + "id": 12416, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17299, + "id": 12417, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17300, + "id": 12418, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17301, + "id": 12419, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17302, + "id": 12420, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17303, + "id": 12421, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17304, + "id": 12422, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17305, + "id": 12423, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17306, + "id": 12424, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17307, + "default": true, + "id": 12425, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17308, + "id": 12426, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17309, + "id": 12427, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17310, + "id": 12428, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17311, + "id": 12429, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17312, + "id": 12430, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17313, + "id": 12431, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17314, + "id": 12432, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17315, + "id": 12433, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17316, + "id": 12434, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17317, + "id": 12435, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17318, + "id": 12436, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17319, + "id": 12437, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17320, + "id": 12438, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17321, + "id": 12439, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17322, + "id": 12440, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17323, + "id": 12441, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17324, + "id": 12442, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17325, + "id": 12443, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17326, + "id": 12444, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17327, + "id": 12445, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17328, + "id": 12446, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17329, + "id": 12447, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17330, + "id": 12448, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17331, + "id": 12449, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17332, + "id": 12450, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17333, + "id": 12451, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17334, + "id": 12452, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17335, + "id": 12453, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17336, + "id": 12454, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17337, + "id": 12455, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17338, + "id": 12456, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17339, + "id": 12457, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17340, + "id": 12458, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17341, + "id": 12459, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17342, + "id": 12460, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17343, + "id": 12461, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17344, + "id": 12462, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17345, + "id": 12463, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17346, + "id": 12464, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17347, + "id": 12465, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17348, + "id": 12466, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17349, + "id": 12467, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17350, + "id": 12468, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17351, + "id": 12469, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17352, + "id": 12470, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17353, + "id": 12471, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17354, + "id": 12472, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17355, + "id": 12473, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17356, + "id": 12474, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17357, + "id": 12475, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17358, + "id": 12476, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17359, + "id": 12477, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17360, + "id": 12478, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17361, + "id": 12479, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17362, + "id": 12480, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17363, + "id": 12481, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17364, + "id": 12482, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17365, + "id": 12483, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 17366, + "id": 12484, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 17367, + "id": 12485, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 17368, + "id": 12486, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 17369, + "id": 12487, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 17370, + "id": 12488, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 17371, + "id": 12489, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 17372, + "id": 12490, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 17373, + "id": 12491, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 17374, + "id": 12492, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 17375, + "id": 12493, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:quartz_block": { + "states": [ { - "id": 17376, + "default": true, + "id": 9235 + } + ] + }, + "minecraft:quartz_bricks": { + "states": [ + { + "default": true, + "id": 20724 + } + ] + }, + "minecraft:quartz_pillar": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 9237, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "axis": "x" } }, { - "id": 17377, + "default": true, + "id": 9238, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "axis": "y" } }, { - "id": 17378, + "id": 9239, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11282, + "properties": { + "type": "top", + "waterlogged": "true" } }, { - "id": 17379, + "id": 11283, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "type": "top", + "waterlogged": "false" } }, { - "id": 17380, + "id": 11284, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 17381, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17382, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17383, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17384, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17385, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17386, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17387, - "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17388, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17389, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17390, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17391, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17392, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17393, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" - } - }, - { - "id": 17394, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" - } - }, - { - "id": 17395, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" - } - }, - { - "id": 17396, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" - } - }, - { - "id": 17397, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" - } - }, - { - "id": 17398, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" - } - }, - { - "id": 17399, - "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" - } - } - ] - }, - "minecraft:red_nether_bricks": { - "states": [ - { - "default": true, - "id": 12545 - } - ] - }, - "minecraft:red_sand": { - "states": [ - { - "default": true, - "id": 117 - } - ] - }, - "minecraft:red_sandstone": { - "states": [ - { - "default": true, - "id": 11079 - } - ] - }, - "minecraft:red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11288, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 11289, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11290, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11291, + "default": true, + "id": 11285, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11292, + "id": 11286, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11293, + "id": 11287, "properties": { "type": "double", "waterlogged": "false" @@ -187110,7 +189512,7 @@ } ] }, - "minecraft:red_sandstone_stairs": { + "minecraft:quartz_stairs": { "properties": { "facing": [ "north", @@ -187136,7 +189538,7 @@ }, "states": [ { - "id": 11082, + "id": 9240, "properties": { "facing": "north", "half": "top", @@ -187145,7 +189547,7 @@ } }, { - "id": 11083, + "id": 9241, "properties": { "facing": "north", "half": "top", @@ -187154,7 +189556,7 @@ } }, { - "id": 11084, + "id": 9242, "properties": { "facing": "north", "half": "top", @@ -187163,7 +189565,7 @@ } }, { - "id": 11085, + "id": 9243, "properties": { "facing": "north", "half": "top", @@ -187172,7 +189574,7 @@ } }, { - "id": 11086, + "id": 9244, "properties": { "facing": "north", "half": "top", @@ -187181,7 +189583,7 @@ } }, { - "id": 11087, + "id": 9245, "properties": { "facing": "north", "half": "top", @@ -187190,7 +189592,7 @@ } }, { - "id": 11088, + "id": 9246, "properties": { "facing": "north", "half": "top", @@ -187199,7 +189601,7 @@ } }, { - "id": 11089, + "id": 9247, "properties": { "facing": "north", "half": "top", @@ -187208,7 +189610,7 @@ } }, { - "id": 11090, + "id": 9248, "properties": { "facing": "north", "half": "top", @@ -187217,7 +189619,7 @@ } }, { - "id": 11091, + "id": 9249, "properties": { "facing": "north", "half": "top", @@ -187226,7 +189628,7 @@ } }, { - "id": 11092, + "id": 9250, "properties": { "facing": "north", "half": "bottom", @@ -187236,7 +189638,7 @@ }, { "default": true, - "id": 11093, + "id": 9251, "properties": { "facing": "north", "half": "bottom", @@ -187245,7 +189647,7 @@ } }, { - "id": 11094, + "id": 9252, "properties": { "facing": "north", "half": "bottom", @@ -187254,7 +189656,7 @@ } }, { - "id": 11095, + "id": 9253, "properties": { "facing": "north", "half": "bottom", @@ -187263,7 +189665,7 @@ } }, { - "id": 11096, + "id": 9254, "properties": { "facing": "north", "half": "bottom", @@ -187272,7 +189674,7 @@ } }, { - "id": 11097, + "id": 9255, "properties": { "facing": "north", "half": "bottom", @@ -187281,7 +189683,7 @@ } }, { - "id": 11098, + "id": 9256, "properties": { "facing": "north", "half": "bottom", @@ -187290,7 +189692,7 @@ } }, { - "id": 11099, + "id": 9257, "properties": { "facing": "north", "half": "bottom", @@ -187299,7 +189701,7 @@ } }, { - "id": 11100, + "id": 9258, "properties": { "facing": "north", "half": "bottom", @@ -187308,7 +189710,7 @@ } }, { - "id": 11101, + "id": 9259, "properties": { "facing": "north", "half": "bottom", @@ -187317,7 +189719,7 @@ } }, { - "id": 11102, + "id": 9260, "properties": { "facing": "south", "half": "top", @@ -187326,7 +189728,7 @@ } }, { - "id": 11103, + "id": 9261, "properties": { "facing": "south", "half": "top", @@ -187335,7 +189737,7 @@ } }, { - "id": 11104, + "id": 9262, "properties": { "facing": "south", "half": "top", @@ -187344,7 +189746,7 @@ } }, { - "id": 11105, + "id": 9263, "properties": { "facing": "south", "half": "top", @@ -187353,7 +189755,7 @@ } }, { - "id": 11106, + "id": 9264, "properties": { "facing": "south", "half": "top", @@ -187362,7 +189764,7 @@ } }, { - "id": 11107, + "id": 9265, "properties": { "facing": "south", "half": "top", @@ -187371,7 +189773,7 @@ } }, { - "id": 11108, + "id": 9266, "properties": { "facing": "south", "half": "top", @@ -187380,7 +189782,7 @@ } }, { - "id": 11109, + "id": 9267, "properties": { "facing": "south", "half": "top", @@ -187389,7 +189791,7 @@ } }, { - "id": 11110, + "id": 9268, "properties": { "facing": "south", "half": "top", @@ -187398,7 +189800,7 @@ } }, { - "id": 11111, + "id": 9269, "properties": { "facing": "south", "half": "top", @@ -187407,7 +189809,7 @@ } }, { - "id": 11112, + "id": 9270, "properties": { "facing": "south", "half": "bottom", @@ -187416,7 +189818,7 @@ } }, { - "id": 11113, + "id": 9271, "properties": { "facing": "south", "half": "bottom", @@ -187425,7 +189827,7 @@ } }, { - "id": 11114, + "id": 9272, "properties": { "facing": "south", "half": "bottom", @@ -187434,7 +189836,7 @@ } }, { - "id": 11115, + "id": 9273, "properties": { "facing": "south", "half": "bottom", @@ -187443,7 +189845,7 @@ } }, { - "id": 11116, + "id": 9274, "properties": { "facing": "south", "half": "bottom", @@ -187452,7 +189854,7 @@ } }, { - "id": 11117, + "id": 9275, "properties": { "facing": "south", "half": "bottom", @@ -187461,7 +189863,7 @@ } }, { - "id": 11118, + "id": 9276, "properties": { "facing": "south", "half": "bottom", @@ -187470,7 +189872,7 @@ } }, { - "id": 11119, + "id": 9277, "properties": { "facing": "south", "half": "bottom", @@ -187479,7 +189881,7 @@ } }, { - "id": 11120, + "id": 9278, "properties": { "facing": "south", "half": "bottom", @@ -187488,7 +189890,7 @@ } }, { - "id": 11121, + "id": 9279, "properties": { "facing": "south", "half": "bottom", @@ -187497,7 +189899,7 @@ } }, { - "id": 11122, + "id": 9280, "properties": { "facing": "west", "half": "top", @@ -187506,7 +189908,7 @@ } }, { - "id": 11123, + "id": 9281, "properties": { "facing": "west", "half": "top", @@ -187515,7 +189917,7 @@ } }, { - "id": 11124, + "id": 9282, "properties": { "facing": "west", "half": "top", @@ -187524,7 +189926,7 @@ } }, { - "id": 11125, + "id": 9283, "properties": { "facing": "west", "half": "top", @@ -187533,7 +189935,7 @@ } }, { - "id": 11126, + "id": 9284, "properties": { "facing": "west", "half": "top", @@ -187542,7 +189944,7 @@ } }, { - "id": 11127, + "id": 9285, "properties": { "facing": "west", "half": "top", @@ -187551,7 +189953,7 @@ } }, { - "id": 11128, + "id": 9286, "properties": { "facing": "west", "half": "top", @@ -187560,7 +189962,7 @@ } }, { - "id": 11129, + "id": 9287, "properties": { "facing": "west", "half": "top", @@ -187569,7 +189971,7 @@ } }, { - "id": 11130, + "id": 9288, "properties": { "facing": "west", "half": "top", @@ -187578,7 +189980,7 @@ } }, { - "id": 11131, + "id": 9289, "properties": { "facing": "west", "half": "top", @@ -187587,7 +189989,7 @@ } }, { - "id": 11132, + "id": 9290, "properties": { "facing": "west", "half": "bottom", @@ -187596,7 +189998,7 @@ } }, { - "id": 11133, + "id": 9291, "properties": { "facing": "west", "half": "bottom", @@ -187605,7 +190007,7 @@ } }, { - "id": 11134, + "id": 9292, "properties": { "facing": "west", "half": "bottom", @@ -187614,7 +190016,7 @@ } }, { - "id": 11135, + "id": 9293, "properties": { "facing": "west", "half": "bottom", @@ -187623,7 +190025,7 @@ } }, { - "id": 11136, + "id": 9294, "properties": { "facing": "west", "half": "bottom", @@ -187632,7 +190034,7 @@ } }, { - "id": 11137, + "id": 9295, "properties": { "facing": "west", "half": "bottom", @@ -187641,7 +190043,7 @@ } }, { - "id": 11138, + "id": 9296, "properties": { "facing": "west", "half": "bottom", @@ -187650,7 +190052,7 @@ } }, { - "id": 11139, + "id": 9297, "properties": { "facing": "west", "half": "bottom", @@ -187659,7 +190061,7 @@ } }, { - "id": 11140, + "id": 9298, "properties": { "facing": "west", "half": "bottom", @@ -187668,7 +190070,7 @@ } }, { - "id": 11141, + "id": 9299, "properties": { "facing": "west", "half": "bottom", @@ -187677,7 +190079,7 @@ } }, { - "id": 11142, + "id": 9300, "properties": { "facing": "east", "half": "top", @@ -187686,7 +190088,7 @@ } }, { - "id": 11143, + "id": 9301, "properties": { "facing": "east", "half": "top", @@ -187695,7 +190097,7 @@ } }, { - "id": 11144, + "id": 9302, "properties": { "facing": "east", "half": "top", @@ -187704,7 +190106,7 @@ } }, { - "id": 11145, + "id": 9303, "properties": { "facing": "east", "half": "top", @@ -187713,7 +190115,7 @@ } }, { - "id": 11146, + "id": 9304, "properties": { "facing": "east", "half": "top", @@ -187722,7 +190124,7 @@ } }, { - "id": 11147, + "id": 9305, "properties": { "facing": "east", "half": "top", @@ -187731,7 +190133,7 @@ } }, { - "id": 11148, + "id": 9306, "properties": { "facing": "east", "half": "top", @@ -187740,7 +190142,7 @@ } }, { - "id": 11149, + "id": 9307, "properties": { "facing": "east", "half": "top", @@ -187749,7 +190151,7 @@ } }, { - "id": 11150, + "id": 9308, "properties": { "facing": "east", "half": "top", @@ -187758,7 +190160,7 @@ } }, { - "id": 11151, + "id": 9309, "properties": { "facing": "east", "half": "top", @@ -187767,7 +190169,7 @@ } }, { - "id": 11152, + "id": 9310, "properties": { "facing": "east", "half": "bottom", @@ -187776,7 +190178,7 @@ } }, { - "id": 11153, + "id": 9311, "properties": { "facing": "east", "half": "bottom", @@ -187785,7 +190187,7 @@ } }, { - "id": 11154, + "id": 9312, "properties": { "facing": "east", "half": "bottom", @@ -187794,7 +190196,7 @@ } }, { - "id": 11155, + "id": 9313, "properties": { "facing": "east", "half": "bottom", @@ -187803,7 +190205,7 @@ } }, { - "id": 11156, + "id": 9314, "properties": { "facing": "east", "half": "bottom", @@ -187812,7 +190214,7 @@ } }, { - "id": 11157, + "id": 9315, "properties": { "facing": "east", "half": "bottom", @@ -187821,7 +190223,7 @@ } }, { - "id": 11158, + "id": 9316, "properties": { "facing": "east", "half": "bottom", @@ -187830,7 +190232,7 @@ } }, { - "id": 11159, + "id": 9317, "properties": { "facing": "east", "half": "bottom", @@ -187839,7 +190241,7 @@ } }, { - "id": 11160, + "id": 9318, "properties": { "facing": "east", "half": "bottom", @@ -187848,7 +190250,7 @@ } }, { - "id": 11161, + "id": 9319, "properties": { "facing": "east", "half": "bottom", @@ -187858,2419 +190260,2281 @@ } ] }, - "minecraft:red_sandstone_wall": { + "minecraft:rail": { "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" ], "waterlogged": [ "true", "false" - ], - "west": [ - "none", - "low", - "tall" ] }, "states": [ { - "id": 14808, + "id": 4662, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "shape": "north_south", + "waterlogged": "true" } }, { - "id": 14809, + "default": true, + "id": 4663, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "shape": "north_south", + "waterlogged": "false" } }, { - "id": 14810, + "id": 4664, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "shape": "east_west", + "waterlogged": "true" } }, { - "default": true, - "id": 14811, + "id": 4665, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "shape": "east_west", + "waterlogged": "false" } }, { - "id": 14812, + "id": 4666, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "shape": "ascending_east", + "waterlogged": "true" } }, { - "id": 14813, + "id": 4667, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "shape": "ascending_east", + "waterlogged": "false" } }, { - "id": 14814, + "id": 4668, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "shape": "ascending_west", + "waterlogged": "true" } }, { - "id": 14815, + "id": 4669, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "shape": "ascending_west", + "waterlogged": "false" } }, { - "id": 14816, + "id": 4670, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "shape": "ascending_north", + "waterlogged": "true" } }, { - "id": 14817, + "id": 4671, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "shape": "ascending_north", + "waterlogged": "false" } }, { - "id": 14818, + "id": 4672, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "shape": "ascending_south", + "waterlogged": "true" } }, { - "id": 14819, + "id": 4673, "properties": { - "east": "none", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "shape": "ascending_south", + "waterlogged": "false" } }, { - "id": 14820, + "id": 4674, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "shape": "south_east", + "waterlogged": "true" } }, { - "id": 14821, + "id": 4675, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "shape": "south_east", + "waterlogged": "false" } }, { - "id": 14822, + "id": 4676, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "shape": "south_west", + "waterlogged": "true" } }, { - "id": 14823, + "id": 4677, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "shape": "south_west", + "waterlogged": "false" } }, { - "id": 14824, + "id": 4678, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "shape": "north_west", + "waterlogged": "true" } }, { - "id": 14825, + "id": 4679, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "shape": "north_west", + "waterlogged": "false" } }, { - "id": 14826, + "id": 4680, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "shape": "north_east", + "waterlogged": "true" } }, { - "id": 14827, + "id": 4681, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "shape": "north_east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:raw_copper_block": { + "states": [ { - "id": 14828, + "default": true, + "id": 26559 + } + ] + }, + "minecraft:raw_gold_block": { + "states": [ + { + "default": true, + "id": 26560 + } + ] + }, + "minecraft:raw_iron_block": { + "states": [ + { + "default": true, + "id": 26558 + } + ] + }, + "minecraft:red_banner": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10983, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "rotation": "0" } }, { - "id": 14829, + "id": 10984, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "rotation": "1" } }, { - "id": 14830, + "id": 10985, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "rotation": "2" } }, { - "id": 14831, + "id": 10986, "properties": { - "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "rotation": "3" } }, { - "id": 14832, + "id": 10987, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "rotation": "4" } }, { - "id": 14833, + "id": 10988, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "rotation": "5" } }, { - "id": 14834, + "id": 10989, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "rotation": "6" } }, { - "id": 14835, + "id": 10990, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "rotation": "7" } }, { - "id": 14836, + "id": 10991, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "rotation": "8" } }, { - "id": 14837, + "id": 10992, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "rotation": "9" } }, { - "id": 14838, + "id": 10993, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "rotation": "10" } }, { - "id": 14839, + "id": 10994, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "rotation": "11" } }, { - "id": 14840, + "id": 10995, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "rotation": "12" } }, { - "id": 14841, + "id": 10996, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "rotation": "13" } }, { - "id": 14842, + "id": 10997, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "rotation": "14" } }, { - "id": 14843, + "id": 10998, "properties": { - "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "rotation": "15" } - }, + } + ] + }, + "minecraft:red_bed": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ { - "id": 14844, + "id": 1912, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "occupied": "true", + "part": "head" } }, { - "id": 14845, + "id": 1913, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "occupied": "true", + "part": "foot" } }, { - "id": 14846, + "id": 1914, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "occupied": "false", + "part": "head" } }, { - "id": 14847, + "default": true, + "id": 1915, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "occupied": "false", + "part": "foot" } }, { - "id": 14848, + "id": 1916, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "occupied": "true", + "part": "head" } }, { - "id": 14849, + "id": 1917, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "occupied": "true", + "part": "foot" } }, { - "id": 14850, + "id": 1918, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "occupied": "false", + "part": "head" } }, { - "id": 14851, + "id": 1919, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "occupied": "false", + "part": "foot" } }, { - "id": 14852, + "id": 1920, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "occupied": "true", + "part": "head" } }, { - "id": 14853, + "id": 1921, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "occupied": "true", + "part": "foot" } }, { - "id": 14854, + "id": 1922, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "occupied": "false", + "part": "head" } }, { - "id": 14855, + "id": 1923, "properties": { - "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "occupied": "false", + "part": "foot" } }, { - "id": 14856, + "id": 1924, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "occupied": "true", + "part": "head" } }, { - "id": 14857, + "id": 1925, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "occupied": "true", + "part": "foot" } }, { - "id": 14858, + "id": 1926, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "occupied": "false", + "part": "head" } }, { - "id": 14859, + "id": 1927, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "occupied": "false", + "part": "foot" } - }, + } + ] + }, + "minecraft:red_candle": { + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 14860, + "id": 20965, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "candles": "1", + "lit": "true", + "waterlogged": "true" } }, { - "id": 14861, + "id": 20966, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "candles": "1", + "lit": "true", + "waterlogged": "false" } }, { - "id": 14862, + "id": 20967, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "candles": "1", + "lit": "false", + "waterlogged": "true" } }, { - "id": 14863, + "default": true, + "id": 20968, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "candles": "1", + "lit": "false", + "waterlogged": "false" } }, { - "id": 14864, + "id": 20969, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "candles": "2", + "lit": "true", + "waterlogged": "true" } }, { - "id": 14865, + "id": 20970, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "candles": "2", + "lit": "true", + "waterlogged": "false" } }, { - "id": 14866, + "id": 20971, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "candles": "2", + "lit": "false", + "waterlogged": "true" } }, { - "id": 14867, + "id": 20972, "properties": { - "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "candles": "2", + "lit": "false", + "waterlogged": "false" } }, { - "id": 14868, + "id": 20973, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "candles": "3", + "lit": "true", + "waterlogged": "true" } }, { - "id": 14869, + "id": 20974, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "candles": "3", + "lit": "true", + "waterlogged": "false" } }, { - "id": 14870, + "id": 20975, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "candles": "3", + "lit": "false", + "waterlogged": "true" } }, { - "id": 14871, + "id": 20976, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "candles": "3", + "lit": "false", + "waterlogged": "false" } }, { - "id": 14872, + "id": 20977, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "candles": "4", + "lit": "true", + "waterlogged": "true" } }, { - "id": 14873, + "id": 20978, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "candles": "4", + "lit": "true", + "waterlogged": "false" } }, { - "id": 14874, + "id": 20979, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "candles": "4", + "lit": "false", + "waterlogged": "true" } }, { - "id": 14875, + "id": 20980, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "candles": "4", + "lit": "false", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:red_candle_cake": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ { - "id": 14876, + "id": 21027, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "lit": "true" } }, { - "id": 14877, + "default": true, + "id": 21028, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "states": [ + { + "default": true, + "id": 10742 + } + ] + }, + "minecraft:red_concrete": { + "states": [ + { + "default": true, + "id": 12742 + } + ] + }, + "minecraft:red_concrete_powder": { + "states": [ + { + "default": true, + "id": 12758 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12720, + "properties": { + "facing": "north" } }, { - "id": 14878, + "id": 12721, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south" } }, { - "id": 14879, + "id": 12722, "properties": { - "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west" } }, { - "id": 14880, + "id": 12723, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "states": [ + { + "default": true, + "id": 2090 + } + ] + }, + "minecraft:red_mushroom_block": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6613, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14881, + "id": 6614, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14882, + "id": 6615, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 14883, + "id": 6616, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 14884, + "id": 6617, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14885, + "id": 6618, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14886, + "id": 6619, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14887, + "id": 6620, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14888, + "id": 6621, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 14889, + "id": 6622, "properties": { - "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 14890, + "id": 6623, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14891, + "id": 6624, "properties": { - "east": "none", - "north": "tall", - "south": "none", + "down": "true", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14892, + "id": 6625, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14893, + "id": 6626, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "true", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14894, + "id": 6627, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 14895, + "id": 6628, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 14896, + "id": 6629, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14897, + "id": 6630, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14898, + "id": 6631, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14899, + "id": 6632, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14900, + "id": 6633, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 14901, + "id": 6634, "properties": { - "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 14902, + "id": 6635, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14903, + "id": 6636, "properties": { - "east": "none", - "north": "tall", - "south": "low", + "down": "true", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14904, + "id": 6637, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14905, + "id": 6638, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14906, + "id": 6639, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 14907, + "id": 6640, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 14908, + "id": 6641, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14909, + "id": 6642, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14910, + "id": 6643, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14911, + "id": 6644, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "true", + "east": "false", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14912, + "id": 6645, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 14913, + "id": 6646, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 14914, + "id": 6647, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14915, + "id": 6648, "properties": { - "east": "none", - "north": "tall", - "south": "tall", + "down": "false", + "east": "true", + "north": "true", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14916, + "id": 6649, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14917, + "id": 6650, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14918, + "id": 6651, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 14919, + "id": 6652, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" } }, { - "id": 14920, + "id": 6653, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14921, + "id": 6654, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14922, + "id": 6655, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14923, + "id": 6656, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14924, + "id": 6657, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" } }, { - "id": 14925, + "id": 6658, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" } }, { - "id": 14926, + "id": 6659, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14927, + "id": 6660, "properties": { - "east": "low", - "north": "none", - "south": "none", + "down": "false", + "east": "true", + "north": "false", + "south": "false", "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14928, + "id": 6661, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14929, + "id": 6662, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "true", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14930, + "id": 6663, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" } }, { - "id": 14931, + "id": 6664, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" } }, { - "id": 14932, + "id": 6665, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14933, + "id": 6666, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "true", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14934, + "id": 6667, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14935, + "id": 6668, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "true", + "south": "false", "up": "false", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14936, + "id": 6669, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" } }, { - "id": 14937, + "id": 6670, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" } }, { - "id": 14938, + "id": 6671, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 14939, + "id": 6672, "properties": { - "east": "low", - "north": "none", - "south": "low", + "down": "false", + "east": "false", + "north": "false", + "south": "true", "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 14940, + "id": 6673, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 14941, + "id": 6674, "properties": { - "east": "low", - "north": "none", - "south": "tall", + "down": "false", + "east": "false", + "north": "false", + "south": "false", "up": "true", - "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 14942, + "id": 6675, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" } }, { - "id": 14943, + "id": 6676, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" } - }, + } + ] + }, + "minecraft:red_nether_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 14944, + "id": 14142, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "type": "top", + "waterlogged": "true" } }, { - "id": 14945, + "id": 14143, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "type": "top", + "waterlogged": "false" } }, { - "id": 14946, + "id": 14144, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 14947, + "default": true, + "id": 14145, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 14948, + "id": 14146, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "type": "double", + "waterlogged": "true" } }, { - "id": 14949, + "id": 14147, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 14950, + "id": 13842, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 14951, + "id": 13843, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 14952, + "id": 13844, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 14953, + "id": 13845, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 14954, + "id": 13846, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 14955, + "id": 13847, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 14956, + "id": 13848, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 14957, + "id": 13849, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 14958, + "id": 13850, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 14959, + "id": 13851, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 14960, + "id": 13852, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 14961, + "default": true, + "id": 13853, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 14962, + "id": 13854, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 14963, + "id": 13855, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 14964, + "id": 13856, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 14965, + "id": 13857, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 14966, + "id": 13858, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 14967, + "id": 13859, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 14968, + "id": 13860, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 14969, + "id": 13861, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 14970, + "id": 13862, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 14971, + "id": 13863, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 14972, + "id": 13864, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 14973, + "id": 13865, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 14974, + "id": 13866, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 14975, + "id": 13867, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 14976, + "id": 13868, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 14977, + "id": 13869, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 14978, + "id": 13870, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 14979, + "id": 13871, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 14980, + "id": 13872, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 14981, + "id": 13873, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 14982, + "id": 13874, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 14983, + "id": 13875, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 14984, + "id": 13876, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 14985, + "id": 13877, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 14986, + "id": 13878, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 14987, + "id": 13879, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 14988, + "id": 13880, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 14989, + "id": 13881, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 14990, + "id": 13882, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 14991, + "id": 13883, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 14992, + "id": 13884, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 14993, + "id": 13885, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 14994, + "id": 13886, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 14995, + "id": 13887, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 14996, + "id": 13888, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 14997, + "id": 13889, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 14998, + "id": 13890, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 14999, + "id": 13891, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 15000, + "id": 13892, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15001, + "id": 13893, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15002, + "id": 13894, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15003, + "id": 13895, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15004, + "id": 13896, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 15005, + "id": 13897, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 15006, + "id": 13898, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 15007, + "id": 13899, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 15008, + "id": 13900, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 15009, + "id": 13901, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 15010, + "id": 13902, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15011, + "id": 13903, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15012, + "id": 13904, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15013, + "id": 13905, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15014, + "id": 13906, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 15015, + "id": 13907, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 15016, + "id": 13908, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 15017, + "id": 13909, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 15018, + "id": 13910, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 15019, + "id": 13911, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 15020, + "id": 13912, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 15021, + "id": 13913, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 15022, + "id": 13914, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 15023, + "id": 13915, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 15024, + "id": 13916, "properties": { - "east": "tall", + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13918, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13919, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13920, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13921, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17076, + "properties": { + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190279,9 +192543,9 @@ } }, { - "id": 15025, + "id": 17077, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190290,9 +192554,9 @@ } }, { - "id": 15026, + "id": 17078, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190301,9 +192565,10 @@ } }, { - "id": 15027, + "default": true, + "id": 17079, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190312,9 +192577,9 @@ } }, { - "id": 15028, + "id": 17080, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190323,9 +192588,9 @@ } }, { - "id": 15029, + "id": 17081, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "true", @@ -190334,9 +192599,9 @@ } }, { - "id": 15030, + "id": 17082, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190345,9 +192610,9 @@ } }, { - "id": 15031, + "id": 17083, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190356,9 +192621,9 @@ } }, { - "id": 15032, + "id": 17084, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190367,9 +192632,9 @@ } }, { - "id": 15033, + "id": 17085, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190378,9 +192643,9 @@ } }, { - "id": 15034, + "id": 17086, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190389,9 +192654,9 @@ } }, { - "id": 15035, + "id": 17087, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "none", "up": "false", @@ -190400,9 +192665,9 @@ } }, { - "id": 15036, + "id": 17088, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190411,9 +192676,9 @@ } }, { - "id": 15037, + "id": 17089, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190422,9 +192687,9 @@ } }, { - "id": 15038, + "id": 17090, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190433,9 +192698,9 @@ } }, { - "id": 15039, + "id": 17091, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190444,9 +192709,9 @@ } }, { - "id": 15040, + "id": 17092, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190455,9 +192720,9 @@ } }, { - "id": 15041, + "id": 17093, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "true", @@ -190466,9 +192731,9 @@ } }, { - "id": 15042, + "id": 17094, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190477,9 +192742,9 @@ } }, { - "id": 15043, + "id": 17095, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190488,9 +192753,9 @@ } }, { - "id": 15044, + "id": 17096, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190499,9 +192764,9 @@ } }, { - "id": 15045, + "id": 17097, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190510,9 +192775,9 @@ } }, { - "id": 15046, + "id": 17098, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190521,9 +192786,9 @@ } }, { - "id": 15047, + "id": 17099, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "low", "up": "false", @@ -190532,9 +192797,9 @@ } }, { - "id": 15048, + "id": 17100, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190543,9 +192808,9 @@ } }, { - "id": 15049, + "id": 17101, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190554,9 +192819,9 @@ } }, { - "id": 15050, + "id": 17102, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190565,9 +192830,9 @@ } }, { - "id": 15051, + "id": 17103, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190576,9 +192841,9 @@ } }, { - "id": 15052, + "id": 17104, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190587,9 +192852,9 @@ } }, { - "id": 15053, + "id": 17105, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "true", @@ -190598,9 +192863,9 @@ } }, { - "id": 15054, + "id": 17106, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190609,9 +192874,9 @@ } }, { - "id": 15055, + "id": 17107, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190620,9 +192885,9 @@ } }, { - "id": 15056, + "id": 17108, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190631,9 +192896,9 @@ } }, { - "id": 15057, + "id": 17109, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190642,9 +192907,9 @@ } }, { - "id": 15058, + "id": 17110, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190653,9 +192918,9 @@ } }, { - "id": 15059, + "id": 17111, "properties": { - "east": "tall", + "east": "none", "north": "none", "south": "tall", "up": "false", @@ -190664,9 +192929,9 @@ } }, { - "id": 15060, + "id": 17112, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190675,9 +192940,9 @@ } }, { - "id": 15061, + "id": 17113, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190686,9 +192951,9 @@ } }, { - "id": 15062, + "id": 17114, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190697,9 +192962,9 @@ } }, { - "id": 15063, + "id": 17115, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190708,9 +192973,9 @@ } }, { - "id": 15064, + "id": 17116, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190719,9 +192984,9 @@ } }, { - "id": 15065, + "id": 17117, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "true", @@ -190730,9 +192995,9 @@ } }, { - "id": 15066, + "id": 17118, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190741,9 +193006,9 @@ } }, { - "id": 15067, + "id": 17119, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190752,9 +193017,9 @@ } }, { - "id": 15068, + "id": 17120, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190763,9 +193028,9 @@ } }, { - "id": 15069, + "id": 17121, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190774,9 +193039,9 @@ } }, { - "id": 15070, + "id": 17122, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190785,9 +193050,9 @@ } }, { - "id": 15071, + "id": 17123, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "none", "up": "false", @@ -190796,9 +193061,9 @@ } }, { - "id": 15072, + "id": 17124, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190807,9 +193072,9 @@ } }, { - "id": 15073, + "id": 17125, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190818,9 +193083,9 @@ } }, { - "id": 15074, + "id": 17126, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190829,9 +193094,9 @@ } }, { - "id": 15075, + "id": 17127, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190840,9 +193105,9 @@ } }, { - "id": 15076, + "id": 17128, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190851,9 +193116,9 @@ } }, { - "id": 15077, + "id": 17129, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "true", @@ -190862,9 +193127,9 @@ } }, { - "id": 15078, + "id": 17130, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190873,9 +193138,9 @@ } }, { - "id": 15079, + "id": 17131, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190884,9 +193149,9 @@ } }, { - "id": 15080, + "id": 17132, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190895,9 +193160,9 @@ } }, { - "id": 15081, + "id": 17133, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190906,9 +193171,9 @@ } }, { - "id": 15082, + "id": 17134, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190917,9 +193182,9 @@ } }, { - "id": 15083, + "id": 17135, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "low", "up": "false", @@ -190928,9 +193193,9 @@ } }, { - "id": 15084, + "id": 17136, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190939,9 +193204,9 @@ } }, { - "id": 15085, + "id": 17137, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190950,9 +193215,9 @@ } }, { - "id": 15086, + "id": 17138, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190961,9 +193226,9 @@ } }, { - "id": 15087, + "id": 17139, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190972,9 +193237,9 @@ } }, { - "id": 15088, + "id": 17140, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190983,9 +193248,9 @@ } }, { - "id": 15089, + "id": 17141, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "true", @@ -190994,9 +193259,9 @@ } }, { - "id": 15090, + "id": 17142, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191005,9 +193270,9 @@ } }, { - "id": 15091, + "id": 17143, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191016,9 +193281,9 @@ } }, { - "id": 15092, + "id": 17144, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191027,9 +193292,9 @@ } }, { - "id": 15093, + "id": 17145, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191038,9 +193303,9 @@ } }, { - "id": 15094, + "id": 17146, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191049,9 +193314,9 @@ } }, { - "id": 15095, + "id": 17147, "properties": { - "east": "tall", + "east": "none", "north": "low", "south": "tall", "up": "false", @@ -191060,9 +193325,9 @@ } }, { - "id": 15096, + "id": 17148, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191071,9 +193336,9 @@ } }, { - "id": 15097, + "id": 17149, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191082,9 +193347,9 @@ } }, { - "id": 15098, + "id": 17150, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191093,9 +193358,9 @@ } }, { - "id": 15099, + "id": 17151, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191104,9 +193369,9 @@ } }, { - "id": 15100, + "id": 17152, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191115,9 +193380,9 @@ } }, { - "id": 15101, + "id": 17153, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "true", @@ -191126,9 +193391,9 @@ } }, { - "id": 15102, + "id": 17154, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191137,9 +193402,9 @@ } }, { - "id": 15103, + "id": 17155, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191148,9 +193413,9 @@ } }, { - "id": 15104, + "id": 17156, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191159,9 +193424,9 @@ } }, { - "id": 15105, + "id": 17157, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191170,9 +193435,9 @@ } }, { - "id": 15106, + "id": 17158, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191181,9 +193446,9 @@ } }, { - "id": 15107, + "id": 17159, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "none", "up": "false", @@ -191192,9 +193457,9 @@ } }, { - "id": 15108, + "id": 17160, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191203,9 +193468,9 @@ } }, { - "id": 15109, + "id": 17161, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191214,9 +193479,9 @@ } }, { - "id": 15110, + "id": 17162, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191225,9 +193490,9 @@ } }, { - "id": 15111, + "id": 17163, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191236,9 +193501,9 @@ } }, { - "id": 15112, + "id": 17164, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191247,9 +193512,9 @@ } }, { - "id": 15113, + "id": 17165, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "true", @@ -191258,9 +193523,9 @@ } }, { - "id": 15114, + "id": 17166, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191269,9 +193534,9 @@ } }, { - "id": 15115, + "id": 17167, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191280,9 +193545,9 @@ } }, { - "id": 15116, + "id": 17168, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191291,9 +193556,9 @@ } }, { - "id": 15117, + "id": 17169, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191302,9 +193567,9 @@ } }, { - "id": 15118, + "id": 17170, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191313,9 +193578,9 @@ } }, { - "id": 15119, + "id": 17171, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "low", "up": "false", @@ -191324,9 +193589,9 @@ } }, { - "id": 15120, + "id": 17172, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191335,9 +193600,9 @@ } }, { - "id": 15121, + "id": 17173, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191346,9 +193611,9 @@ } }, { - "id": 15122, + "id": 17174, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191357,9 +193622,9 @@ } }, { - "id": 15123, + "id": 17175, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191368,9 +193633,9 @@ } }, { - "id": 15124, + "id": 17176, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191379,9 +193644,9 @@ } }, { - "id": 15125, + "id": 17177, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "true", @@ -191390,9 +193655,9 @@ } }, { - "id": 15126, + "id": 17178, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -191401,9 +193666,9 @@ } }, { - "id": 15127, + "id": 17179, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -191412,9 +193677,9 @@ } }, { - "id": 15128, + "id": 17180, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -191423,9 +193688,9 @@ } }, { - "id": 15129, + "id": 17181, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -191434,9 +193699,9 @@ } }, { - "id": 15130, + "id": 17182, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", @@ -191445,21773 +193710,42920 @@ } }, { - "id": 15131, + "id": 17183, "properties": { - "east": "tall", + "east": "none", "north": "tall", "south": "tall", "up": "false", "waterlogged": "false", "west": "tall" } - } - ] - }, - "minecraft:red_shulker_box": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12652, + "id": 17184, "properties": { - "facing": "north" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 12653, + "id": 17185, "properties": { - "facing": "east" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 12654, + "id": 17186, "properties": { - "facing": "south" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 12655, + "id": 17187, "properties": { - "facing": "west" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 12656, + "id": 17188, "properties": { - "facing": "up" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 12657, + "id": 17189, "properties": { - "facing": "down" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:red_stained_glass": { - "states": [ - { - "default": true, - "id": 5960 - } - ] - }, - "minecraft:red_stained_glass_pane": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9820, + "id": 17190, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9821, + "id": 17191, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 9822, + "id": 17192, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9823, + "id": 17193, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" - } - }, - { - "id": 9824, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 9825, + "id": 17194, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9826, + "id": 17195, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "id": 9827, + "id": 17196, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9828, + "id": 17197, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "low" } }, { - "id": 9829, + "id": 17198, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "false" + "west": "tall" } }, { - "id": 9830, + "id": 17199, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "none" } }, { - "id": 9831, + "id": 17200, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "low" } }, { - "id": 9832, + "id": 17201, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9833, + "id": 17202, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "none" } }, { - "id": 9834, + "id": 17203, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9835, + "id": 17204, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9836, + "id": 17205, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9837, + "id": 17206, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9838, + "id": 17207, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "low", + "up": "false", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "id": 9839, + "id": 17208, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 9840, + "id": 17209, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "low" } }, { - "id": 9841, + "id": 17210, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "false" + "west": "tall" } }, { - "id": 9842, + "id": 17211, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "none" } }, { - "id": 9843, + "id": 17212, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" + "west": "low" } }, { - "id": 9844, + "id": 17213, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 9845, + "id": 17214, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "none" } }, { - "id": 9846, + "id": 17215, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 9847, + "id": 17216, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 9848, + "id": 17217, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 9849, + "id": 17218, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 9850, + "id": 17219, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "default": true, - "id": 9851, + "id": 17220, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:red_terracotta": { - "states": [ - { - "default": true, - "id": 9370 - } - ] - }, - "minecraft:red_tulip": { - "states": [ - { - "default": true, - "id": 2081 - } - ] - }, - "minecraft:red_wall_banner": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 11071, + "id": 17221, "properties": { - "facing": "north" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11072, + "id": 17222, "properties": { - "facing": "south" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11073, + "id": 17223, "properties": { - "facing": "west" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11074, + "id": 17224, "properties": { - "facing": "east" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:red_wool": { - "states": [ - { - "default": true, - "id": 2061 - } - ] - }, - "minecraft:redstone_block": { - "states": [ - { - "default": true, - "id": 9223 - } - ] - }, - "minecraft:redstone_lamp": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 7417, + "id": 17225, "properties": { - "lit": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 7418, + "id": 17226, "properties": { - "lit": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:redstone_ore": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5734, + "id": 17227, "properties": { - "lit": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "default": true, - "id": 5735, + "id": 17228, "properties": { - "lit": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:redstone_torch": { - "properties": { - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 5738, + "id": 17229, "properties": { - "lit": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 5739, + "id": 17230, "properties": { - "lit": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:redstone_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 5740, + "id": 17231, "properties": { - "facing": "north", - "lit": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 5741, + "id": 17232, "properties": { - "facing": "north", - "lit": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 5742, + "id": 17233, "properties": { - "facing": "south", - "lit": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 5743, + "id": 17234, "properties": { - "facing": "south", - "lit": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 5744, + "id": 17235, "properties": { - "facing": "west", - "lit": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 5745, + "id": 17236, "properties": { - "facing": "west", - "lit": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 5746, + "id": 17237, "properties": { - "facing": "east", - "lit": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 5747, + "id": 17238, "properties": { - "facing": "east", - "lit": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:redstone_wire": { - "properties": { - "east": [ - "up", - "side", - "none" - ], - "north": [ - "up", - "side", - "none" - ], - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "south": [ - "up", - "side", - "none" - ], - "west": [ - "up", - "side", - "none" - ] - }, - "states": [ + }, { - "id": 2978, + "id": 17239, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 2979, + "id": 17240, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2980, + "id": 17241, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 2981, + "id": 17242, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 2982, + "id": 17243, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 2983, + "id": 17244, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 2984, + "id": 17245, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 2985, + "id": 17246, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2986, + "id": 17247, "properties": { - "east": "up", - "north": "up", - "power": "0", - "south": "none", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 2987, + "id": 17248, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 2988, + "id": 17249, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 2989, + "id": 17250, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "up", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 2990, + "id": 17251, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 2991, + "id": 17252, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2992, + "id": 17253, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 2993, + "id": 17254, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 2994, + "id": 17255, "properties": { - "east": "up", - "north": "up", - "power": "1", - "south": "none", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 2995, + "id": 17256, "properties": { - "east": "up", - "north": "up", - "power": "1", + "east": "low", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 2996, + "id": 17257, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 2997, + "id": 17258, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2998, + "id": 17259, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "up", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 2999, + "id": 17260, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3000, + "id": 17261, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3001, + "id": 17262, "properties": { - "east": "up", - "north": "up", - "power": "2", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3002, + "id": 17263, "properties": { - "east": "up", - "north": "up", - "power": "2", + "east": "low", + "north": "tall", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3003, + "id": 17264, "properties": { - "east": "up", - "north": "up", - "power": "2", + "east": "low", + "north": "tall", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3004, + "id": 17265, "properties": { - "east": "up", - "north": "up", - "power": "2", + "east": "low", + "north": "tall", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3005, + "id": 17266, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3006, + "id": 17267, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3007, + "id": 17268, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3008, + "id": 17269, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3009, + "id": 17270, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3010, + "id": 17271, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "side", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3011, + "id": 17272, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3012, + "id": 17273, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3013, + "id": 17274, "properties": { - "east": "up", - "north": "up", - "power": "3", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3014, + "id": 17275, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3015, + "id": 17276, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3016, + "id": 17277, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3017, + "id": 17278, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3018, + "id": 17279, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3019, + "id": 17280, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3020, + "id": 17281, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3021, + "id": 17282, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3022, + "id": 17283, "properties": { - "east": "up", - "north": "up", - "power": "4", - "south": "none", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3023, + "id": 17284, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3024, + "id": 17285, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3025, + "id": 17286, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "up", - "west": "none" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 3026, + "id": 17287, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3027, + "id": 17288, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3028, + "id": 17289, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3029, + "id": 17290, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3030, + "id": 17291, "properties": { - "east": "up", - "north": "up", - "power": "5", - "south": "none", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3031, + "id": 17292, "properties": { - "east": "up", - "north": "up", - "power": "5", + "east": "tall", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3032, + "id": 17293, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3033, + "id": 17294, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3034, + "id": 17295, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "up", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3035, + "id": 17296, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3036, + "id": 17297, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3037, + "id": 17298, "properties": { - "east": "up", - "north": "up", - "power": "6", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3038, + "id": 17299, "properties": { - "east": "up", - "north": "up", - "power": "6", + "east": "tall", + "north": "none", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3039, + "id": 17300, "properties": { - "east": "up", - "north": "up", - "power": "6", + "east": "tall", + "north": "none", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3040, + "id": 17301, "properties": { - "east": "up", - "north": "up", - "power": "6", + "east": "tall", + "north": "none", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3041, + "id": 17302, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3042, + "id": 17303, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3043, + "id": 17304, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3044, + "id": 17305, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3045, + "id": 17306, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3046, + "id": 17307, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "side", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3047, + "id": 17308, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3048, + "id": 17309, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3049, + "id": 17310, "properties": { - "east": "up", - "north": "up", - "power": "7", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3050, + "id": 17311, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3051, + "id": 17312, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3052, + "id": 17313, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3053, + "id": 17314, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3054, + "id": 17315, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3055, + "id": 17316, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3056, + "id": 17317, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3057, + "id": 17318, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3058, + "id": 17319, "properties": { - "east": "up", - "north": "up", - "power": "8", - "south": "none", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3059, + "id": 17320, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3060, + "id": 17321, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3061, + "id": 17322, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3062, + "id": 17323, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3063, + "id": 17324, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3064, + "id": 17325, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3065, + "id": 17326, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3066, + "id": 17327, "properties": { - "east": "up", - "north": "up", - "power": "9", - "south": "none", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3067, + "id": 17328, "properties": { - "east": "up", - "north": "up", - "power": "9", + "east": "tall", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3068, + "id": 17329, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3069, + "id": 17330, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3070, + "id": 17331, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "up", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3071, + "id": 17332, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3072, + "id": 17333, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3073, + "id": 17334, "properties": { - "east": "up", - "north": "up", - "power": "10", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3074, + "id": 17335, "properties": { - "east": "up", - "north": "up", - "power": "10", + "east": "tall", + "north": "low", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3075, + "id": 17336, "properties": { - "east": "up", - "north": "up", - "power": "10", + "east": "tall", + "north": "low", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3076, + "id": 17337, "properties": { - "east": "up", - "north": "up", - "power": "10", + "east": "tall", + "north": "low", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3077, + "id": 17338, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3078, + "id": 17339, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3079, + "id": 17340, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3080, + "id": 17341, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3081, + "id": 17342, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3082, + "id": 17343, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "side", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3083, + "id": 17344, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3084, + "id": 17345, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3085, + "id": 17346, "properties": { - "east": "up", - "north": "up", - "power": "11", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3086, + "id": 17347, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3087, + "id": 17348, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3088, + "id": 17349, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3089, + "id": 17350, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3090, + "id": 17351, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3091, + "id": 17352, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3092, + "id": 17353, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3093, + "id": 17354, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3094, + "id": 17355, "properties": { - "east": "up", - "north": "up", - "power": "12", - "south": "none", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3095, + "id": 17356, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3096, + "id": 17357, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3097, + "id": 17358, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3098, + "id": 17359, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3099, + "id": 17360, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3100, + "id": 17361, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3101, + "id": 17362, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3102, + "id": 17363, "properties": { - "east": "up", - "north": "up", - "power": "13", - "south": "none", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3103, + "id": 17364, "properties": { - "east": "up", - "north": "up", - "power": "13", + "east": "tall", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3104, + "id": 17365, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3105, + "id": 17366, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3106, + "id": 17367, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "up", + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3107, + "id": 17368, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3108, + "id": 17369, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3109, + "id": 17370, "properties": { - "east": "up", - "north": "up", - "power": "14", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3110, + "id": 17371, "properties": { - "east": "up", - "north": "up", - "power": "14", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3111, + "id": 17372, "properties": { - "east": "up", - "north": "up", - "power": "14", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3112, + "id": 17373, "properties": { - "east": "up", - "north": "up", - "power": "14", + "east": "tall", + "north": "tall", "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3113, + "id": 17374, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3114, + "id": 17375, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3115, + "id": 17376, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3116, + "id": 17377, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3117, + "id": 17378, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3118, + "id": 17379, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "side", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3119, + "id": 17380, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3120, + "id": 17381, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3121, + "id": 17382, "properties": { - "east": "up", - "north": "up", - "power": "15", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3122, + "id": 17383, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3123, + "id": 17384, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3124, + "id": 17385, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3125, + "id": 17386, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3126, + "id": 17387, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3127, + "id": 17388, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3128, + "id": 17389, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3129, + "id": 17390, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3130, + "id": 17391, "properties": { - "east": "up", - "north": "side", - "power": "0", - "south": "none", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3131, + "id": 17392, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3132, + "id": 17393, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3133, + "id": 17394, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3134, + "id": 17395, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3135, + "id": 17396, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3136, + "id": 17397, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3137, + "id": 17398, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3138, + "id": 17399, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - }, + } + ] + }, + "minecraft:red_nether_bricks": { + "states": [ { - "id": 3139, + "default": true, + "id": 12545 + } + ] + }, + "minecraft:red_sand": { + "states": [ + { + "default": true, + "id": 117 + } + ] + }, + "minecraft:red_sandstone": { + "states": [ + { + "default": true, + "id": 11079 + } + ] + }, + "minecraft:red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11288, "properties": { - "east": "up", - "north": "side", - "power": "1", - "south": "none", - "west": "none" + "type": "top", + "waterlogged": "true" } }, { - "id": 3140, + "id": 11289, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "up" + "type": "top", + "waterlogged": "false" } }, { - "id": 3141, + "id": 11290, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "side" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 3142, + "default": true, + "id": 11291, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "up", - "west": "none" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 3143, + "id": 11292, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "up" + "type": "double", + "waterlogged": "true" } }, { - "id": 3144, + "id": 11293, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "side" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 3145, + "id": 11082, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "side", - "west": "none" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3146, + "id": 11083, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "up" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3147, + "id": 11084, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "side" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3148, + "id": 11085, "properties": { - "east": "up", - "north": "side", - "power": "2", - "south": "none", - "west": "none" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3149, + "id": 11086, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "up" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3150, + "id": 11087, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "side" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3151, + "id": 11088, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "up", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3152, + "id": 11089, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "up" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3153, + "id": 11090, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "side" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3154, + "id": 11091, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "side", - "west": "none" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3155, + "id": 11092, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "up" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3156, + "default": true, + "id": 11093, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "side" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3157, + "id": 11094, "properties": { - "east": "up", - "north": "side", - "power": "3", - "south": "none", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3158, + "id": 11095, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "up" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3159, + "id": 11096, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "side" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3160, + "id": 11097, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "up", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3161, + "id": 11098, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "up" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3162, + "id": 11099, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "side" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3163, + "id": 11100, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "side", - "west": "none" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3164, + "id": 11101, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "up" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3165, + "id": 11102, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "side" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3166, + "id": 11103, "properties": { - "east": "up", - "north": "side", - "power": "4", - "south": "none", - "west": "none" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3167, + "id": 11104, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "up" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3168, + "id": 11105, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "side" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3169, + "id": 11106, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "up", - "west": "none" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3170, + "id": 11107, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "up" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3171, + "id": 11108, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "side" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3172, + "id": 11109, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "side", - "west": "none" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3173, + "id": 11110, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "up" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3174, + "id": 11111, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "side" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3175, + "id": 11112, "properties": { - "east": "up", - "north": "side", - "power": "5", - "south": "none", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3176, + "id": 11113, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "up" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3177, + "id": 11114, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "side" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3178, + "id": 11115, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "up", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3179, + "id": 11116, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "up" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3180, + "id": 11117, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "side" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3181, + "id": 11118, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "side", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3182, + "id": 11119, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "up" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3183, + "id": 11120, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "side" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3184, + "id": 11121, "properties": { - "east": "up", - "north": "side", - "power": "6", - "south": "none", - "west": "none" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3185, + "id": 11122, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "up" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3186, + "id": 11123, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "side" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3187, + "id": 11124, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "up", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3188, + "id": 11125, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "up" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3189, + "id": 11126, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "side" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3190, + "id": 11127, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "side", - "west": "none" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3191, + "id": 11128, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "up" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3192, + "id": 11129, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "side" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3193, + "id": 11130, "properties": { - "east": "up", - "north": "side", - "power": "7", - "south": "none", - "west": "none" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3194, + "id": 11131, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "up" - } - }, - { - "id": 3195, - "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "side" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3196, + "id": 11132, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "up", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3197, + "id": 11133, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "up" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3198, + "id": 11134, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "side" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3199, + "id": 11135, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "side", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3200, + "id": 11136, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "up" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3201, + "id": 11137, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "side" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3202, + "id": 11138, "properties": { - "east": "up", - "north": "side", - "power": "8", - "south": "none", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3203, + "id": 11139, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "up" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3204, + "id": 11140, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "side" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3205, + "id": 11141, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "up", - "west": "none" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3206, + "id": 11142, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "up" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3207, + "id": 11143, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "side" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3208, + "id": 11144, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "side", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3209, + "id": 11145, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "up" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3210, + "id": 11146, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "side" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3211, + "id": 11147, "properties": { - "east": "up", - "north": "side", - "power": "9", - "south": "none", - "west": "none" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3212, + "id": 11148, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "up" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3213, + "id": 11149, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "side" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3214, + "id": 11150, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "up", - "west": "none" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3215, + "id": 11151, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "up" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 3216, + "id": 11152, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "side" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 3217, + "id": 11153, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "side", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 3218, + "id": 11154, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "up" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 3219, + "id": 11155, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "side" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 3220, + "id": 11156, "properties": { - "east": "up", - "north": "side", - "power": "10", - "south": "none", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 3221, + "id": 11157, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "up" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 3222, + "id": 11158, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "side" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 3223, + "id": 11159, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "up", - "west": "none" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 3224, + "id": 11160, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "up" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 3225, + "id": 11161, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", - "west": "side" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:red_sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ { - "id": 3226, + "id": 14808, "properties": { - "east": "up", - "north": "side", - "power": "11", - "south": "side", + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3227, + "id": 14809, "properties": { - "east": "up", - "north": "side", - "power": "11", + "east": "none", + "north": "none", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3228, + "id": 14810, "properties": { - "east": "up", - "north": "side", - "power": "11", + "east": "none", + "north": "none", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3229, + "default": true, + "id": 14811, "properties": { - "east": "up", - "north": "side", - "power": "11", + "east": "none", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3230, + "id": 14812, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "up" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3231, + "id": 14813, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", - "west": "side" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3232, + "id": 14814, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "up", + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3233, + "id": 14815, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "up" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3234, + "id": 14816, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", - "west": "side" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3235, + "id": 14817, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "side", + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3236, + "id": 14818, "properties": { - "east": "up", - "north": "side", - "power": "12", + "east": "none", + "north": "none", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3237, + "id": 14819, "properties": { - "east": "up", - "north": "side", - "power": "12", + "east": "none", + "north": "none", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3238, + "id": 14820, "properties": { - "east": "up", - "north": "side", - "power": "12", - "south": "none", + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3239, + "id": 14821, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "up" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3240, + "id": 14822, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", - "west": "side" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3241, + "id": 14823, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "up", + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3242, + "id": 14824, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "up" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3243, + "id": 14825, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", - "west": "side" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3244, + "id": 14826, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "side", + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3245, + "id": 14827, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "up" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3246, + "id": 14828, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", - "west": "side" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3247, + "id": 14829, "properties": { - "east": "up", - "north": "side", - "power": "13", - "south": "none", + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3248, + "id": 14830, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "up" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3249, + "id": 14831, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", - "west": "side" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3250, + "id": 14832, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "up", + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3251, + "id": 14833, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "up" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3252, + "id": 14834, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", - "west": "side" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3253, + "id": 14835, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "side", + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3254, + "id": 14836, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "up" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3255, + "id": 14837, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", - "west": "side" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3256, + "id": 14838, "properties": { - "east": "up", - "north": "side", - "power": "14", - "south": "none", + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3257, + "id": 14839, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "up" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3258, + "id": 14840, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", - "west": "side" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3259, + "id": 14841, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "up", + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3260, + "id": 14842, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "up" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3261, + "id": 14843, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", - "west": "side" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3262, + "id": 14844, "properties": { - "east": "up", - "north": "side", - "power": "15", - "south": "side", + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3263, + "id": 14845, "properties": { - "east": "up", - "north": "side", - "power": "15", + "east": "none", + "north": "low", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3264, + "id": 14846, "properties": { - "east": "up", - "north": "side", - "power": "15", + "east": "none", + "north": "low", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3265, + "id": 14847, "properties": { - "east": "up", - "north": "side", - "power": "15", + "east": "none", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3266, + "id": 14848, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "up" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3267, + "id": 14849, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", - "west": "side" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3268, + "id": 14850, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "up", + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3269, + "id": 14851, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "up" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3270, + "id": 14852, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", - "west": "side" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3271, + "id": 14853, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "side", + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3272, + "id": 14854, "properties": { - "east": "up", - "north": "none", - "power": "0", + "east": "none", + "north": "low", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3273, + "id": 14855, "properties": { - "east": "up", - "north": "none", - "power": "0", + "east": "none", + "north": "low", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3274, + "id": 14856, "properties": { - "east": "up", - "north": "none", - "power": "0", - "south": "none", + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3275, + "id": 14857, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "up" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3276, + "id": 14858, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", - "west": "side" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3277, + "id": 14859, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "up", + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3278, + "id": 14860, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "up" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3279, + "id": 14861, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", - "west": "side" - } - }, + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 3280, + "id": 14862, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "side", + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3281, + "id": 14863, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "up" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3282, + "id": 14864, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", - "west": "side" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3283, + "id": 14865, "properties": { - "east": "up", - "north": "none", - "power": "1", - "south": "none", + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3284, + "id": 14866, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "up" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3285, + "id": 14867, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", - "west": "side" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3286, + "id": 14868, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "up", + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3287, + "id": 14869, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "up" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3288, + "id": 14870, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", - "west": "side" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3289, + "id": 14871, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "side", + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3290, + "id": 14872, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "up" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3291, + "id": 14873, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", - "west": "side" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3292, + "id": 14874, "properties": { - "east": "up", - "north": "none", - "power": "2", - "south": "none", + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3293, + "id": 14875, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "up" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3294, + "id": 14876, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", - "west": "side" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3295, + "id": 14877, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "up", + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3296, + "id": 14878, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "up" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3297, + "id": 14879, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", - "west": "side" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3298, + "id": 14880, "properties": { - "east": "up", - "north": "none", - "power": "3", - "south": "side", + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3299, + "id": 14881, "properties": { - "east": "up", - "north": "none", - "power": "3", + "east": "none", + "north": "tall", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3300, + "id": 14882, "properties": { - "east": "up", - "north": "none", - "power": "3", + "east": "none", + "north": "tall", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3301, + "id": 14883, "properties": { - "east": "up", - "north": "none", - "power": "3", + "east": "none", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3302, + "id": 14884, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "up" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3303, + "id": 14885, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", - "west": "side" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3304, + "id": 14886, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "up", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3305, + "id": 14887, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "up" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3306, + "id": 14888, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", - "west": "side" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3307, + "id": 14889, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "side", + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3308, + "id": 14890, "properties": { - "east": "up", - "north": "none", - "power": "4", + "east": "none", + "north": "tall", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3309, + "id": 14891, "properties": { - "east": "up", - "north": "none", - "power": "4", + "east": "none", + "north": "tall", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3310, + "id": 14892, "properties": { - "east": "up", - "north": "none", - "power": "4", - "south": "none", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3311, + "id": 14893, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "up" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3312, + "id": 14894, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", - "west": "side" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3313, + "id": 14895, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "up", + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3314, + "id": 14896, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "up" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3315, + "id": 14897, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", - "west": "side" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3316, + "id": 14898, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "side", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3317, + "id": 14899, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "up" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3318, + "id": 14900, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", - "west": "side" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3319, + "id": 14901, "properties": { - "east": "up", - "north": "none", - "power": "5", - "south": "none", + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3320, + "id": 14902, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "up" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3321, + "id": 14903, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", - "west": "side" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3322, + "id": 14904, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "up", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3323, + "id": 14905, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "up" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3324, + "id": 14906, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", - "west": "side" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3325, + "id": 14907, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "side", + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3326, + "id": 14908, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "up" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3327, + "id": 14909, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", - "west": "side" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3328, + "id": 14910, "properties": { - "east": "up", - "north": "none", - "power": "6", - "south": "none", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3329, + "id": 14911, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "up" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3330, + "id": 14912, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", - "west": "side" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3331, + "id": 14913, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "up", + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3332, + "id": 14914, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "up" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3333, + "id": 14915, "properties": { - "east": "up", - "north": "none", - "power": "7", - "south": "side", - "west": "side" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3334, + "id": 14916, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "7", - "south": "side", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3335, + "id": 14917, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "7", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3336, + "id": 14918, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "7", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3337, + "id": 14919, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "7", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3338, + "id": 14920, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "up", - "west": "up" + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3339, + "id": 14921, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "up", - "west": "side" + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3340, + "id": 14922, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "up", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3341, + "id": 14923, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "side", - "west": "up" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3342, + "id": 14924, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "side", - "west": "side" + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3343, + "id": 14925, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "side", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3344, + "id": 14926, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3345, + "id": 14927, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3346, + "id": 14928, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "8", - "south": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3347, + "id": 14929, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "up", - "west": "up" + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3348, + "id": 14930, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "up", - "west": "side" + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3349, + "id": 14931, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "up", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3350, + "id": 14932, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "side", - "west": "up" + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3351, + "id": 14933, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "side", - "west": "side" + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3352, + "id": 14934, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "side", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3353, + "id": 14935, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "none", - "west": "up" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3354, + "id": 14936, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "none", - "west": "side" + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3355, + "id": 14937, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "9", - "south": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3356, + "id": 14938, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "up", - "west": "up" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3357, + "id": 14939, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "up", - "west": "side" + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3358, + "id": 14940, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "up", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3359, + "id": 14941, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "side", - "west": "up" + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3360, + "id": 14942, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "side", - "west": "side" + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3361, + "id": 14943, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "side", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3362, + "id": 14944, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "none", - "west": "up" + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3363, + "id": 14945, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "none", - "west": "side" + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3364, + "id": 14946, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "10", - "south": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3365, + "id": 14947, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "11", - "south": "up", - "west": "up" + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3366, + "id": 14948, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "11", - "south": "up", - "west": "side" + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3367, + "id": 14949, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "11", - "south": "up", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3368, + "id": 14950, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "11", - "south": "side", - "west": "up" + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3369, + "id": 14951, "properties": { - "east": "up", + "east": "low", "north": "none", - "power": "11", - "south": "side", - "west": "side" - } - }, + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, { - "id": 3370, + "id": 14952, "properties": { - "east": "up", - "north": "none", - "power": "11", - "south": "side", + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3371, + "id": 14953, "properties": { - "east": "up", - "north": "none", - "power": "11", + "east": "low", + "north": "low", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3372, + "id": 14954, "properties": { - "east": "up", - "north": "none", - "power": "11", + "east": "low", + "north": "low", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3373, + "id": 14955, "properties": { - "east": "up", - "north": "none", - "power": "11", + "east": "low", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3374, + "id": 14956, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3375, + "id": 14957, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3376, + "id": 14958, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "up", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3377, + "id": 14959, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3378, + "id": 14960, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3379, + "id": 14961, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "side", + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3380, + "id": 14962, "properties": { - "east": "up", - "north": "none", - "power": "12", + "east": "low", + "north": "low", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3381, + "id": 14963, "properties": { - "east": "up", - "north": "none", - "power": "12", + "east": "low", + "north": "low", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3382, + "id": 14964, "properties": { - "east": "up", - "north": "none", - "power": "12", - "south": "none", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3383, + "id": 14965, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3384, + "id": 14966, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3385, + "id": 14967, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "up", + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3386, + "id": 14968, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3387, + "id": 14969, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3388, + "id": 14970, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "side", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3389, + "id": 14971, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3390, + "id": 14972, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3391, + "id": 14973, "properties": { - "east": "up", - "north": "none", - "power": "13", - "south": "none", + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3392, + "id": 14974, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3393, + "id": 14975, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3394, + "id": 14976, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "up", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3395, + "id": 14977, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3396, + "id": 14978, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3397, + "id": 14979, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "side", + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3398, + "id": 14980, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3399, + "id": 14981, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3400, + "id": 14982, "properties": { - "east": "up", - "north": "none", - "power": "14", - "south": "none", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3401, + "id": 14983, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3402, + "id": 14984, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3403, + "id": 14985, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "up", + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3404, + "id": 14986, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "up" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3405, + "id": 14987, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", - "west": "side" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3406, + "id": 14988, "properties": { - "east": "up", - "north": "none", - "power": "15", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3407, + "id": 14989, "properties": { - "east": "up", - "north": "none", - "power": "15", + "east": "low", + "north": "tall", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3408, + "id": 14990, "properties": { - "east": "up", - "north": "none", - "power": "15", + "east": "low", + "north": "tall", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3409, + "id": 14991, "properties": { - "east": "up", - "north": "none", - "power": "15", + "east": "low", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3410, + "id": 14992, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3411, + "id": 14993, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3412, + "id": 14994, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "up", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3413, + "id": 14995, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3414, + "id": 14996, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3415, + "id": 14997, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "side", + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3416, + "id": 14998, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "low", + "north": "tall", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3417, + "id": 14999, "properties": { - "east": "side", - "north": "up", - "power": "0", + "east": "low", + "north": "tall", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3418, + "id": 15000, "properties": { - "east": "side", - "north": "up", - "power": "0", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3419, + "id": 15001, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3420, + "id": 15002, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3421, + "id": 15003, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "up", + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3422, + "id": 15004, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3423, + "id": 15005, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3424, + "id": 15006, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "side", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3425, + "id": 15007, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3426, + "id": 15008, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3427, + "id": 15009, "properties": { - "east": "side", - "north": "up", - "power": "1", - "south": "none", + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3428, + "id": 15010, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3429, + "id": 15011, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3430, + "id": 15012, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "up", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3431, + "id": 15013, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3432, + "id": 15014, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3433, + "id": 15015, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "side", + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3434, + "id": 15016, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3435, + "id": 15017, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3436, + "id": 15018, "properties": { - "east": "side", - "north": "up", - "power": "2", - "south": "none", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3437, + "id": 15019, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3438, + "id": 15020, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3439, + "id": 15021, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "up", + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3440, + "id": 15022, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "up" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3441, + "id": 15023, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", - "west": "side" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3442, + "id": 15024, "properties": { - "east": "side", - "north": "up", - "power": "3", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3443, + "id": 15025, "properties": { - "east": "side", - "north": "up", - "power": "3", + "east": "tall", + "north": "none", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3444, + "id": 15026, "properties": { - "east": "side", - "north": "up", - "power": "3", + "east": "tall", + "north": "none", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3445, + "id": 15027, "properties": { - "east": "side", - "north": "up", - "power": "3", + "east": "tall", + "north": "none", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3446, + "id": 15028, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3447, + "id": 15029, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3448, + "id": 15030, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "up", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3449, + "id": 15031, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3450, + "id": 15032, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3451, + "id": 15033, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "side", + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3452, + "id": 15034, "properties": { - "east": "side", - "north": "up", - "power": "4", + "east": "tall", + "north": "none", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3453, + "id": 15035, "properties": { - "east": "side", - "north": "up", - "power": "4", + "east": "tall", + "north": "none", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3454, + "id": 15036, "properties": { - "east": "side", - "north": "up", - "power": "4", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3455, + "id": 15037, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3456, + "id": 15038, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3457, + "id": 15039, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "up", + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3458, + "id": 15040, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3459, + "id": 15041, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3460, + "id": 15042, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "side", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3461, + "id": 15043, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3462, + "id": 15044, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3463, + "id": 15045, "properties": { - "east": "side", - "north": "up", - "power": "5", - "south": "none", + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3464, + "id": 15046, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3465, + "id": 15047, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3466, + "id": 15048, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3467, + "id": 15049, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3468, + "id": 15050, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3469, + "id": 15051, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "side", + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3470, + "id": 15052, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3471, + "id": 15053, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3472, + "id": 15054, "properties": { - "east": "side", - "north": "up", - "power": "6", - "south": "none", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3473, + "id": 15055, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3474, + "id": 15056, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3475, + "id": 15057, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "up", + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3476, + "id": 15058, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "up" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3477, + "id": 15059, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", - "west": "side" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3478, + "id": 15060, "properties": { - "east": "side", - "north": "up", - "power": "7", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3479, + "id": 15061, "properties": { - "east": "side", - "north": "up", - "power": "7", + "east": "tall", + "north": "low", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3480, + "id": 15062, "properties": { - "east": "side", - "north": "up", - "power": "7", + "east": "tall", + "north": "low", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3481, + "id": 15063, "properties": { - "east": "side", - "north": "up", - "power": "7", + "east": "tall", + "north": "low", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3482, + "id": 15064, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3483, + "id": 15065, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3484, + "id": 15066, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "up", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3485, + "id": 15067, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3486, + "id": 15068, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3487, + "id": 15069, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "side", + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3488, + "id": 15070, "properties": { - "east": "side", - "north": "up", - "power": "8", + "east": "tall", + "north": "low", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3489, + "id": 15071, "properties": { - "east": "side", - "north": "up", - "power": "8", + "east": "tall", + "north": "low", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3490, + "id": 15072, "properties": { - "east": "side", - "north": "up", - "power": "8", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3491, + "id": 15073, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3492, + "id": 15074, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3493, + "id": 15075, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "up", + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3494, + "id": 15076, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3495, + "id": 15077, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3496, + "id": 15078, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "side", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3497, + "id": 15079, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3498, + "id": 15080, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3499, + "id": 15081, "properties": { - "east": "side", - "north": "up", - "power": "9", - "south": "none", + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3500, + "id": 15082, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3501, + "id": 15083, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3502, + "id": 15084, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3503, + "id": 15085, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3504, + "id": 15086, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3505, + "id": 15087, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "side", + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3506, + "id": 15088, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3507, + "id": 15089, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3508, + "id": 15090, "properties": { - "east": "side", - "north": "up", - "power": "10", - "south": "none", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3509, + "id": 15091, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3510, + "id": 15092, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3511, + "id": 15093, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "up", + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3512, + "id": 15094, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "up" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3513, + "id": 15095, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", - "west": "side" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3514, + "id": 15096, "properties": { - "east": "side", - "north": "up", - "power": "11", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3515, + "id": 15097, "properties": { - "east": "side", - "north": "up", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3516, + "id": 15098, "properties": { - "east": "side", - "north": "up", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3517, + "id": 15099, "properties": { - "east": "side", - "north": "up", - "power": "11", + "east": "tall", + "north": "tall", "south": "none", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3518, + "id": 15100, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3519, + "id": 15101, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3520, + "id": 15102, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "up", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3521, + "id": 15103, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3522, + "id": 15104, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3523, + "id": 15105, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "side", + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3524, + "id": 15106, "properties": { - "east": "side", - "north": "up", - "power": "12", + "east": "tall", + "north": "tall", "south": "none", - "west": "up" + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3525, + "id": 15107, "properties": { - "east": "side", - "north": "up", - "power": "12", + "east": "tall", + "north": "tall", "south": "none", - "west": "side" + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3526, + "id": 15108, "properties": { - "east": "side", - "north": "up", - "power": "12", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3527, + "id": 15109, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 3528, + "id": 15110, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3529, + "id": 15111, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "up", + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3530, + "id": 15112, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3531, + "id": 15113, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3532, + "id": 15114, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "side", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3533, + "id": 15115, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3534, + "id": 15116, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3535, + "id": 15117, "properties": { - "east": "side", - "north": "up", - "power": "13", - "south": "none", + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3536, + "id": 15118, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3537, + "id": 15119, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3538, + "id": 15120, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", "west": "none" } }, { - "id": 3539, + "id": 15121, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "up" - } - }, + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, { - "id": 3540, + "id": 15122, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3541, + "id": 15123, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "side", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", "west": "none" } }, { - "id": 3542, + "id": 15124, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 3543, + "id": 15125, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 3544, + "id": 15126, "properties": { - "east": "side", - "north": "up", - "power": "14", - "south": "none", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", "west": "none" } }, { - "id": 3545, + "id": 15127, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 3546, + "id": 15128, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 3547, + "id": 15129, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "up", + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", "west": "none" } }, { - "id": 3548, + "id": 15130, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "up" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 3549, + "id": 15131, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "side" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - }, + } + ] + }, + "minecraft:red_shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 3550, + "id": 12652, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "side", - "west": "none" + "facing": "north" } }, { - "id": 3551, + "id": 12653, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "up" + "facing": "east" } }, { - "id": 3552, + "id": 12654, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "side" + "facing": "south" } }, { - "id": 3553, + "id": 12655, "properties": { - "east": "side", - "north": "up", - "power": "15", - "south": "none", - "west": "none" + "facing": "west" } }, { - "id": 3554, + "default": true, + "id": 12656, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "up" + "facing": "up" } }, { - "id": 3555, + "id": 12657, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "side" + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "states": [ + { + "default": true, + "id": 5959 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9820, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 3556, + "id": 9821, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "up", - "west": "none" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 3557, + "id": 9822, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "up" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 3558, + "id": 9823, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "side" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 3559, + "id": 9824, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "side", - "west": "none" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 3560, + "id": 9825, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "up" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 3561, + "id": 9826, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "side" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 3562, + "id": 9827, "properties": { - "east": "side", - "north": "side", - "power": "0", - "south": "none", - "west": "none" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 3563, + "id": 9828, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "up" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 3564, + "id": 9829, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "side" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 3565, + "id": 9830, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "up", - "west": "none" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 3566, + "id": 9831, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "up" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 3567, + "id": 9832, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "side" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 3568, + "id": 9833, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "side", - "west": "none" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 3569, + "id": 9834, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "up" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 3570, + "id": 9835, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "side" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 3571, + "id": 9836, "properties": { - "east": "side", - "north": "side", - "power": "1", - "south": "none", - "west": "none" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 3572, + "id": 9837, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "up" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 3573, + "id": 9838, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "side" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 3574, + "id": 9839, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "up", - "west": "none" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 3575, + "id": 9840, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "up" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 3576, + "id": 9841, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "side" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 3577, + "id": 9842, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "side", - "west": "none" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 3578, + "id": 9843, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "up" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 3579, + "id": 9844, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "side" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 3580, + "id": 9845, "properties": { - "east": "side", - "north": "side", - "power": "2", - "south": "none", - "west": "none" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 3581, + "id": 9846, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "up" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 3582, + "id": 9847, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "side" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 3583, + "id": 9848, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "up", - "west": "none" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 3584, + "id": 9849, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "up" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 3585, + "id": 9850, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "side" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 3586, + "default": true, + "id": 9851, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "side", - "west": "none" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "states": [ + { + "default": true, + "id": 9370 + } + ] + }, + "minecraft:red_tulip": { + "states": [ + { + "default": true, + "id": 2081 + } + ] + }, + "minecraft:red_wall_banner": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11071, + "properties": { + "facing": "north" } }, { - "id": 3587, + "id": 11072, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "up" + "facing": "south" } }, { - "id": 3588, + "id": 11073, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "side" + "facing": "west" } }, { - "id": 3589, + "id": 11074, "properties": { - "east": "side", - "north": "side", - "power": "3", - "south": "none", - "west": "none" + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "states": [ + { + "default": true, + "id": 2061 + } + ] + }, + "minecraft:redstone_block": { + "states": [ + { + "default": true, + "id": 9223 + } + ] + }, + "minecraft:redstone_lamp": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7417, + "properties": { + "lit": "true" } }, { - "id": 3590, + "default": true, + "id": 7418, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "up" + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5734, + "properties": { + "lit": "true" } }, { - "id": 3591, + "default": true, + "id": 5735, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "side" + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5738, + "properties": { + "lit": "true" } }, { - "id": 3592, + "id": 5739, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "up", - "west": "none" + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5740, + "properties": { + "facing": "north", + "lit": "true" } }, { - "id": 3593, + "id": 5741, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "up" + "facing": "north", + "lit": "false" } }, { - "id": 3594, + "id": 5742, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "side" + "facing": "south", + "lit": "true" } }, { - "id": 3595, + "id": 5743, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "side", - "west": "none" + "facing": "south", + "lit": "false" } }, { - "id": 3596, + "id": 5744, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "up" + "facing": "west", + "lit": "true" } }, { - "id": 3597, + "id": 5745, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "side" + "facing": "west", + "lit": "false" } }, { - "id": 3598, + "id": 5746, "properties": { - "east": "side", - "north": "side", - "power": "4", - "south": "none", - "west": "none" + "facing": "east", + "lit": "true" } }, { - "id": 3599, + "id": 5747, "properties": { - "east": "side", - "north": "side", - "power": "5", + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 2978, + "properties": { + "east": "up", + "north": "up", + "power": "0", "south": "up", "west": "up" } }, { - "id": 3600, + "id": 2979, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "up", "west": "side" } }, { - "id": 3601, + "id": 2980, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "up", "west": "none" } }, { - "id": 3602, + "id": 2981, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "side", "west": "up" } }, { - "id": 3603, + "id": 2982, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "side", "west": "side" } }, { - "id": 3604, + "id": 2983, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "side", "west": "none" } }, { - "id": 3605, + "id": 2984, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "none", "west": "up" } }, { - "id": 3606, + "id": 2985, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "none", "west": "side" } }, { - "id": 3607, + "id": 2986, "properties": { - "east": "side", - "north": "side", - "power": "5", + "east": "up", + "north": "up", + "power": "0", "south": "none", "west": "none" } }, { - "id": 3608, + "id": 2987, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "up", "west": "up" } }, { - "id": 3609, + "id": 2988, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "up", "west": "side" } }, { - "id": 3610, + "id": 2989, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "up", "west": "none" } }, { - "id": 3611, + "id": 2990, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "side", "west": "up" } }, { - "id": 3612, + "id": 2991, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "side", "west": "side" } }, { - "id": 3613, + "id": 2992, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "side", "west": "none" } }, { - "id": 3614, + "id": 2993, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "none", "west": "up" } }, { - "id": 3615, + "id": 2994, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "none", "west": "side" } }, { - "id": 3616, + "id": 2995, "properties": { - "east": "side", - "north": "side", - "power": "6", + "east": "up", + "north": "up", + "power": "1", "south": "none", "west": "none" } }, { - "id": 3617, + "id": 2996, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "up", "west": "up" } }, { - "id": 3618, + "id": 2997, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "up", "west": "side" } }, { - "id": 3619, + "id": 2998, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "up", "west": "none" } }, { - "id": 3620, + "id": 2999, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "side", "west": "up" } }, { - "id": 3621, + "id": 3000, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "side", "west": "side" } }, { - "id": 3622, + "id": 3001, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "side", "west": "none" } }, { - "id": 3623, + "id": 3002, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "none", "west": "up" } }, { - "id": 3624, + "id": 3003, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "none", "west": "side" } }, { - "id": 3625, + "id": 3004, "properties": { - "east": "side", - "north": "side", - "power": "7", + "east": "up", + "north": "up", + "power": "2", "south": "none", "west": "none" } }, { - "id": 3626, + "id": 3005, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "up", "west": "up" } }, { - "id": 3627, + "id": 3006, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "up", "west": "side" } }, { - "id": 3628, + "id": 3007, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "up", "west": "none" } }, { - "id": 3629, + "id": 3008, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "side", "west": "up" } }, { - "id": 3630, + "id": 3009, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "side", "west": "side" } }, { - "id": 3631, + "id": 3010, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "side", "west": "none" } }, { - "id": 3632, + "id": 3011, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "none", "west": "up" } }, { - "id": 3633, + "id": 3012, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "none", "west": "side" } }, { - "id": 3634, + "id": 3013, "properties": { - "east": "side", - "north": "side", - "power": "8", + "east": "up", + "north": "up", + "power": "3", "south": "none", "west": "none" } }, { - "id": 3635, + "id": 3014, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "up", "west": "up" } }, { - "id": 3636, + "id": 3015, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "up", "west": "side" } }, { - "id": 3637, + "id": 3016, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "up", "west": "none" } }, { - "id": 3638, + "id": 3017, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "side", "west": "up" } }, { - "id": 3639, + "id": 3018, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "side", "west": "side" } }, { - "id": 3640, + "id": 3019, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "side", "west": "none" } }, { - "id": 3641, + "id": 3020, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "none", "west": "up" } }, { - "id": 3642, + "id": 3021, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "none", "west": "side" } }, { - "id": 3643, + "id": 3022, "properties": { - "east": "side", - "north": "side", - "power": "9", + "east": "up", + "north": "up", + "power": "4", "south": "none", "west": "none" } }, { - "id": 3644, + "id": 3023, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "up", "west": "up" } }, { - "id": 3645, + "id": 3024, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "up", "west": "side" } }, { - "id": 3646, + "id": 3025, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "up", "west": "none" } }, { - "id": 3647, + "id": 3026, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "side", "west": "up" } }, { - "id": 3648, + "id": 3027, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "side", "west": "side" } }, { - "id": 3649, + "id": 3028, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "side", "west": "none" } }, { - "id": 3650, + "id": 3029, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "none", "west": "up" } }, { - "id": 3651, + "id": 3030, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "none", "west": "side" } }, { - "id": 3652, + "id": 3031, "properties": { - "east": "side", - "north": "side", - "power": "10", + "east": "up", + "north": "up", + "power": "5", "south": "none", "west": "none" } }, { - "id": 3653, + "id": 3032, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "up", "west": "up" } }, { - "id": 3654, + "id": 3033, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "up", "west": "side" } }, { - "id": 3655, + "id": 3034, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "up", "west": "none" } }, { - "id": 3656, + "id": 3035, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "side", "west": "up" } }, { - "id": 3657, + "id": 3036, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "side", "west": "side" } }, { - "id": 3658, + "id": 3037, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "side", "west": "none" } }, { - "id": 3659, + "id": 3038, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "none", "west": "up" } }, { - "id": 3660, + "id": 3039, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "none", "west": "side" } }, { - "id": 3661, + "id": 3040, "properties": { - "east": "side", - "north": "side", - "power": "11", + "east": "up", + "north": "up", + "power": "6", "south": "none", "west": "none" } }, { - "id": 3662, + "id": 3041, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "up", "west": "up" } }, { - "id": 3663, + "id": 3042, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "up", "west": "side" } }, { - "id": 3664, + "id": 3043, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "up", "west": "none" } }, { - "id": 3665, + "id": 3044, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "side", "west": "up" } }, { - "id": 3666, + "id": 3045, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "side", "west": "side" } }, { - "id": 3667, + "id": 3046, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "side", "west": "none" } }, { - "id": 3668, + "id": 3047, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "none", "west": "up" } }, { - "id": 3669, + "id": 3048, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "none", "west": "side" } }, { - "id": 3670, + "id": 3049, "properties": { - "east": "side", - "north": "side", - "power": "12", + "east": "up", + "north": "up", + "power": "7", "south": "none", "west": "none" } }, { - "id": 3671, + "id": 3050, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "up", "west": "up" } }, { - "id": 3672, + "id": 3051, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "up", "west": "side" } }, { - "id": 3673, + "id": 3052, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "up", "west": "none" } }, { - "id": 3674, + "id": 3053, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "side", "west": "up" } }, { - "id": 3675, + "id": 3054, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "side", "west": "side" } }, { - "id": 3676, + "id": 3055, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "side", "west": "none" } }, { - "id": 3677, + "id": 3056, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "none", "west": "up" } }, { - "id": 3678, + "id": 3057, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "none", "west": "side" } }, { - "id": 3679, + "id": 3058, "properties": { - "east": "side", - "north": "side", - "power": "13", + "east": "up", + "north": "up", + "power": "8", "south": "none", "west": "none" } }, { - "id": 3680, + "id": 3059, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "up", "west": "up" } }, { - "id": 3681, + "id": 3060, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "up", "west": "side" } }, { - "id": 3682, + "id": 3061, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "up", "west": "none" } }, { - "id": 3683, + "id": 3062, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "side", "west": "up" } }, { - "id": 3684, + "id": 3063, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "side", "west": "side" } }, { - "id": 3685, + "id": 3064, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "side", "west": "none" } }, { - "id": 3686, + "id": 3065, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "none", "west": "up" } }, { - "id": 3687, + "id": 3066, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "none", "west": "side" } }, { - "id": 3688, + "id": 3067, "properties": { - "east": "side", - "north": "side", - "power": "14", + "east": "up", + "north": "up", + "power": "9", "south": "none", "west": "none" } }, { - "id": 3689, + "id": 3068, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "up", "west": "up" } }, { - "id": 3690, + "id": 3069, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "up", "west": "side" } }, { - "id": 3691, + "id": 3070, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "up", "west": "none" } }, { - "id": 3692, + "id": 3071, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "side", "west": "up" } }, { - "id": 3693, + "id": 3072, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "side", "west": "side" } }, { - "id": 3694, + "id": 3073, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "side", "west": "none" } }, { - "id": 3695, + "id": 3074, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "none", "west": "up" } }, { - "id": 3696, + "id": 3075, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "none", "west": "side" } }, { - "id": 3697, + "id": 3076, "properties": { - "east": "side", - "north": "side", - "power": "15", + "east": "up", + "north": "up", + "power": "10", "south": "none", "west": "none" } }, { - "id": 3698, + "id": 3077, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "up", "west": "up" } }, { - "id": 3699, + "id": 3078, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "up", "west": "side" } }, { - "id": 3700, + "id": 3079, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "up", "west": "none" } }, { - "id": 3701, + "id": 3080, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "side", "west": "up" } }, { - "id": 3702, + "id": 3081, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "side", "west": "side" } }, { - "id": 3703, + "id": 3082, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "side", "west": "none" } }, { - "id": 3704, + "id": 3083, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "none", "west": "up" } }, { - "id": 3705, + "id": 3084, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "none", "west": "side" } }, { - "id": 3706, + "id": 3085, "properties": { - "east": "side", - "north": "none", - "power": "0", + "east": "up", + "north": "up", + "power": "11", "south": "none", "west": "none" } }, { - "id": 3707, + "id": 3086, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "up", "west": "up" } }, { - "id": 3708, + "id": 3087, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "up", "west": "side" } }, { - "id": 3709, + "id": 3088, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "up", "west": "none" } }, { - "id": 3710, + "id": 3089, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "side", "west": "up" } }, { - "id": 3711, + "id": 3090, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "side", "west": "side" } }, { - "id": 3712, + "id": 3091, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "side", "west": "none" } }, { - "id": 3713, + "id": 3092, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "none", "west": "up" } }, { - "id": 3714, + "id": 3093, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "none", "west": "side" } }, { - "id": 3715, + "id": 3094, "properties": { - "east": "side", - "north": "none", - "power": "1", + "east": "up", + "north": "up", + "power": "12", "south": "none", "west": "none" } }, { - "id": 3716, + "id": 3095, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "up", "west": "up" } }, { - "id": 3717, + "id": 3096, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "up", "west": "side" } }, { - "id": 3718, + "id": 3097, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "up", "west": "none" } }, { - "id": 3719, + "id": 3098, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "side", "west": "up" } }, { - "id": 3720, + "id": 3099, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "side", "west": "side" } }, { - "id": 3721, + "id": 3100, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "side", "west": "none" } }, { - "id": 3722, + "id": 3101, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "none", "west": "up" } }, { - "id": 3723, + "id": 3102, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "none", "west": "side" } }, { - "id": 3724, + "id": 3103, "properties": { - "east": "side", - "north": "none", - "power": "2", + "east": "up", + "north": "up", + "power": "13", "south": "none", "west": "none" } }, { - "id": 3725, + "id": 3104, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "up", "west": "up" } }, { - "id": 3726, + "id": 3105, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "up", "west": "side" } }, { - "id": 3727, + "id": 3106, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "up", "west": "none" } }, { - "id": 3728, + "id": 3107, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "side", "west": "up" } }, { - "id": 3729, + "id": 3108, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "side", "west": "side" } }, { - "id": 3730, + "id": 3109, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "side", "west": "none" } }, { - "id": 3731, + "id": 3110, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "none", "west": "up" } }, { - "id": 3732, + "id": 3111, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "none", "west": "side" } }, { - "id": 3733, + "id": 3112, "properties": { - "east": "side", - "north": "none", - "power": "3", + "east": "up", + "north": "up", + "power": "14", "south": "none", "west": "none" } }, { - "id": 3734, + "id": 3113, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "up", "west": "up" } }, { - "id": 3735, + "id": 3114, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "up", "west": "side" } }, { - "id": 3736, + "id": 3115, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "up", "west": "none" } }, { - "id": 3737, + "id": 3116, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "side", "west": "up" } }, { - "id": 3738, + "id": 3117, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "side", "west": "side" } }, { - "id": 3739, + "id": 3118, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "side", "west": "none" } }, { - "id": 3740, + "id": 3119, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "none", "west": "up" } }, { - "id": 3741, + "id": 3120, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "none", "west": "side" } }, { - "id": 3742, + "id": 3121, "properties": { - "east": "side", - "north": "none", - "power": "4", + "east": "up", + "north": "up", + "power": "15", "south": "none", "west": "none" } }, { - "id": 3743, + "id": 3122, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "up", "west": "up" } }, { - "id": 3744, + "id": 3123, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "up", "west": "side" } }, { - "id": 3745, + "id": 3124, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "up", "west": "none" } }, { - "id": 3746, + "id": 3125, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "side", "west": "up" } }, { - "id": 3747, + "id": 3126, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "side", "west": "side" } }, { - "id": 3748, + "id": 3127, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "side", "west": "none" } }, { - "id": 3749, + "id": 3128, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "none", "west": "up" } }, { - "id": 3750, + "id": 3129, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "none", "west": "side" } }, { - "id": 3751, + "id": 3130, "properties": { - "east": "side", - "north": "none", - "power": "5", + "east": "up", + "north": "side", + "power": "0", "south": "none", "west": "none" } }, { - "id": 3752, + "id": 3131, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "up", "west": "up" } }, { - "id": 3753, + "id": 3132, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "up", "west": "side" } }, { - "id": 3754, + "id": 3133, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "up", "west": "none" } }, { - "id": 3755, + "id": 3134, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "side", "west": "up" } }, { - "id": 3756, + "id": 3135, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "side", "west": "side" } }, { - "id": 3757, + "id": 3136, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "side", "west": "none" } }, { - "id": 3758, + "id": 3137, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "none", "west": "up" } }, { - "id": 3759, + "id": 3138, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "none", "west": "side" } }, { - "id": 3760, + "id": 3139, "properties": { - "east": "side", - "north": "none", - "power": "6", + "east": "up", + "north": "side", + "power": "1", "south": "none", "west": "none" } }, { - "id": 3761, + "id": 3140, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "up", "west": "up" } }, { - "id": 3762, + "id": 3141, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "up", "west": "side" } }, { - "id": 3763, + "id": 3142, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "up", "west": "none" } }, { - "id": 3764, + "id": 3143, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "side", "west": "up" } }, { - "id": 3765, + "id": 3144, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "side", "west": "side" } }, { - "id": 3766, + "id": 3145, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "side", "west": "none" } }, { - "id": 3767, + "id": 3146, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "none", "west": "up" } }, { - "id": 3768, + "id": 3147, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "none", "west": "side" } }, { - "id": 3769, + "id": 3148, "properties": { - "east": "side", - "north": "none", - "power": "7", + "east": "up", + "north": "side", + "power": "2", "south": "none", "west": "none" } }, { - "id": 3770, + "id": 3149, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "up", "west": "up" } }, { - "id": 3771, + "id": 3150, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "up", "west": "side" } }, { - "id": 3772, + "id": 3151, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "up", "west": "none" } }, { - "id": 3773, + "id": 3152, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "side", "west": "up" } }, { - "id": 3774, + "id": 3153, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "side", "west": "side" } }, { - "id": 3775, + "id": 3154, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "side", "west": "none" } }, { - "id": 3776, + "id": 3155, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "none", "west": "up" } }, { - "id": 3777, + "id": 3156, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "none", "west": "side" } }, { - "id": 3778, + "id": 3157, "properties": { - "east": "side", - "north": "none", - "power": "8", + "east": "up", + "north": "side", + "power": "3", "south": "none", "west": "none" } }, { - "id": 3779, + "id": 3158, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "up", "west": "up" } }, { - "id": 3780, + "id": 3159, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "up", "west": "side" } }, { - "id": 3781, + "id": 3160, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "up", "west": "none" } }, { - "id": 3782, + "id": 3161, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "side", "west": "up" } }, { - "id": 3783, + "id": 3162, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "side", "west": "side" } }, { - "id": 3784, + "id": 3163, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "side", "west": "none" } }, { - "id": 3785, + "id": 3164, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "none", "west": "up" } }, { - "id": 3786, + "id": 3165, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "none", "west": "side" } }, { - "id": 3787, + "id": 3166, "properties": { - "east": "side", - "north": "none", - "power": "9", + "east": "up", + "north": "side", + "power": "4", "south": "none", "west": "none" } }, { - "id": 3788, + "id": 3167, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "up", "west": "up" } }, { - "id": 3789, + "id": 3168, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "up", "west": "side" } }, { - "id": 3790, + "id": 3169, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "up", "west": "none" } }, { - "id": 3791, + "id": 3170, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "side", "west": "up" } }, { - "id": 3792, + "id": 3171, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "side", "west": "side" } }, { - "id": 3793, + "id": 3172, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "side", "west": "none" } }, { - "id": 3794, + "id": 3173, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "none", "west": "up" } }, { - "id": 3795, + "id": 3174, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "none", "west": "side" } }, { - "id": 3796, + "id": 3175, "properties": { - "east": "side", - "north": "none", - "power": "10", + "east": "up", + "north": "side", + "power": "5", "south": "none", "west": "none" } }, { - "id": 3797, + "id": 3176, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "up", "west": "up" } }, { - "id": 3798, + "id": 3177, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "up", "west": "side" } }, { - "id": 3799, + "id": 3178, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "up", "west": "none" } }, { - "id": 3800, + "id": 3179, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "side", "west": "up" } }, { - "id": 3801, + "id": 3180, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "side", "west": "side" } }, { - "id": 3802, + "id": 3181, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "side", "west": "none" } }, { - "id": 3803, + "id": 3182, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "none", "west": "up" } }, { - "id": 3804, + "id": 3183, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "none", "west": "side" } }, { - "id": 3805, + "id": 3184, "properties": { - "east": "side", - "north": "none", - "power": "11", + "east": "up", + "north": "side", + "power": "6", "south": "none", "west": "none" } }, { - "id": 3806, + "id": 3185, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "up", "west": "up" } }, { - "id": 3807, + "id": 3186, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "up", "west": "side" } }, { - "id": 3808, + "id": 3187, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "up", "west": "none" } }, { - "id": 3809, + "id": 3188, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "side", "west": "up" } }, { - "id": 3810, + "id": 3189, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "side", "west": "side" } }, { - "id": 3811, + "id": 3190, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "side", "west": "none" } }, { - "id": 3812, + "id": 3191, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "none", "west": "up" } }, { - "id": 3813, + "id": 3192, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "none", "west": "side" } }, { - "id": 3814, + "id": 3193, "properties": { - "east": "side", - "north": "none", - "power": "12", + "east": "up", + "north": "side", + "power": "7", "south": "none", "west": "none" } }, { - "id": 3815, + "id": 3194, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "up", "west": "up" } }, { - "id": 3816, + "id": 3195, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "up", "west": "side" } }, { - "id": 3817, + "id": 3196, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "up", "west": "none" } }, { - "id": 3818, + "id": 3197, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "side", "west": "up" } }, { - "id": 3819, + "id": 3198, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "side", "west": "side" } }, { - "id": 3820, + "id": 3199, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "side", "west": "none" } }, { - "id": 3821, + "id": 3200, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "none", "west": "up" } }, { - "id": 3822, + "id": 3201, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "none", "west": "side" } }, { - "id": 3823, + "id": 3202, "properties": { - "east": "side", - "north": "none", - "power": "13", + "east": "up", + "north": "side", + "power": "8", "south": "none", "west": "none" } }, { - "id": 3824, + "id": 3203, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "up", "west": "up" } }, { - "id": 3825, + "id": 3204, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "up", "west": "side" } }, { - "id": 3826, + "id": 3205, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "up", "west": "none" } }, { - "id": 3827, + "id": 3206, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "side", "west": "up" } }, { - "id": 3828, + "id": 3207, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "side", "west": "side" } }, { - "id": 3829, + "id": 3208, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "side", "west": "none" } }, { - "id": 3830, + "id": 3209, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "none", "west": "up" } }, { - "id": 3831, + "id": 3210, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "none", "west": "side" } }, { - "id": 3832, + "id": 3211, "properties": { - "east": "side", - "north": "none", - "power": "14", + "east": "up", + "north": "side", + "power": "9", "south": "none", "west": "none" } }, { - "id": 3833, + "id": 3212, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "up", "west": "up" } }, { - "id": 3834, + "id": 3213, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "up", "west": "side" } }, { - "id": 3835, + "id": 3214, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "up", "west": "none" } }, { - "id": 3836, + "id": 3215, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "side", "west": "up" } }, { - "id": 3837, + "id": 3216, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "side", "west": "side" } }, { - "id": 3838, + "id": 3217, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "side", "west": "none" } }, { - "id": 3839, + "id": 3218, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "none", "west": "up" } }, { - "id": 3840, + "id": 3219, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "none", "west": "side" } }, { - "id": 3841, + "id": 3220, "properties": { - "east": "side", - "north": "none", - "power": "15", + "east": "up", + "north": "side", + "power": "10", "south": "none", "west": "none" } }, { - "id": 3842, + "id": 3221, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "up", "west": "up" } }, { - "id": 3843, + "id": 3222, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "up", "west": "side" } }, { - "id": 3844, + "id": 3223, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "up", "west": "none" } }, { - "id": 3845, + "id": 3224, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "side", "west": "up" } }, { - "id": 3846, + "id": 3225, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "side", "west": "side" } }, { - "id": 3847, + "id": 3226, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "side", "west": "none" } }, { - "id": 3848, + "id": 3227, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "none", "west": "up" } }, { - "id": 3849, + "id": 3228, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "none", "west": "side" } }, { - "id": 3850, + "id": 3229, "properties": { - "east": "none", - "north": "up", - "power": "0", + "east": "up", + "north": "side", + "power": "11", "south": "none", "west": "none" } }, { - "id": 3851, + "id": 3230, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "up", "west": "up" } }, { - "id": 3852, + "id": 3231, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "up", "west": "side" } }, { - "id": 3853, + "id": 3232, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "up", "west": "none" } }, { - "id": 3854, + "id": 3233, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "side", "west": "up" } }, { - "id": 3855, + "id": 3234, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "side", "west": "side" } }, { - "id": 3856, + "id": 3235, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "side", "west": "none" } }, { - "id": 3857, + "id": 3236, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "none", "west": "up" } }, { - "id": 3858, + "id": 3237, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "none", "west": "side" } }, { - "id": 3859, + "id": 3238, "properties": { - "east": "none", - "north": "up", - "power": "1", + "east": "up", + "north": "side", + "power": "12", "south": "none", "west": "none" } }, { - "id": 3860, + "id": 3239, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "up", "west": "up" } }, { - "id": 3861, + "id": 3240, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "up", "west": "side" } }, { - "id": 3862, + "id": 3241, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "up", "west": "none" } }, { - "id": 3863, + "id": 3242, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "side", "west": "up" } }, { - "id": 3864, + "id": 3243, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "side", "west": "side" } }, { - "id": 3865, + "id": 3244, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "side", "west": "none" } }, { - "id": 3866, + "id": 3245, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "none", "west": "up" } }, { - "id": 3867, + "id": 3246, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "none", "west": "side" } }, { - "id": 3868, + "id": 3247, "properties": { - "east": "none", - "north": "up", - "power": "2", + "east": "up", + "north": "side", + "power": "13", "south": "none", "west": "none" } }, { - "id": 3869, + "id": 3248, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "up", "west": "up" } }, { - "id": 3870, + "id": 3249, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "up", "west": "side" } }, { - "id": 3871, + "id": 3250, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "up", "west": "none" } }, { - "id": 3872, + "id": 3251, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "side", "west": "up" } }, { - "id": 3873, + "id": 3252, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "side", "west": "side" } }, { - "id": 3874, + "id": 3253, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "side", "west": "none" } }, { - "id": 3875, + "id": 3254, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "none", "west": "up" } }, { - "id": 3876, + "id": 3255, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "none", "west": "side" } }, { - "id": 3877, + "id": 3256, "properties": { - "east": "none", - "north": "up", - "power": "3", + "east": "up", + "north": "side", + "power": "14", "south": "none", "west": "none" } }, { - "id": 3878, + "id": 3257, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "up", "west": "up" } }, { - "id": 3879, + "id": 3258, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "up", "west": "side" } }, { - "id": 3880, + "id": 3259, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "up", "west": "none" } }, { - "id": 3881, + "id": 3260, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "side", "west": "up" } }, { - "id": 3882, + "id": 3261, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "side", "west": "side" } }, { - "id": 3883, + "id": 3262, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "side", "west": "none" } }, { - "id": 3884, + "id": 3263, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "none", "west": "up" } }, { - "id": 3885, + "id": 3264, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "none", "west": "side" } }, { - "id": 3886, + "id": 3265, "properties": { - "east": "none", - "north": "up", - "power": "4", + "east": "up", + "north": "side", + "power": "15", "south": "none", "west": "none" } }, { - "id": 3887, + "id": 3266, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "up", "west": "up" } }, { - "id": 3888, + "id": 3267, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "up", "west": "side" } }, { - "id": 3889, + "id": 3268, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "up", "west": "none" } }, { - "id": 3890, + "id": 3269, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "side", "west": "up" } }, { - "id": 3891, + "id": 3270, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "side", "west": "side" } }, { - "id": 3892, + "id": 3271, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "side", "west": "none" } }, { - "id": 3893, + "id": 3272, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "none", "west": "up" } }, { - "id": 3894, + "id": 3273, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "none", "west": "side" } }, { - "id": 3895, + "id": 3274, "properties": { - "east": "none", - "north": "up", - "power": "5", + "east": "up", + "north": "none", + "power": "0", "south": "none", "west": "none" } }, { - "id": 3896, + "id": 3275, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "up", "west": "up" } }, { - "id": 3897, + "id": 3276, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "up", "west": "side" } }, { - "id": 3898, + "id": 3277, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "up", "west": "none" } }, { - "id": 3899, + "id": 3278, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "side", "west": "up" } }, { - "id": 3900, + "id": 3279, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "side", "west": "side" } }, { - "id": 3901, + "id": 3280, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "side", "west": "none" } }, { - "id": 3902, + "id": 3281, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "none", "west": "up" } }, { - "id": 3903, + "id": 3282, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "none", "west": "side" } }, { - "id": 3904, + "id": 3283, "properties": { - "east": "none", - "north": "up", - "power": "6", + "east": "up", + "north": "none", + "power": "1", "south": "none", "west": "none" } }, { - "id": 3905, + "id": 3284, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "up", "west": "up" } }, { - "id": 3906, + "id": 3285, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "up", "west": "side" } }, { - "id": 3907, + "id": 3286, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "up", "west": "none" } }, { - "id": 3908, + "id": 3287, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "side", "west": "up" } }, { - "id": 3909, + "id": 3288, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "side", "west": "side" } }, { - "id": 3910, + "id": 3289, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "side", "west": "none" } }, { - "id": 3911, + "id": 3290, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "none", "west": "up" } }, { - "id": 3912, + "id": 3291, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "none", "west": "side" } }, { - "id": 3913, + "id": 3292, "properties": { - "east": "none", - "north": "up", - "power": "7", + "east": "up", + "north": "none", + "power": "2", "south": "none", "west": "none" } }, { - "id": 3914, + "id": 3293, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "up", "west": "up" } }, { - "id": 3915, + "id": 3294, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "up", "west": "side" } }, { - "id": 3916, + "id": 3295, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "up", "west": "none" } }, { - "id": 3917, + "id": 3296, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "side", "west": "up" } }, { - "id": 3918, + "id": 3297, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "side", "west": "side" } }, { - "id": 3919, + "id": 3298, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "side", "west": "none" } }, { - "id": 3920, + "id": 3299, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "none", "west": "up" } }, { - "id": 3921, + "id": 3300, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "none", "west": "side" } }, { - "id": 3922, + "id": 3301, "properties": { - "east": "none", - "north": "up", - "power": "8", + "east": "up", + "north": "none", + "power": "3", "south": "none", "west": "none" } }, { - "id": 3923, + "id": 3302, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "up", "west": "up" } }, { - "id": 3924, + "id": 3303, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "up", "west": "side" } }, { - "id": 3925, + "id": 3304, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "up", "west": "none" } }, { - "id": 3926, + "id": 3305, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "side", "west": "up" } }, { - "id": 3927, + "id": 3306, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "side", "west": "side" } }, { - "id": 3928, + "id": 3307, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "side", "west": "none" } }, { - "id": 3929, + "id": 3308, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "none", "west": "up" } }, { - "id": 3930, + "id": 3309, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "none", "west": "side" } }, { - "id": 3931, + "id": 3310, "properties": { - "east": "none", - "north": "up", - "power": "9", + "east": "up", + "north": "none", + "power": "4", "south": "none", "west": "none" } }, { - "id": 3932, + "id": 3311, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "up", "west": "up" } }, { - "id": 3933, + "id": 3312, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "up", "west": "side" } }, { - "id": 3934, + "id": 3313, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "up", "west": "none" } }, { - "id": 3935, + "id": 3314, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "side", "west": "up" } }, { - "id": 3936, + "id": 3315, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "side", "west": "side" } }, { - "id": 3937, + "id": 3316, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "side", "west": "none" } }, { - "id": 3938, + "id": 3317, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "none", "west": "up" } }, { - "id": 3939, + "id": 3318, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "none", "west": "side" } }, { - "id": 3940, + "id": 3319, "properties": { - "east": "none", - "north": "up", - "power": "10", + "east": "up", + "north": "none", + "power": "5", "south": "none", "west": "none" } }, { - "id": 3941, + "id": 3320, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "up", "west": "up" } }, { - "id": 3942, + "id": 3321, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "up", "west": "side" } }, { - "id": 3943, + "id": 3322, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "up", "west": "none" } }, { - "id": 3944, + "id": 3323, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "side", "west": "up" } }, { - "id": 3945, + "id": 3324, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "side", "west": "side" } }, { - "id": 3946, + "id": 3325, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "side", "west": "none" } }, { - "id": 3947, + "id": 3326, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "none", "west": "up" } }, { - "id": 3948, + "id": 3327, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "none", "west": "side" } }, { - "id": 3949, + "id": 3328, "properties": { - "east": "none", - "north": "up", - "power": "11", + "east": "up", + "north": "none", + "power": "6", "south": "none", "west": "none" } }, { - "id": 3950, + "id": 3329, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "up", "west": "up" } }, { - "id": 3951, + "id": 3330, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "up", "west": "side" } }, { - "id": 3952, + "id": 3331, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "up", "west": "none" } }, { - "id": 3953, + "id": 3332, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "side", "west": "up" } }, { - "id": 3954, + "id": 3333, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "side", "west": "side" } }, { - "id": 3955, + "id": 3334, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "side", "west": "none" } }, { - "id": 3956, + "id": 3335, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "none", "west": "up" } }, { - "id": 3957, + "id": 3336, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "none", "west": "side" } }, { - "id": 3958, + "id": 3337, "properties": { - "east": "none", - "north": "up", - "power": "12", + "east": "up", + "north": "none", + "power": "7", "south": "none", "west": "none" } }, { - "id": 3959, + "id": 3338, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "up", "west": "up" } }, { - "id": 3960, + "id": 3339, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "up", "west": "side" } }, { - "id": 3961, + "id": 3340, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "up", "west": "none" } }, { - "id": 3962, + "id": 3341, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "side", "west": "up" } }, { - "id": 3963, + "id": 3342, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "side", "west": "side" } }, { - "id": 3964, + "id": 3343, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "side", "west": "none" } }, { - "id": 3965, + "id": 3344, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "none", "west": "up" } }, { - "id": 3966, + "id": 3345, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "none", "west": "side" } }, { - "id": 3967, + "id": 3346, "properties": { - "east": "none", - "north": "up", - "power": "13", + "east": "up", + "north": "none", + "power": "8", "south": "none", "west": "none" } }, { - "id": 3968, + "id": 3347, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "up", "west": "up" } }, { - "id": 3969, + "id": 3348, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "up", "west": "side" } }, { - "id": 3970, + "id": 3349, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "up", "west": "none" } }, { - "id": 3971, + "id": 3350, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "side", "west": "up" } }, { - "id": 3972, + "id": 3351, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "side", "west": "side" } }, { - "id": 3973, + "id": 3352, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "side", "west": "none" } }, { - "id": 3974, + "id": 3353, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "none", "west": "up" } }, { - "id": 3975, + "id": 3354, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "none", "west": "side" } }, { - "id": 3976, + "id": 3355, "properties": { - "east": "none", - "north": "up", - "power": "14", + "east": "up", + "north": "none", + "power": "9", "south": "none", "west": "none" } }, { - "id": 3977, + "id": 3356, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "up", "west": "up" } }, { - "id": 3978, + "id": 3357, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "up", "west": "side" } }, { - "id": 3979, + "id": 3358, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "up", "west": "none" } }, { - "id": 3980, + "id": 3359, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "side", "west": "up" } }, { - "id": 3981, + "id": 3360, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "side", "west": "side" } }, { - "id": 3982, + "id": 3361, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "side", "west": "none" } }, { - "id": 3983, + "id": 3362, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "none", "west": "up" } }, { - "id": 3984, + "id": 3363, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "none", "west": "side" } }, { - "id": 3985, + "id": 3364, "properties": { - "east": "none", - "north": "up", - "power": "15", + "east": "up", + "north": "none", + "power": "10", "south": "none", "west": "none" } }, { - "id": 3986, + "id": 3365, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "up", "west": "up" } }, { - "id": 3987, + "id": 3366, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "up", "west": "side" } }, { - "id": 3988, + "id": 3367, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "up", "west": "none" } }, { - "id": 3989, + "id": 3368, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "side", "west": "up" } }, { - "id": 3990, + "id": 3369, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "side", "west": "side" } }, { - "id": 3991, + "id": 3370, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "side", "west": "none" } }, { - "id": 3992, + "id": 3371, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "none", "west": "up" } }, { - "id": 3993, + "id": 3372, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "none", "west": "side" } }, { - "id": 3994, + "id": 3373, "properties": { - "east": "none", - "north": "side", - "power": "0", + "east": "up", + "north": "none", + "power": "11", "south": "none", "west": "none" } }, { - "id": 3995, + "id": 3374, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "up", "west": "up" } }, { - "id": 3996, + "id": 3375, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "up", "west": "side" } }, { - "id": 3997, + "id": 3376, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "up", "west": "none" } }, { - "id": 3998, + "id": 3377, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "side", "west": "up" } }, { - "id": 3999, + "id": 3378, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "side", "west": "side" } }, { - "id": 4000, + "id": 3379, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "side", "west": "none" } }, { - "id": 4001, + "id": 3380, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "none", "west": "up" } }, { - "id": 4002, + "id": 3381, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "none", "west": "side" } }, { - "id": 4003, + "id": 3382, "properties": { - "east": "none", - "north": "side", - "power": "1", + "east": "up", + "north": "none", + "power": "12", "south": "none", "west": "none" } }, { - "id": 4004, + "id": 3383, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "up", "west": "up" } }, { - "id": 4005, + "id": 3384, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "up", "west": "side" } }, { - "id": 4006, + "id": 3385, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "up", "west": "none" } }, { - "id": 4007, + "id": 3386, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "side", "west": "up" } }, { - "id": 4008, + "id": 3387, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "side", "west": "side" } }, { - "id": 4009, + "id": 3388, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "side", "west": "none" } }, { - "id": 4010, + "id": 3389, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "none", "west": "up" } }, { - "id": 4011, + "id": 3390, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "none", "west": "side" } }, { - "id": 4012, + "id": 3391, "properties": { - "east": "none", - "north": "side", - "power": "2", + "east": "up", + "north": "none", + "power": "13", "south": "none", "west": "none" } }, { - "id": 4013, + "id": 3392, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "up", "west": "up" } }, { - "id": 4014, + "id": 3393, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "up", "west": "side" } }, { - "id": 4015, + "id": 3394, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "up", "west": "none" } }, { - "id": 4016, + "id": 3395, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "side", "west": "up" } }, { - "id": 4017, + "id": 3396, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "side", "west": "side" } }, { - "id": 4018, + "id": 3397, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "side", "west": "none" } }, { - "id": 4019, + "id": 3398, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "none", "west": "up" } }, { - "id": 4020, + "id": 3399, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "none", "west": "side" } }, { - "id": 4021, + "id": 3400, "properties": { - "east": "none", - "north": "side", - "power": "3", + "east": "up", + "north": "none", + "power": "14", "south": "none", "west": "none" } }, { - "id": 4022, + "id": 3401, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "up" } }, { - "id": 4023, + "id": 3402, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "side" } }, { - "id": 4024, + "id": 3403, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "up", "west": "none" } }, { - "id": 4025, + "id": 3404, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "up" } }, { - "id": 4026, + "id": 3405, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "side" } }, { - "id": 4027, + "id": 3406, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "side", "west": "none" } }, { - "id": 4028, + "id": 3407, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "up" } }, { - "id": 4029, + "id": 3408, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "side" } }, { - "id": 4030, + "id": 3409, "properties": { - "east": "none", - "north": "side", - "power": "4", + "east": "up", + "north": "none", + "power": "15", "south": "none", "west": "none" } }, { - "id": 4031, + "id": 3410, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "up", "west": "up" } }, { - "id": 4032, + "id": 3411, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "up", "west": "side" } }, { - "id": 4033, + "id": 3412, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "up", "west": "none" } }, { - "id": 4034, + "id": 3413, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "side", "west": "up" } }, { - "id": 4035, + "id": 3414, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "side", "west": "side" } }, { - "id": 4036, + "id": 3415, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "side", "west": "none" } }, { - "id": 4037, + "id": 3416, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "none", "west": "up" } }, { - "id": 4038, + "id": 3417, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "none", "west": "side" } }, { - "id": 4039, + "id": 3418, "properties": { - "east": "none", - "north": "side", - "power": "5", + "east": "side", + "north": "up", + "power": "0", "south": "none", "west": "none" } }, { - "id": 4040, + "id": 3419, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "up", "west": "up" } }, { - "id": 4041, + "id": 3420, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "up", "west": "side" } }, { - "id": 4042, + "id": 3421, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "up", "west": "none" } }, { - "id": 4043, + "id": 3422, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "side", "west": "up" } }, { - "id": 4044, + "id": 3423, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "side", "west": "side" } }, { - "id": 4045, + "id": 3424, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "side", "west": "none" } }, { - "id": 4046, + "id": 3425, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "none", "west": "up" } }, { - "id": 4047, + "id": 3426, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "none", "west": "side" } }, { - "id": 4048, + "id": 3427, "properties": { - "east": "none", - "north": "side", - "power": "6", + "east": "side", + "north": "up", + "power": "1", "south": "none", "west": "none" } }, { - "id": 4049, + "id": 3428, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "up", "west": "up" } }, { - "id": 4050, + "id": 3429, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "up", "west": "side" } }, { - "id": 4051, + "id": 3430, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "up", "west": "none" } }, { - "id": 4052, + "id": 3431, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "side", "west": "up" } }, { - "id": 4053, + "id": 3432, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "side", "west": "side" } }, { - "id": 4054, + "id": 3433, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "side", "west": "none" } }, { - "id": 4055, + "id": 3434, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "none", "west": "up" } }, { - "id": 4056, + "id": 3435, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "none", "west": "side" } }, { - "id": 4057, + "id": 3436, "properties": { - "east": "none", - "north": "side", - "power": "7", + "east": "side", + "north": "up", + "power": "2", "south": "none", "west": "none" } }, { - "id": 4058, + "id": 3437, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "up", "west": "up" } }, { - "id": 4059, + "id": 3438, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "up", "west": "side" } }, { - "id": 4060, + "id": 3439, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "up", "west": "none" } }, { - "id": 4061, + "id": 3440, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "side", "west": "up" } }, { - "id": 4062, + "id": 3441, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "side", "west": "side" } }, { - "id": 4063, + "id": 3442, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "side", "west": "none" } }, { - "id": 4064, + "id": 3443, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "none", "west": "up" } }, { - "id": 4065, + "id": 3444, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "none", "west": "side" } }, { - "id": 4066, + "id": 3445, "properties": { - "east": "none", - "north": "side", - "power": "8", + "east": "side", + "north": "up", + "power": "3", "south": "none", "west": "none" } }, { - "id": 4067, + "id": 3446, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "up", "west": "up" } }, { - "id": 4068, + "id": 3447, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "up", "west": "side" } }, { - "id": 4069, + "id": 3448, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "up", "west": "none" } }, { - "id": 4070, + "id": 3449, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "side", "west": "up" } }, { - "id": 4071, + "id": 3450, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "side", "west": "side" } }, { - "id": 4072, + "id": 3451, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "side", "west": "none" } }, { - "id": 4073, + "id": 3452, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "none", "west": "up" } }, { - "id": 4074, + "id": 3453, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "none", "west": "side" } }, { - "id": 4075, + "id": 3454, "properties": { - "east": "none", - "north": "side", - "power": "9", + "east": "side", + "north": "up", + "power": "4", "south": "none", "west": "none" } }, { - "id": 4076, + "id": 3455, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "up", "west": "up" } }, { - "id": 4077, + "id": 3456, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "up", "west": "side" } }, { - "id": 4078, + "id": 3457, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "up", "west": "none" } }, { - "id": 4079, + "id": 3458, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "side", "west": "up" } }, { - "id": 4080, + "id": 3459, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "side", "west": "side" } }, { - "id": 4081, + "id": 3460, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "side", "west": "none" } }, { - "id": 4082, + "id": 3461, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "none", "west": "up" } }, { - "id": 4083, + "id": 3462, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "none", "west": "side" } }, { - "id": 4084, + "id": 3463, "properties": { - "east": "none", - "north": "side", - "power": "10", + "east": "side", + "north": "up", + "power": "5", "south": "none", "west": "none" } }, { - "id": 4085, + "id": 3464, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "up", "west": "up" } }, { - "id": 4086, + "id": 3465, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "up", "west": "side" } }, { - "id": 4087, + "id": 3466, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "up", "west": "none" } }, { - "id": 4088, + "id": 3467, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "side", "west": "up" } }, { - "id": 4089, + "id": 3468, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "side", "west": "side" } }, { - "id": 4090, + "id": 3469, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "side", "west": "none" } }, { - "id": 4091, + "id": 3470, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "none", "west": "up" } }, { - "id": 4092, + "id": 3471, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "none", "west": "side" } }, { - "id": 4093, + "id": 3472, "properties": { - "east": "none", - "north": "side", - "power": "11", + "east": "side", + "north": "up", + "power": "6", "south": "none", "west": "none" } }, { - "id": 4094, + "id": 3473, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "up", "west": "up" } }, { - "id": 4095, + "id": 3474, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "up", "west": "side" } }, { - "id": 4096, + "id": 3475, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "up", "west": "none" } }, { - "id": 4097, + "id": 3476, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "side", "west": "up" } }, { - "id": 4098, + "id": 3477, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "side", "west": "side" } }, { - "id": 4099, + "id": 3478, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "side", "west": "none" } }, { - "id": 4100, + "id": 3479, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "none", "west": "up" } }, { - "id": 4101, + "id": 3480, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "none", "west": "side" } }, { - "id": 4102, + "id": 3481, "properties": { - "east": "none", - "north": "side", - "power": "12", + "east": "side", + "north": "up", + "power": "7", "south": "none", "west": "none" } }, { - "id": 4103, + "id": 3482, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "up", "west": "up" } }, { - "id": 4104, + "id": 3483, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "up", "west": "side" } }, { - "id": 4105, + "id": 3484, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "up", "west": "none" } }, { - "id": 4106, + "id": 3485, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "side", "west": "up" } }, { - "id": 4107, + "id": 3486, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "side", "west": "side" } }, { - "id": 4108, + "id": 3487, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "side", "west": "none" } }, { - "id": 4109, + "id": 3488, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "none", "west": "up" } }, { - "id": 4110, + "id": 3489, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "none", "west": "side" } }, { - "id": 4111, + "id": 3490, "properties": { - "east": "none", - "north": "side", - "power": "13", + "east": "side", + "north": "up", + "power": "8", "south": "none", "west": "none" } }, { - "id": 4112, + "id": 3491, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "up", "west": "up" } }, { - "id": 4113, + "id": 3492, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "up", "west": "side" } }, { - "id": 4114, + "id": 3493, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "up", "west": "none" } }, { - "id": 4115, + "id": 3494, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "side", "west": "up" } }, { - "id": 4116, + "id": 3495, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "side", "west": "side" } }, { - "id": 4117, + "id": 3496, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "side", "west": "none" } }, { - "id": 4118, + "id": 3497, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "none", "west": "up" } }, { - "id": 4119, + "id": 3498, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "none", "west": "side" } }, { - "id": 4120, + "id": 3499, "properties": { - "east": "none", - "north": "side", - "power": "14", + "east": "side", + "north": "up", + "power": "9", "south": "none", "west": "none" } }, { - "id": 4121, + "id": 3500, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "up", "west": "up" } }, { - "id": 4122, + "id": 3501, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "up", "west": "side" } }, { - "id": 4123, + "id": 3502, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "up", "west": "none" } }, { - "id": 4124, + "id": 3503, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "side", "west": "up" } }, { - "id": 4125, + "id": 3504, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "side", "west": "side" } }, { - "id": 4126, + "id": 3505, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "side", "west": "none" } }, { - "id": 4127, + "id": 3506, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "none", "west": "up" } }, { - "id": 4128, + "id": 3507, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "none", "west": "side" } }, { - "id": 4129, + "id": 3508, "properties": { - "east": "none", - "north": "side", - "power": "15", + "east": "side", + "north": "up", + "power": "10", "south": "none", "west": "none" } }, { - "id": 4130, + "id": 3509, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "up", "west": "up" } }, { - "id": 4131, + "id": 3510, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "up", "west": "side" } }, { - "id": 4132, + "id": 3511, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "up", "west": "none" } }, { - "id": 4133, + "id": 3512, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "side", "west": "up" } }, { - "id": 4134, + "id": 3513, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "side", "west": "side" } }, { - "id": 4135, + "id": 3514, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "side", "west": "none" } }, { - "id": 4136, + "id": 3515, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "none", "west": "up" } }, { - "id": 4137, + "id": 3516, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "none", "west": "side" } }, { - "default": true, - "id": 4138, + "id": 3517, "properties": { - "east": "none", - "north": "none", - "power": "0", + "east": "side", + "north": "up", + "power": "11", "south": "none", "west": "none" } }, { - "id": 4139, + "id": 3518, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "up", "west": "up" } }, { - "id": 4140, + "id": 3519, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "up", "west": "side" } }, { - "id": 4141, + "id": 3520, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "up", "west": "none" } }, { - "id": 4142, + "id": 3521, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "side", "west": "up" } }, { - "id": 4143, + "id": 3522, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "side", "west": "side" } }, { - "id": 4144, + "id": 3523, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "side", "west": "none" } }, { - "id": 4145, + "id": 3524, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "none", "west": "up" } }, { - "id": 4146, + "id": 3525, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "none", "west": "side" } }, { - "id": 4147, + "id": 3526, "properties": { - "east": "none", - "north": "none", - "power": "1", + "east": "side", + "north": "up", + "power": "12", "south": "none", "west": "none" } }, { - "id": 4148, + "id": 3527, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "up", "west": "up" } }, { - "id": 4149, + "id": 3528, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "up", "west": "side" } }, { - "id": 4150, + "id": 3529, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "up", "west": "none" } }, { - "id": 4151, + "id": 3530, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "side", "west": "up" } }, { - "id": 4152, + "id": 3531, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "side", "west": "side" } }, { - "id": 4153, + "id": 3532, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "side", "west": "none" } }, { - "id": 4154, + "id": 3533, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "none", "west": "up" } }, { - "id": 4155, + "id": 3534, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "none", "west": "side" } }, { - "id": 4156, + "id": 3535, "properties": { - "east": "none", - "north": "none", - "power": "2", + "east": "side", + "north": "up", + "power": "13", "south": "none", "west": "none" } }, { - "id": 4157, + "id": 3536, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "up", "west": "up" } }, { - "id": 4158, + "id": 3537, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "up", "west": "side" } }, { - "id": 4159, + "id": 3538, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "up", "west": "none" } }, { - "id": 4160, + "id": 3539, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "side", "west": "up" } }, { - "id": 4161, + "id": 3540, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "side", "west": "side" } }, { - "id": 4162, + "id": 3541, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "side", "west": "none" } }, { - "id": 4163, + "id": 3542, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "none", "west": "up" } }, { - "id": 4164, + "id": 3543, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "none", "west": "side" } }, { - "id": 4165, + "id": 3544, "properties": { - "east": "none", - "north": "none", - "power": "3", + "east": "side", + "north": "up", + "power": "14", "south": "none", "west": "none" } }, { - "id": 4166, + "id": 3545, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "up", "west": "up" } }, { - "id": 4167, + "id": 3546, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "up", "west": "side" } }, { - "id": 4168, + "id": 3547, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "up", "west": "none" } }, { - "id": 4169, + "id": 3548, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "side", "west": "up" } }, { - "id": 4170, + "id": 3549, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "side", "west": "side" } }, { - "id": 4171, + "id": 3550, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "side", "west": "none" } }, { - "id": 4172, + "id": 3551, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "none", "west": "up" } }, { - "id": 4173, + "id": 3552, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "none", "west": "side" } }, { - "id": 4174, + "id": 3553, "properties": { - "east": "none", - "north": "none", - "power": "4", + "east": "side", + "north": "up", + "power": "15", "south": "none", "west": "none" } }, { - "id": 4175, + "id": 3554, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "up", "west": "up" } }, { - "id": 4176, + "id": 3555, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "up", "west": "side" } }, { - "id": 4177, + "id": 3556, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "up", "west": "none" } }, { - "id": 4178, + "id": 3557, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "side", "west": "up" } }, { - "id": 4179, + "id": 3558, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "side", "west": "side" } }, { - "id": 4180, + "id": 3559, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "side", "west": "none" } }, { - "id": 4181, + "id": 3560, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "none", "west": "up" } }, { - "id": 4182, + "id": 3561, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "none", "west": "side" } }, { - "id": 4183, + "id": 3562, "properties": { - "east": "none", - "north": "none", - "power": "5", + "east": "side", + "north": "side", + "power": "0", "south": "none", "west": "none" } }, { - "id": 4184, + "id": 3563, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "up", "west": "up" } }, { - "id": 4185, + "id": 3564, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "up", "west": "side" } }, { - "id": 4186, + "id": 3565, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "up", "west": "none" } }, { - "id": 4187, + "id": 3566, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "side", "west": "up" } }, { - "id": 4188, + "id": 3567, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "side", "west": "side" } }, { - "id": 4189, + "id": 3568, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "side", "west": "none" } }, { - "id": 4190, + "id": 3569, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "none", "west": "up" } }, { - "id": 4191, + "id": 3570, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "none", "west": "side" } }, { - "id": 4192, + "id": 3571, "properties": { - "east": "none", - "north": "none", - "power": "6", + "east": "side", + "north": "side", + "power": "1", "south": "none", "west": "none" } }, { - "id": 4193, + "id": 3572, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "up", "west": "up" } }, { - "id": 4194, + "id": 3573, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "up", "west": "side" } }, { - "id": 4195, + "id": 3574, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "up", "west": "none" } }, { - "id": 4196, + "id": 3575, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "side", "west": "up" } }, { - "id": 4197, + "id": 3576, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "side", "west": "side" } }, { - "id": 4198, + "id": 3577, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "side", "west": "none" } }, { - "id": 4199, + "id": 3578, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "none", "west": "up" } }, { - "id": 4200, + "id": 3579, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "none", "west": "side" } }, { - "id": 4201, + "id": 3580, "properties": { - "east": "none", - "north": "none", - "power": "7", + "east": "side", + "north": "side", + "power": "2", "south": "none", "west": "none" } }, { - "id": 4202, + "id": 3581, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "up", "west": "up" } }, { - "id": 4203, + "id": 3582, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "up", "west": "side" } }, { - "id": 4204, + "id": 3583, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "up", "west": "none" } }, { - "id": 4205, + "id": 3584, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "side", "west": "up" } }, { - "id": 4206, + "id": 3585, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "side", "west": "side" } }, { - "id": 4207, + "id": 3586, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "side", "west": "none" } }, { - "id": 4208, + "id": 3587, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "none", "west": "up" } }, { - "id": 4209, + "id": 3588, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "none", "west": "side" } }, { - "id": 4210, + "id": 3589, "properties": { - "east": "none", - "north": "none", - "power": "8", + "east": "side", + "north": "side", + "power": "3", "south": "none", "west": "none" } }, { - "id": 4211, + "id": 3590, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "up", "west": "up" } }, { - "id": 4212, + "id": 3591, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "up", "west": "side" } }, { - "id": 4213, + "id": 3592, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "up", "west": "none" } }, { - "id": 4214, + "id": 3593, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "side", "west": "up" } }, { - "id": 4215, + "id": 3594, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "side", "west": "side" } }, { - "id": 4216, + "id": 3595, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "side", "west": "none" } }, { - "id": 4217, + "id": 3596, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "none", "west": "up" } }, { - "id": 4218, + "id": 3597, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "none", "west": "side" } }, { - "id": 4219, + "id": 3598, "properties": { - "east": "none", - "north": "none", - "power": "9", + "east": "side", + "north": "side", + "power": "4", "south": "none", "west": "none" } }, { - "id": 4220, + "id": 3599, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "up", "west": "up" } }, { - "id": 4221, + "id": 3600, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "up", "west": "side" } }, { - "id": 4222, + "id": 3601, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "up", "west": "none" } }, { - "id": 4223, + "id": 3602, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "side", "west": "up" } }, { - "id": 4224, + "id": 3603, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "side", "west": "side" } }, { - "id": 4225, + "id": 3604, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "side", "west": "none" } }, { - "id": 4226, + "id": 3605, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "none", "west": "up" } }, { - "id": 4227, + "id": 3606, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "none", "west": "side" } }, { - "id": 4228, + "id": 3607, "properties": { - "east": "none", - "north": "none", - "power": "10", + "east": "side", + "north": "side", + "power": "5", "south": "none", "west": "none" } }, { - "id": 4229, + "id": 3608, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "up", "west": "up" } }, { - "id": 4230, + "id": 3609, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "up", "west": "side" } }, { - "id": 4231, + "id": 3610, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "up", "west": "none" } }, { - "id": 4232, + "id": 3611, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "side", "west": "up" } }, { - "id": 4233, + "id": 3612, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "side", "west": "side" } }, { - "id": 4234, + "id": 3613, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "side", "west": "none" } }, { - "id": 4235, + "id": 3614, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "none", "west": "up" } }, { - "id": 4236, + "id": 3615, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "none", "west": "side" } }, { - "id": 4237, + "id": 3616, "properties": { - "east": "none", - "north": "none", - "power": "11", + "east": "side", + "north": "side", + "power": "6", "south": "none", "west": "none" } }, { - "id": 4238, + "id": 3617, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "up", "west": "up" } }, { - "id": 4239, + "id": 3618, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "up", "west": "side" } }, { - "id": 4240, + "id": 3619, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "up", "west": "none" } }, { - "id": 4241, + "id": 3620, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "side", "west": "up" } }, { - "id": 4242, + "id": 3621, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "side", "west": "side" } }, { - "id": 4243, + "id": 3622, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "side", "west": "none" } }, { - "id": 4244, + "id": 3623, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "none", "west": "up" } }, { - "id": 4245, + "id": 3624, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "none", "west": "side" } }, { - "id": 4246, + "id": 3625, "properties": { - "east": "none", - "north": "none", - "power": "12", + "east": "side", + "north": "side", + "power": "7", "south": "none", "west": "none" } }, { - "id": 4247, + "id": 3626, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "up", "west": "up" } }, { - "id": 4248, + "id": 3627, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "up", "west": "side" } }, { - "id": 4249, + "id": 3628, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "up", "west": "none" } }, { - "id": 4250, + "id": 3629, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "side", "west": "up" } }, { - "id": 4251, + "id": 3630, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "side", "west": "side" } }, { - "id": 4252, + "id": 3631, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "side", "west": "none" } }, { - "id": 4253, + "id": 3632, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "none", "west": "up" } }, { - "id": 4254, + "id": 3633, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "none", "west": "side" } }, { - "id": 4255, + "id": 3634, "properties": { - "east": "none", - "north": "none", - "power": "13", + "east": "side", + "north": "side", + "power": "8", "south": "none", "west": "none" } }, { - "id": 4256, + "id": 3635, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "up", "west": "up" } }, { - "id": 4257, + "id": 3636, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "up", "west": "side" } }, { - "id": 4258, + "id": 3637, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "up", "west": "none" } }, { - "id": 4259, + "id": 3638, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "side", "west": "up" } }, { - "id": 4260, + "id": 3639, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "side", "west": "side" } }, { - "id": 4261, + "id": 3640, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "side", "west": "none" } }, { - "id": 4262, + "id": 3641, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "none", "west": "up" } }, { - "id": 4263, + "id": 3642, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "none", "west": "side" } }, { - "id": 4264, + "id": 3643, "properties": { - "east": "none", - "north": "none", - "power": "14", + "east": "side", + "north": "side", + "power": "9", "south": "none", "west": "none" } }, { - "id": 4265, + "id": 3644, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "up", "west": "up" } }, { - "id": 4266, + "id": 3645, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "up", "west": "side" } }, { - "id": 4267, + "id": 3646, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "up", "west": "none" } }, { - "id": 4268, + "id": 3647, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "side", "west": "up" } }, { - "id": 4269, + "id": 3648, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "side", "west": "side" } }, { - "id": 4270, + "id": 3649, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "side", "west": "none" } }, { - "id": 4271, + "id": 3650, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "none", "west": "up" } }, { - "id": 4272, + "id": 3651, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "none", "west": "side" } }, { - "id": 4273, + "id": 3652, "properties": { - "east": "none", - "north": "none", - "power": "15", + "east": "side", + "north": "side", + "power": "10", "south": "none", "west": "none" } - } - ] - }, - "minecraft:reinforced_deepslate": { - "states": [ - { - "default": true, - "id": 24259 - } - ] - }, - "minecraft:repeater": { - "properties": { - "delay": [ - "1", - "2", - "3", - "4" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "locked": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5882, + "id": 3653, "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" } }, { - "id": 5883, + "id": 3654, "properties": { - "delay": "1", - "facing": "north", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" } }, { - "id": 5884, + "id": 3655, "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" } }, { - "default": true, - "id": 5885, + "id": 3656, "properties": { - "delay": "1", - "facing": "north", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" } }, { - "id": 5886, + "id": 3657, "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" } }, { - "id": 5887, + "id": 3658, "properties": { - "delay": "1", - "facing": "south", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" } }, { - "id": 5888, + "id": 3659, "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" } }, { - "id": 5889, + "id": 3660, "properties": { - "delay": "1", - "facing": "south", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" } }, { - "id": 5890, + "id": 3661, "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" } }, { - "id": 5891, + "id": 3662, "properties": { - "delay": "1", - "facing": "west", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" } }, { - "id": 5892, + "id": 3663, "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" } }, { - "id": 5893, + "id": 3664, "properties": { - "delay": "1", - "facing": "west", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" } }, { - "id": 5894, + "id": 3665, "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" } }, { - "id": 5895, + "id": 3666, "properties": { - "delay": "1", - "facing": "east", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" } }, { - "id": 5896, + "id": 3667, "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" } }, { - "id": 5897, + "id": 3668, "properties": { - "delay": "1", - "facing": "east", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" } }, { - "id": 5898, + "id": 3669, "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" } }, { - "id": 5899, + "id": 3670, "properties": { - "delay": "2", - "facing": "north", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" } }, { - "id": 5900, + "id": 3671, "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" } }, { - "id": 5901, + "id": 3672, "properties": { - "delay": "2", - "facing": "north", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" } }, { - "id": 5902, + "id": 3673, "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" } }, { - "id": 5903, + "id": 3674, "properties": { - "delay": "2", - "facing": "south", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" } }, { - "id": 5904, + "id": 3675, "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" } }, { - "id": 5905, + "id": 3676, "properties": { - "delay": "2", - "facing": "south", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" } }, { - "id": 5906, + "id": 3677, "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" } }, { - "id": 5907, + "id": 3678, "properties": { - "delay": "2", - "facing": "west", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" } }, { - "id": 5908, + "id": 3679, "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" } }, { - "id": 5909, + "id": 3680, "properties": { - "delay": "2", - "facing": "west", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" } }, { - "id": 5910, + "id": 3681, "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" } }, { - "id": 5911, + "id": 3682, "properties": { - "delay": "2", - "facing": "east", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" } }, { - "id": 5912, + "id": 3683, "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" } }, { - "id": 5913, + "id": 3684, "properties": { - "delay": "2", - "facing": "east", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" } }, { - "id": 5914, + "id": 3685, "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" } }, { - "id": 5915, + "id": 3686, "properties": { - "delay": "3", - "facing": "north", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" } }, { - "id": 5916, + "id": 3687, "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" } }, { - "id": 5917, + "id": 3688, "properties": { - "delay": "3", - "facing": "north", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" } }, { - "id": 5918, + "id": 3689, "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" } }, { - "id": 5919, + "id": 3690, "properties": { - "delay": "3", - "facing": "south", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" } }, { - "id": 5920, + "id": 3691, "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" } }, { - "id": 5921, + "id": 3692, "properties": { - "delay": "3", - "facing": "south", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" } }, { - "id": 5922, + "id": 3693, "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" } }, { - "id": 5923, + "id": 3694, "properties": { - "delay": "3", - "facing": "west", - "locked": "true", - "powered": "false" + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" } }, { - "id": 5924, + "id": 3695, "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "true" + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" } }, { - "id": 5925, + "id": 3696, "properties": { - "delay": "3", - "facing": "west", - "locked": "false", - "powered": "false" + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" } }, { - "id": 5926, + "id": 3697, "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "true" + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" } }, { - "id": 5927, + "id": 3698, "properties": { - "delay": "3", - "facing": "east", - "locked": "true", - "powered": "false" + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" } }, { - "id": 5928, + "id": 3699, "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "true" + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" } }, { - "id": 5929, + "id": 3700, "properties": { - "delay": "3", - "facing": "east", - "locked": "false", - "powered": "false" + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" } }, { - "id": 5930, + "id": 3701, "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "true" + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" } }, { - "id": 5931, + "id": 3702, "properties": { - "delay": "4", - "facing": "north", - "locked": "true", - "powered": "false" + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" } }, { - "id": 5932, + "id": 3703, "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "true" + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" } }, { - "id": 5933, + "id": 3704, "properties": { - "delay": "4", - "facing": "north", - "locked": "false", - "powered": "false" + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" } }, { - "id": 5934, + "id": 3705, "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "true" + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" } }, { - "id": 5935, + "id": 3706, "properties": { - "delay": "4", - "facing": "south", - "locked": "true", - "powered": "false" + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" } }, { - "id": 5936, + "id": 3707, "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "true" + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" } }, { - "id": 5937, + "id": 3708, "properties": { - "delay": "4", - "facing": "south", - "locked": "false", - "powered": "false" + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" } }, { - "id": 5938, + "id": 3709, "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "true" + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" } }, { - "id": 5939, + "id": 3710, "properties": { - "delay": "4", - "facing": "west", - "locked": "true", - "powered": "false" + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" } }, { - "id": 5940, + "id": 3711, "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "true" + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" } }, { - "id": 5941, + "id": 3712, "properties": { - "delay": "4", - "facing": "west", - "locked": "false", - "powered": "false" + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" } }, { - "id": 5942, + "id": 3713, "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "true" + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" } }, { - "id": 5943, + "id": 3714, "properties": { - "delay": "4", - "facing": "east", - "locked": "true", - "powered": "false" + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" } }, { - "id": 5944, + "id": 3715, "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "true" + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" } }, { - "id": 5945, + "id": 3716, "properties": { - "delay": "4", - "facing": "east", - "locked": "false", - "powered": "false" + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" } - } - ] - }, - "minecraft:repeating_command_block": { - "properties": { - "conditional": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 12515, + "id": 3717, "properties": { - "conditional": "true", - "facing": "north" + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" } }, { - "id": 12516, + "id": 3718, "properties": { - "conditional": "true", - "facing": "east" + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" } }, { - "id": 12517, + "id": 3719, "properties": { - "conditional": "true", - "facing": "south" + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" } }, { - "id": 12518, + "id": 3720, "properties": { - "conditional": "true", - "facing": "west" + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" } }, { - "id": 12519, + "id": 3721, "properties": { - "conditional": "true", - "facing": "up" + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" } }, { - "id": 12520, + "id": 3722, "properties": { - "conditional": "true", - "facing": "down" + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" } }, { - "default": true, - "id": 12521, + "id": 3723, "properties": { - "conditional": "false", - "facing": "north" + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" } }, { - "id": 12522, + "id": 3724, "properties": { - "conditional": "false", - "facing": "east" + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" } }, { - "id": 12523, + "id": 3725, "properties": { - "conditional": "false", - "facing": "south" + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" } }, { - "id": 12524, + "id": 3726, "properties": { - "conditional": "false", - "facing": "west" + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" } }, { - "id": 12525, + "id": 3727, "properties": { - "conditional": "false", - "facing": "up" + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" } }, { - "id": 12526, + "id": 3728, "properties": { - "conditional": "false", - "facing": "down" + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" } - } - ] - }, - "minecraft:respawn_anchor": { - "properties": { - "charges": [ - "0", - "1", - "2", - "3", - "4" - ] - }, - "states": [ + }, { - "default": true, - "id": 19450, + "id": 3729, "properties": { - "charges": "0" + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" } }, { - "id": 19451, + "id": 3730, "properties": { - "charges": "1" + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" } }, { - "id": 19452, + "id": 3731, "properties": { - "charges": "2" + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" } }, { - "id": 19453, + "id": 3732, "properties": { - "charges": "3" + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" } }, { - "id": 19454, + "id": 3733, "properties": { - "charges": "4" + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" } - } - ] - }, - "minecraft:rooted_dirt": { - "states": [ - { - "default": true, - "id": 22588 - } - ] - }, - "minecraft:rose_bush": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + }, { - "id": 10751, + "id": 3734, "properties": { - "half": "upper" + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" } }, { - "default": true, - "id": 10752, + "id": 3735, "properties": { - "half": "lower" + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" } - } - ] - }, - "minecraft:sand": { - "states": [ - { - "default": true, - "id": 112 - } - ] - }, - "minecraft:sandstone": { - "states": [ - { - "default": true, - "id": 535 - } - ] - }, - "minecraft:sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11234, + "id": 3736, "properties": { - "type": "top", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" } }, { - "id": 11235, + "id": 3737, "properties": { - "type": "top", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" } }, { - "id": 11236, + "id": 3738, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" } }, { - "default": true, - "id": 11237, + "id": 3739, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" } }, { - "id": 11238, + "id": 3740, "properties": { - "type": "double", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" } }, { - "id": 11239, + "id": 3741, "properties": { - "type": "double", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" } - } - ] - }, - "minecraft:sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 7431, + "id": 3742, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" } }, { - "id": 7432, + "id": 3743, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" } }, { - "id": 7433, + "id": 3744, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" } }, { - "id": 7434, + "id": 3745, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" } }, { - "id": 7435, + "id": 3746, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" } }, { - "id": 7436, + "id": 3747, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" } }, { - "id": 7437, + "id": 3748, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" } }, { - "id": 7438, + "id": 3749, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" } }, { - "id": 7439, + "id": 3750, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" } }, { - "id": 7440, + "id": 3751, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" } }, { - "id": 7441, + "id": 3752, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" } }, { - "default": true, - "id": 7442, + "id": 3753, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" } }, { - "id": 7443, + "id": 3754, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" } }, { - "id": 7444, + "id": 3755, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" } }, { - "id": 7445, + "id": 3756, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" } }, { - "id": 7446, + "id": 3757, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" } }, { - "id": 7447, + "id": 3758, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" } }, { - "id": 7448, + "id": 3759, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" } }, { - "id": 7449, + "id": 3760, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" } }, { - "id": 7450, + "id": 3761, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" } }, { - "id": 7451, + "id": 3762, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" } }, { - "id": 7452, + "id": 3763, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" } }, { - "id": 7453, + "id": 3764, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" } }, { - "id": 7454, + "id": 3765, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" } }, { - "id": 7455, + "id": 3766, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" } }, { - "id": 7456, + "id": 3767, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" } }, { - "id": 7457, + "id": 3768, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" } }, { - "id": 7458, + "id": 3769, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" } }, { - "id": 7459, + "id": 3770, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" } }, { - "id": 7460, + "id": 3771, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" } }, { - "id": 7461, + "id": 3772, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" } }, { - "id": 7462, + "id": 3773, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" } }, { - "id": 7463, + "id": 3774, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" } }, { - "id": 7464, + "id": 3775, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" } }, { - "id": 7465, + "id": 3776, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" } }, { - "id": 7466, + "id": 3777, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" } }, { - "id": 7467, + "id": 3778, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" } }, { - "id": 7468, + "id": 3779, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" } }, { - "id": 7469, + "id": 3780, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" } }, { - "id": 7470, + "id": 3781, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" } }, { - "id": 7471, + "id": 3782, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" } }, { - "id": 7472, + "id": 3783, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" } }, { - "id": 7473, + "id": 3784, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" } }, { - "id": 7474, + "id": 3785, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" } }, { - "id": 7475, + "id": 3786, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" } }, { - "id": 7476, + "id": 3787, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" } }, { - "id": 7477, + "id": 3788, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" } }, { - "id": 7478, + "id": 3789, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" } }, { - "id": 7479, + "id": 3790, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" } }, { - "id": 7480, + "id": 3791, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" } }, { - "id": 7481, + "id": 3792, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" } }, { - "id": 7482, + "id": 3793, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" } }, { - "id": 7483, + "id": 3794, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" } }, { - "id": 7484, + "id": 3795, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" } }, { - "id": 7485, + "id": 3796, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" } }, { - "id": 7486, + "id": 3797, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" } }, { - "id": 7487, + "id": 3798, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" } }, { - "id": 7488, + "id": 3799, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" } }, { - "id": 7489, + "id": 3800, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" } }, { - "id": 7490, + "id": 3801, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" } }, { - "id": 7491, + "id": 3802, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" } }, { - "id": 7492, + "id": 3803, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" } }, { - "id": 7493, + "id": 3804, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" } }, { - "id": 7494, + "id": 3805, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" } }, { - "id": 7495, + "id": 3806, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" } }, { - "id": 7496, + "id": 3807, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" } }, { - "id": 7497, + "id": 3808, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" } }, { - "id": 7498, + "id": 3809, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" } }, { - "id": 7499, + "id": 3810, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" } }, { - "id": 7500, + "id": 3811, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" } }, { - "id": 7501, + "id": 3812, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" } }, { - "id": 7502, + "id": 3813, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" } }, { - "id": 7503, + "id": 3814, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" } }, { - "id": 7504, + "id": 3815, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" } }, { - "id": 7505, + "id": 3816, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 7506, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" } }, { - "id": 7507, + "id": 3817, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" } }, { - "id": 7508, + "id": 3818, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" } }, { - "id": 7509, + "id": 3819, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" } }, { - "id": 7510, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sandstone_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ - { - "id": 17400, + "id": 3820, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "power": "13", + "south": "side", "west": "none" } }, { - "id": 17401, + "id": 3821, "properties": { - "east": "none", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17402, + "id": 3822, "properties": { - "east": "none", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "default": true, - "id": 17403, + "id": 3823, "properties": { - "east": "none", + "east": "side", "north": "none", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17404, + "id": 3824, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "power": "14", + "south": "up", + "west": "up" } }, { - "id": 17405, + "id": 3825, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "power": "14", + "south": "up", + "west": "side" } }, { - "id": 17406, + "id": 3826, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "power": "14", + "south": "up", "west": "none" } }, { - "id": 17407, + "id": 3827, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "power": "14", + "south": "side", + "west": "up" } }, { - "id": 17408, + "id": 3828, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "power": "14", + "south": "side", + "west": "side" } }, { - "id": 17409, + "id": 3829, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "power": "14", + "south": "side", "west": "none" } }, { - "id": 17410, + "id": 3830, "properties": { - "east": "none", + "east": "side", "north": "none", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17411, + "id": 3831, "properties": { - "east": "none", + "east": "side", "north": "none", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17412, + "id": 3832, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "power": "14", + "south": "none", "west": "none" } }, { - "id": 17413, + "id": 3833, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "power": "15", + "south": "up", + "west": "up" } }, { - "id": 17414, + "id": 3834, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "power": "15", + "south": "up", + "west": "side" } }, { - "id": 17415, + "id": 3835, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "power": "15", + "south": "up", "west": "none" } }, { - "id": 17416, + "id": 3836, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "power": "15", + "south": "side", + "west": "up" } }, { - "id": 17417, + "id": 3837, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "power": "15", + "south": "side", + "west": "side" } }, { - "id": 17418, + "id": 3838, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "power": "15", + "south": "side", "west": "none" } }, { - "id": 17419, + "id": 3839, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "power": "15", + "south": "none", + "west": "up" } }, { - "id": 17420, + "id": 3840, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "power": "15", + "south": "none", + "west": "side" } }, { - "id": 17421, + "id": 3841, "properties": { - "east": "none", + "east": "side", "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "power": "15", + "south": "none", "west": "none" } }, { - "id": 17422, + "id": 3842, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "0", + "south": "up", + "west": "up" } }, { - "id": 17423, + "id": 3843, "properties": { "east": "none", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "0", + "south": "up", + "west": "side" } }, { - "id": 17424, + "id": 3844, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "0", + "south": "up", "west": "none" } }, { - "id": 17425, + "id": 3845, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "0", + "south": "side", + "west": "up" } }, { - "id": 17426, + "id": 3846, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "0", + "south": "side", + "west": "side" } }, { - "id": 17427, + "id": 3847, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "up", + "power": "0", + "south": "side", "west": "none" } }, { - "id": 17428, + "id": 3848, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "0", + "south": "none", + "west": "up" } }, { - "id": 17429, + "id": 3849, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "0", + "south": "none", + "west": "side" } }, { - "id": 17430, + "id": 3850, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "0", + "south": "none", "west": "none" } }, { - "id": 17431, + "id": 3851, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "1", + "south": "up", + "west": "up" } }, { - "id": 17432, + "id": 3852, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "1", + "south": "up", + "west": "side" } }, { - "id": 17433, + "id": 3853, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "1", + "south": "up", "west": "none" } }, { - "id": 17434, + "id": 3854, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "1", + "south": "side", + "west": "up" } }, { - "id": 17435, + "id": 3855, "properties": { "east": "none", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "1", + "south": "side", + "west": "side" } }, { - "id": 17436, + "id": 3856, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "1", + "south": "side", "west": "none" } }, { - "id": 17437, + "id": 3857, "properties": { "east": "none", - "north": "low", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17438, + "id": 3858, "properties": { "east": "none", - "north": "low", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17439, + "id": 3859, "properties": { "east": "none", - "north": "low", + "north": "up", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17440, + "id": 3860, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "2", + "south": "up", + "west": "up" } }, { - "id": 17441, + "id": 3861, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "2", + "south": "up", + "west": "side" } }, { - "id": 17442, + "id": 3862, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "2", + "south": "up", "west": "none" } }, { - "id": 17443, + "id": 3863, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "2", + "south": "side", + "west": "up" } }, { - "id": 17444, + "id": 3864, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "2", + "south": "side", + "west": "side" } }, { - "id": 17445, + "id": 3865, "properties": { "east": "none", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "2", + "south": "side", "west": "none" } }, { - "id": 17446, + "id": 3866, "properties": { "east": "none", - "north": "low", + "north": "up", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17447, + "id": 3867, "properties": { "east": "none", - "north": "low", + "north": "up", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17448, + "id": 3868, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "2", + "south": "none", "west": "none" } }, { - "id": 17449, + "id": 3869, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "3", + "south": "up", + "west": "up" } }, { - "id": 17450, + "id": 3870, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "3", + "south": "up", + "west": "side" } }, { - "id": 17451, + "id": 3871, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "north": "up", + "power": "3", + "south": "up", "west": "none" } }, { - "id": 17452, + "id": 3872, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "3", + "south": "side", + "west": "up" } }, { - "id": 17453, + "id": 3873, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "3", + "south": "side", + "west": "side" } }, { - "id": 17454, + "id": 3874, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "3", + "south": "side", "west": "none" } }, { - "id": 17455, + "id": 3875, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "3", + "south": "none", + "west": "up" } }, { - "id": 17456, + "id": 3876, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "3", + "south": "none", + "west": "side" } }, { - "id": 17457, + "id": 3877, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "3", + "south": "none", "west": "none" } }, { - "id": 17458, + "id": 3878, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "4", + "south": "up", + "west": "up" } }, { - "id": 17459, + "id": 3879, "properties": { "east": "none", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "4", + "south": "up", + "west": "side" } }, { - "id": 17460, + "id": 3880, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "4", + "south": "up", "west": "none" } }, { - "id": 17461, + "id": 3881, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "4", + "south": "side", + "west": "up" } }, { - "id": 17462, + "id": 3882, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "4", + "south": "side", + "west": "side" } }, { - "id": 17463, + "id": 3883, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "up", + "power": "4", + "south": "side", "west": "none" } }, { - "id": 17464, + "id": 3884, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "4", + "south": "none", + "west": "up" } }, { - "id": 17465, + "id": 3885, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "4", + "south": "none", + "west": "side" } }, { - "id": 17466, + "id": 3886, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "4", + "south": "none", "west": "none" } }, { - "id": 17467, + "id": 3887, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "5", + "south": "up", + "west": "up" } }, { - "id": 17468, + "id": 3888, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "5", + "south": "up", + "west": "side" } }, { - "id": 17469, + "id": 3889, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "5", + "south": "up", "west": "none" } }, { - "id": 17470, + "id": 3890, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "5", + "south": "side", + "west": "up" } }, { - "id": 17471, + "id": 3891, "properties": { "east": "none", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "5", + "south": "side", + "west": "side" } }, { - "id": 17472, + "id": 3892, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "5", + "south": "side", "west": "none" } }, { - "id": 17473, + "id": 3893, "properties": { "east": "none", - "north": "tall", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17474, + "id": 3894, "properties": { "east": "none", - "north": "tall", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17475, + "id": 3895, "properties": { "east": "none", - "north": "tall", + "north": "up", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17476, + "id": 3896, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "6", + "south": "up", + "west": "up" } }, { - "id": 17477, + "id": 3897, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "6", + "south": "up", + "west": "side" } }, { - "id": 17478, + "id": 3898, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "6", + "south": "up", "west": "none" } }, { - "id": 17479, + "id": 3899, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "6", + "south": "side", + "west": "up" } }, { - "id": 17480, + "id": 3900, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "6", + "south": "side", + "west": "side" } }, { - "id": 17481, + "id": 3901, "properties": { "east": "none", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "6", + "south": "side", "west": "none" } }, { - "id": 17482, + "id": 3902, "properties": { "east": "none", - "north": "tall", + "north": "up", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17483, + "id": 3903, "properties": { "east": "none", - "north": "tall", + "north": "up", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17484, + "id": 3904, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "6", + "south": "none", "west": "none" } }, { - "id": 17485, + "id": 3905, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "7", + "south": "up", + "west": "up" } }, { - "id": 17486, + "id": 3906, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "7", + "south": "up", + "west": "side" } }, { - "id": 17487, + "id": 3907, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "north": "up", + "power": "7", + "south": "up", "west": "none" } }, { - "id": 17488, + "id": 3908, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "7", + "south": "side", + "west": "up" } }, { - "id": 17489, + "id": 3909, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "7", + "south": "side", + "west": "side" } }, { - "id": 17490, + "id": 3910, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "7", + "south": "side", "west": "none" } }, { - "id": 17491, + "id": 3911, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "7", + "south": "none", + "west": "up" } }, { - "id": 17492, + "id": 3912, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "7", + "south": "none", + "west": "side" } }, { - "id": 17493, + "id": 3913, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "7", + "south": "none", "west": "none" } }, { - "id": 17494, + "id": 3914, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "8", + "south": "up", + "west": "up" } }, { - "id": 17495, + "id": 3915, "properties": { "east": "none", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "8", + "south": "up", + "west": "side" } }, { - "id": 17496, + "id": 3916, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "north": "up", + "power": "8", + "south": "up", "west": "none" } }, { - "id": 17497, + "id": 3917, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "8", + "south": "side", + "west": "up" } }, { - "id": 17498, + "id": 3918, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "8", + "south": "side", + "west": "side" } }, { - "id": 17499, + "id": 3919, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "north": "up", + "power": "8", + "south": "side", "west": "none" } }, { - "id": 17500, + "id": 3920, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "8", + "south": "none", + "west": "up" } }, { - "id": 17501, + "id": 3921, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "8", + "south": "none", + "west": "side" } }, { - "id": 17502, + "id": 3922, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "north": "up", + "power": "8", + "south": "none", "west": "none" } }, { - "id": 17503, + "id": 3923, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "north": "up", + "power": "9", + "south": "up", + "west": "up" } }, { - "id": 17504, + "id": 3924, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "north": "up", + "power": "9", + "south": "up", + "west": "side" } }, { - "id": 17505, + "id": 3925, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "north": "up", + "power": "9", + "south": "up", "west": "none" } }, { - "id": 17506, + "id": 3926, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "north": "up", + "power": "9", + "south": "side", + "west": "up" } }, { - "id": 17507, + "id": 3927, "properties": { "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "north": "up", + "power": "9", + "south": "side", + "west": "side" } }, { - "id": 17508, + "id": 3928, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "9", + "south": "side", "west": "none" } }, { - "id": 17509, + "id": 3929, "properties": { - "east": "low", - "north": "none", + "east": "none", + "north": "up", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17510, + "id": 3930, "properties": { - "east": "low", - "north": "none", + "east": "none", + "north": "up", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17511, + "id": 3931, "properties": { - "east": "low", - "north": "none", + "east": "none", + "north": "up", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17512, + "id": 3932, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" } }, { - "id": 17513, + "id": 3933, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" } }, { - "id": 17514, + "id": 3934, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "10", + "south": "up", "west": "none" } }, { - "id": 17515, + "id": 3935, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" } }, { - "id": 17516, + "id": 3936, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" } }, { - "id": 17517, + "id": 3937, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "10", + "south": "side", "west": "none" } }, { - "id": 17518, + "id": 3938, "properties": { - "east": "low", - "north": "none", + "east": "none", + "north": "up", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17519, + "id": 3939, "properties": { - "east": "low", - "north": "none", + "east": "none", + "north": "up", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17520, + "id": 3940, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "10", + "south": "none", "west": "none" } }, { - "id": 17521, + "id": 3941, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" } }, { - "id": 17522, + "id": 3942, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" } }, { - "id": 17523, + "id": 3943, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "11", + "south": "up", "west": "none" } }, { - "id": 17524, + "id": 3944, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" } }, { - "id": 17525, + "id": 3945, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" } }, { - "id": 17526, + "id": 3946, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "11", + "south": "side", "west": "none" } }, { - "id": 17527, + "id": 3947, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" } }, { - "id": 17528, + "id": 3948, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" } }, { - "id": 17529, + "id": 3949, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "11", + "south": "none", "west": "none" } }, { - "id": 17530, + "id": 3950, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" } }, { - "id": 17531, + "id": 3951, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" } }, { - "id": 17532, + "id": 3952, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "12", + "south": "up", "west": "none" } }, { - "id": 17533, + "id": 3953, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" } }, { - "id": 17534, + "id": 3954, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" } }, { - "id": 17535, + "id": 3955, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "12", + "south": "side", "west": "none" } }, { - "id": 17536, + "id": 3956, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" } }, { - "id": 17537, + "id": 3957, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" } }, { - "id": 17538, + "id": 3958, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "12", + "south": "none", "west": "none" } }, { - "id": 17539, + "id": 3959, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" } }, { - "id": 17540, + "id": 3960, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" } }, { - "id": 17541, + "id": 3961, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "13", + "south": "up", "west": "none" } }, { - "id": 17542, + "id": 3962, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" } }, { - "id": 17543, + "id": 3963, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" } }, { - "id": 17544, + "id": 3964, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "13", + "south": "side", "west": "none" } }, { - "id": 17545, + "id": 3965, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "up", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17546, + "id": 3966, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "up", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17547, + "id": 3967, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "up", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17548, + "id": 3968, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" } }, { - "id": 17549, + "id": 3969, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" } }, { - "id": 17550, + "id": 3970, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "14", + "south": "up", "west": "none" } }, { - "id": 17551, + "id": 3971, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" } }, { - "id": 17552, + "id": 3972, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" } }, { - "id": 17553, + "id": 3973, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "14", + "south": "side", "west": "none" } }, { - "id": 17554, + "id": 3974, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "up", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17555, + "id": 3975, "properties": { - "east": "low", - "north": "low", + "east": "none", + "north": "up", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17556, + "id": 3976, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "14", + "south": "none", "west": "none" } }, { - "id": 17557, + "id": 3977, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" } }, { - "id": 17558, + "id": 3978, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" } }, { - "id": 17559, + "id": 3979, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "15", + "south": "up", "west": "none" } }, { - "id": 17560, + "id": 3980, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" } }, { - "id": 17561, + "id": 3981, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" } }, { - "id": 17562, + "id": 3982, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "up", + "power": "15", + "south": "side", "west": "none" } }, { - "id": 17563, + "id": 3983, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" } }, { - "id": 17564, + "id": 3984, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" } }, { - "id": 17565, + "id": 3985, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "up", + "power": "15", + "south": "none", "west": "none" } }, { - "id": 17566, + "id": 3986, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" } }, { - "id": 17567, + "id": 3987, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" } }, { - "id": 17568, + "id": 3988, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "0", + "south": "up", "west": "none" } }, { - "id": 17569, + "id": 3989, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" } }, { - "id": 17570, + "id": 3990, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" } }, { - "id": 17571, + "id": 3991, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "0", + "south": "side", "west": "none" } }, { - "id": 17572, + "id": 3992, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" } }, { - "id": 17573, + "id": 3993, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" } }, { - "id": 17574, + "id": 3994, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "0", + "south": "none", "west": "none" } }, { - "id": 17575, + "id": 3995, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" } }, { - "id": 17576, + "id": 3996, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" } }, { - "id": 17577, + "id": 3997, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "1", + "south": "up", "west": "none" } }, { - "id": 17578, + "id": 3998, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" } }, { - "id": 17579, + "id": 3999, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" } }, { - "id": 17580, + "id": 4000, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "1", + "south": "side", "west": "none" } }, { - "id": 17581, + "id": 4001, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "side", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17582, + "id": 4002, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "side", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17583, + "id": 4003, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "side", + "power": "1", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17584, + "id": 4004, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" } }, { - "id": 17585, + "id": 4005, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" } }, { - "id": 17586, + "id": 4006, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "2", + "south": "up", "west": "none" } }, { - "id": 17587, + "id": 4007, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" } }, { - "id": 17588, + "id": 4008, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" } }, { - "id": 17589, + "id": 4009, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "2", + "south": "side", "west": "none" } }, { - "id": 17590, + "id": 4010, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "side", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17591, + "id": 4011, "properties": { - "east": "low", - "north": "tall", + "east": "none", + "north": "side", + "power": "2", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17592, + "id": 4012, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "2", + "south": "none", "west": "none" } }, { - "id": 17593, + "id": 4013, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" } }, { - "id": 17594, + "id": 4014, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" } }, { - "id": 17595, + "id": 4015, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "3", + "south": "up", "west": "none" } }, { - "id": 17596, + "id": 4016, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" } }, { - "id": 17597, + "id": 4017, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" } }, { - "id": 17598, + "id": 4018, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "3", + "south": "side", "west": "none" } }, { - "id": 17599, + "id": 4019, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" } }, { - "id": 17600, + "id": 4020, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" } }, { - "id": 17601, + "id": 4021, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "3", + "south": "none", "west": "none" } }, { - "id": 17602, + "id": 4022, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" } }, { - "id": 17603, + "id": 4023, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" } }, { - "id": 17604, + "id": 4024, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "4", + "south": "up", "west": "none" } }, { - "id": 17605, + "id": 4025, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" } }, { - "id": 17606, + "id": 4026, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" } }, { - "id": 17607, + "id": 4027, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "4", + "south": "side", "west": "none" } }, { - "id": 17608, + "id": 4028, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" } }, { - "id": 17609, + "id": 4029, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" } }, { - "id": 17610, + "id": 4030, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "4", + "south": "none", "west": "none" } }, { - "id": 17611, + "id": 4031, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" } }, { - "id": 17612, + "id": 4032, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" } }, { - "id": 17613, + "id": 4033, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "5", + "south": "up", "west": "none" } }, { - "id": 17614, + "id": 4034, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" } }, { - "id": 17615, + "id": 4035, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" } }, { - "id": 17616, + "id": 4036, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "5", + "south": "side", "west": "none" } }, { - "id": 17617, + "id": 4037, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17618, + "id": 4038, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17619, + "id": 4039, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "side", + "power": "5", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17620, + "id": 4040, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" } }, { - "id": 17621, + "id": 4041, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" } }, { - "id": 17622, + "id": 4042, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "6", + "south": "up", "west": "none" } }, { - "id": 17623, + "id": 4043, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" } }, { - "id": 17624, + "id": 4044, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" } }, { - "id": 17625, + "id": 4045, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "6", + "south": "side", "west": "none" } }, { - "id": 17626, + "id": 4046, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "side", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17627, + "id": 4047, "properties": { - "east": "tall", - "north": "none", + "east": "none", + "north": "side", + "power": "6", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17628, + "id": 4048, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "6", + "south": "none", "west": "none" } }, { - "id": 17629, + "id": 4049, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" } }, { - "id": 17630, + "id": 4050, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" } }, { - "id": 17631, + "id": 4051, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "7", + "south": "up", "west": "none" } }, { - "id": 17632, + "id": 4052, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" } }, { - "id": 17633, + "id": 4053, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" } }, { - "id": 17634, + "id": 4054, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "7", + "south": "side", "west": "none" } }, { - "id": 17635, + "id": 4055, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" } }, { - "id": 17636, + "id": 4056, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" } }, { - "id": 17637, + "id": 4057, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "7", + "south": "none", "west": "none" } }, { - "id": 17638, + "id": 4058, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" } }, { - "id": 17639, + "id": 4059, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" } }, { - "id": 17640, + "id": 4060, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "8", + "south": "up", "west": "none" } }, { - "id": 17641, + "id": 4061, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" } }, { - "id": 17642, + "id": 4062, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" } }, { - "id": 17643, + "id": 4063, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "8", + "south": "side", "west": "none" } }, { - "id": 17644, + "id": 4064, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" } }, { - "id": 17645, + "id": 4065, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" } }, { - "id": 17646, + "id": 4066, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "8", + "south": "none", "west": "none" } }, { - "id": 17647, + "id": 4067, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" } }, { - "id": 17648, + "id": 4068, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" } }, { - "id": 17649, + "id": 4069, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "9", + "south": "up", "west": "none" } }, { - "id": 17650, + "id": 4070, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" } }, { - "id": 17651, + "id": 4071, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" } }, { - "id": 17652, + "id": 4072, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "9", + "south": "side", "west": "none" } }, { - "id": 17653, + "id": 4073, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17654, + "id": 4074, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17655, + "id": 4075, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "side", + "power": "9", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17656, + "id": 4076, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" } }, { - "id": 17657, + "id": 4077, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" } }, { - "id": 17658, + "id": 4078, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "10", + "south": "up", "west": "none" } }, { - "id": 17659, + "id": 4079, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" } }, { - "id": 17660, + "id": 4080, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" } }, { - "id": 17661, + "id": 4081, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "10", + "south": "side", "west": "none" } }, { - "id": 17662, + "id": 4082, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "side", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17663, + "id": 4083, "properties": { - "east": "tall", - "north": "low", + "east": "none", + "north": "side", + "power": "10", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17664, + "id": 4084, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "10", + "south": "none", "west": "none" } }, { - "id": 17665, + "id": 4085, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" - } - }, + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, { - "id": 17666, + "id": 4086, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" } }, { - "id": 17667, + "id": 4087, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "11", + "south": "up", "west": "none" } }, { - "id": 17668, + "id": 4088, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" } }, { - "id": 17669, + "id": 4089, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" } }, { - "id": 17670, + "id": 4090, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "11", + "south": "side", "west": "none" } }, { - "id": 17671, + "id": 4091, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" } }, { - "id": 17672, + "id": 4092, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" } }, { - "id": 17673, + "id": 4093, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "11", + "south": "none", "west": "none" } }, { - "id": 17674, + "id": 4094, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" } }, { - "id": 17675, + "id": 4095, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" } }, { - "id": 17676, + "id": 4096, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "12", + "south": "up", "west": "none" } }, { - "id": 17677, + "id": 4097, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" } }, { - "id": 17678, + "id": 4098, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" } }, { - "id": 17679, + "id": 4099, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "12", + "south": "side", "west": "none" } }, { - "id": 17680, + "id": 4100, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" } }, { - "id": 17681, + "id": 4101, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" } }, { - "id": 17682, + "id": 4102, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "12", + "south": "none", "west": "none" } }, { - "id": 17683, + "id": 4103, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" } }, { - "id": 17684, + "id": 4104, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" } }, { - "id": 17685, + "id": 4105, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "13", + "south": "up", "west": "none" } }, { - "id": 17686, + "id": 4106, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" } }, { - "id": 17687, + "id": 4107, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" } }, { - "id": 17688, + "id": 4108, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "13", + "south": "side", "west": "none" } }, { - "id": 17689, + "id": 4109, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "west": "up" } }, { - "id": 17690, + "id": 4110, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "west": "side" } }, { - "id": 17691, + "id": 4111, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "side", + "power": "13", "south": "none", - "up": "true", - "waterlogged": "false", "west": "none" } }, { - "id": 17692, + "id": 4112, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" } }, { - "id": 17693, + "id": 4113, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" } }, { - "id": 17694, + "id": 4114, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "14", + "south": "up", "west": "none" } }, { - "id": 17695, + "id": 4115, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" } }, { - "id": 17696, + "id": 4116, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" } }, { - "id": 17697, + "id": 4117, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "14", + "south": "side", "west": "none" } }, { - "id": 17698, + "id": 4118, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "side", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "west": "up" } }, { - "id": 17699, + "id": 4119, "properties": { - "east": "tall", - "north": "tall", + "east": "none", + "north": "side", + "power": "14", "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "west": "side" } }, { - "id": 17700, + "id": 4120, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "14", + "south": "none", "west": "none" } }, { - "id": 17701, + "id": 4121, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" } }, { - "id": 17702, + "id": 4122, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" } }, { - "id": 17703, + "id": 4123, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "15", + "south": "up", "west": "none" } }, { - "id": 17704, + "id": 4124, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" } }, { - "id": 17705, + "id": 4125, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" } }, { - "id": 17706, + "id": 4126, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "side", + "power": "15", + "south": "side", "west": "none" } }, { - "id": 17707, + "id": 4127, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" } }, { - "id": 17708, + "id": 4128, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" } }, { - "id": 17709, + "id": 4129, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "side", + "power": "15", + "south": "none", "west": "none" } }, { - "id": 17710, + "id": 4130, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" } }, { - "id": 17711, + "id": 4131, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" } }, { - "id": 17712, + "id": 4132, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "0", + "south": "up", "west": "none" } }, { - "id": 17713, + "id": 4133, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" } }, { - "id": 17714, + "id": 4134, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" } }, { - "id": 17715, + "id": 4135, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "0", + "south": "side", "west": "none" } }, { - "id": 17716, + "id": 4136, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" } }, { - "id": 17717, + "id": 4137, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" } }, { - "id": 17718, + "default": true, + "id": 4138, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", + "east": "none", + "north": "none", + "power": "0", + "south": "none", "west": "none" } }, { - "id": 17719, + "id": 4139, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" } }, { - "id": 17720, + "id": 4140, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" } }, { - "id": 17721, + "id": 4141, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", + "east": "none", + "north": "none", + "power": "1", + "south": "up", "west": "none" } }, { - "id": 17722, + "id": 4142, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" } }, { - "id": 17723, + "id": 4143, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" } - } - ] - }, - "minecraft:scaffolding": { - "properties": { - "bottom": [ - "true", - "false" - ], - "distance": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18372, + "id": 4144, "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" } }, { - "id": 18373, + "id": 4145, "properties": { - "bottom": "true", - "distance": "0", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" } }, { - "id": 18374, + "id": 4146, "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" } }, { - "id": 18375, + "id": 4147, "properties": { - "bottom": "true", - "distance": "1", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" } }, { - "id": 18376, + "id": 4148, "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" } }, { - "id": 18377, + "id": 4149, "properties": { - "bottom": "true", - "distance": "2", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" } }, { - "id": 18378, + "id": 4150, "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" } }, { - "id": 18379, + "id": 4151, "properties": { - "bottom": "true", - "distance": "3", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" } }, { - "id": 18380, + "id": 4152, "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" } }, { - "id": 18381, + "id": 4153, "properties": { - "bottom": "true", - "distance": "4", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" } }, { - "id": 18382, + "id": 4154, "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" } }, { - "id": 18383, + "id": 4155, "properties": { - "bottom": "true", - "distance": "5", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" } }, { - "id": 18384, + "id": 4156, "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" } }, { - "id": 18385, + "id": 4157, "properties": { - "bottom": "true", - "distance": "6", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" } }, { - "id": 18386, + "id": 4158, "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" } }, { - "id": 18387, + "id": 4159, "properties": { - "bottom": "true", - "distance": "7", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" } }, { - "id": 18388, + "id": 4160, "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" } }, { - "id": 18389, + "id": 4161, "properties": { - "bottom": "false", - "distance": "0", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" } }, { - "id": 18390, + "id": 4162, "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" } }, { - "id": 18391, + "id": 4163, "properties": { - "bottom": "false", - "distance": "1", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" } }, { - "id": 18392, + "id": 4164, "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" } }, { - "id": 18393, + "id": 4165, "properties": { - "bottom": "false", - "distance": "2", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" } }, { - "id": 18394, + "id": 4166, "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" } }, { - "id": 18395, + "id": 4167, "properties": { - "bottom": "false", - "distance": "3", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" } }, { - "id": 18396, + "id": 4168, "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" } }, { - "id": 18397, + "id": 4169, "properties": { - "bottom": "false", - "distance": "4", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" } }, { - "id": 18398, + "id": 4170, "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" } }, { - "id": 18399, + "id": 4171, "properties": { - "bottom": "false", - "distance": "5", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" } }, { - "id": 18400, + "id": 4172, "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "true" - } - }, - { - "id": 18401, - "properties": { - "bottom": "false", - "distance": "6", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" } }, { - "id": 18402, + "id": 4173, "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" } }, { - "default": true, - "id": 18403, - "properties": { - "bottom": "false", - "distance": "7", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sculk": { - "states": [ - { - "default": true, - "id": 21565 - } - ] - }, - "minecraft:sculk_catalyst": { - "properties": { - "bloom": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21694, + "id": 4174, "properties": { - "bloom": "true" + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" } }, { - "default": true, - "id": 21695, - "properties": { - "bloom": "false" - } - } - ] - }, - "minecraft:sculk_sensor": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "sculk_sensor_phase": [ - "inactive", - "active", - "cooldown" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 21085, + "id": 4175, "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" } }, { - "default": true, - "id": 21086, + "id": 4176, "properties": { - "power": "0", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" } }, { - "id": 21087, + "id": 4177, "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" } }, { - "id": 21088, + "id": 4178, "properties": { - "power": "0", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" } }, { - "id": 21089, + "id": 4179, "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" } }, { - "id": 21090, + "id": 4180, "properties": { - "power": "0", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" } }, { - "id": 21091, + "id": 4181, "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" } }, { - "id": 21092, + "id": 4182, "properties": { - "power": "1", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" } }, { - "id": 21093, + "id": 4183, "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" } }, { - "id": 21094, + "id": 4184, "properties": { - "power": "1", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" } }, { - "id": 21095, + "id": 4185, "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" } }, { - "id": 21096, + "id": 4186, "properties": { - "power": "1", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" } }, { - "id": 21097, + "id": 4187, "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" } }, { - "id": 21098, + "id": 4188, "properties": { - "power": "2", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" } }, { - "id": 21099, + "id": 4189, "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" } }, { - "id": 21100, + "id": 4190, "properties": { - "power": "2", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" } }, { - "id": 21101, + "id": 4191, "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" } }, { - "id": 21102, + "id": 4192, "properties": { - "power": "2", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" } }, { - "id": 21103, + "id": 4193, "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" } }, { - "id": 21104, + "id": 4194, "properties": { - "power": "3", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" } }, { - "id": 21105, + "id": 4195, "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" } }, { - "id": 21106, + "id": 4196, "properties": { - "power": "3", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" } }, { - "id": 21107, + "id": 4197, "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" } }, { - "id": 21108, + "id": 4198, "properties": { - "power": "3", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" } }, { - "id": 21109, + "id": 4199, "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" } }, { - "id": 21110, + "id": 4200, "properties": { - "power": "4", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" } }, { - "id": 21111, + "id": 4201, "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" } }, { - "id": 21112, + "id": 4202, "properties": { - "power": "4", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" } }, { - "id": 21113, + "id": 4203, "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" } }, { - "id": 21114, + "id": 4204, "properties": { - "power": "4", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" } }, { - "id": 21115, + "id": 4205, "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" } }, { - "id": 21116, + "id": 4206, "properties": { - "power": "5", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" } }, { - "id": 21117, + "id": 4207, "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" } }, { - "id": 21118, + "id": 4208, "properties": { - "power": "5", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" } }, { - "id": 21119, + "id": 4209, "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" } }, { - "id": 21120, + "id": 4210, "properties": { - "power": "5", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" } }, { - "id": 21121, + "id": 4211, "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" } }, { - "id": 21122, + "id": 4212, "properties": { - "power": "6", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" } }, { - "id": 21123, + "id": 4213, "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" } }, { - "id": 21124, + "id": 4214, "properties": { - "power": "6", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" } }, { - "id": 21125, + "id": 4215, "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" } }, { - "id": 21126, + "id": 4216, "properties": { - "power": "6", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" } }, { - "id": 21127, + "id": 4217, "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" } }, { - "id": 21128, + "id": 4218, "properties": { - "power": "7", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" } }, { - "id": 21129, + "id": 4219, "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" } }, { - "id": 21130, + "id": 4220, "properties": { - "power": "7", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" } }, { - "id": 21131, + "id": 4221, "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" } }, { - "id": 21132, + "id": 4222, "properties": { - "power": "7", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" } }, { - "id": 21133, + "id": 4223, "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" } }, { - "id": 21134, + "id": 4224, "properties": { - "power": "8", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" } }, { - "id": 21135, + "id": 4225, "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" } }, { - "id": 21136, + "id": 4226, "properties": { - "power": "8", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" } }, { - "id": 21137, + "id": 4227, "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" } }, { - "id": 21138, + "id": 4228, "properties": { - "power": "8", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" } }, { - "id": 21139, + "id": 4229, "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" } }, { - "id": 21140, + "id": 4230, "properties": { - "power": "9", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" } }, { - "id": 21141, + "id": 4231, "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" } }, { - "id": 21142, + "id": 4232, "properties": { - "power": "9", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" } }, { - "id": 21143, + "id": 4233, "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" } }, { - "id": 21144, + "id": 4234, "properties": { - "power": "9", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" } }, { - "id": 21145, + "id": 4235, "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" } }, { - "id": 21146, + "id": 4236, "properties": { - "power": "10", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" } }, { - "id": 21147, + "id": 4237, "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" } }, { - "id": 21148, + "id": 4238, "properties": { - "power": "10", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" } }, { - "id": 21149, + "id": 4239, "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" } }, { - "id": 21150, + "id": 4240, "properties": { - "power": "10", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" } }, { - "id": 21151, + "id": 4241, "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" } }, { - "id": 21152, + "id": 4242, "properties": { - "power": "11", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" } }, { - "id": 21153, + "id": 4243, "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" } }, { - "id": 21154, + "id": 4244, "properties": { - "power": "11", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" } }, { - "id": 21155, + "id": 4245, "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" } }, { - "id": 21156, + "id": 4246, "properties": { - "power": "11", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" } }, { - "id": 21157, + "id": 4247, "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" } }, { - "id": 21158, + "id": 4248, "properties": { - "power": "12", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" } }, { - "id": 21159, + "id": 4249, "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" } }, { - "id": 21160, + "id": 4250, "properties": { - "power": "12", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" } }, { - "id": 21161, + "id": 4251, "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" } }, { - "id": 21162, + "id": 4252, "properties": { - "power": "12", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" } }, { - "id": 21163, + "id": 4253, "properties": { + "east": "none", + "north": "none", "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "south": "none", + "west": "up" } }, { - "id": 21164, + "id": 4254, "properties": { + "east": "none", + "north": "none", "power": "13", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "south": "none", + "west": "side" } }, { - "id": 21165, + "id": 4255, "properties": { + "east": "none", + "north": "none", "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "south": "none", + "west": "none" } }, { - "id": 21166, + "id": 4256, "properties": { - "power": "13", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" } }, { - "id": 21167, + "id": 4257, "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" } }, { - "id": 21168, + "id": 4258, "properties": { - "power": "13", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" } }, { - "id": 21169, + "id": 4259, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "south": "side", + "west": "up" } }, { - "id": 21170, + "id": 4260, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "south": "side", + "west": "side" } }, { - "id": 21171, + "id": 4261, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "south": "side", + "west": "none" } }, { - "id": 21172, + "id": 4262, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "south": "none", + "west": "up" } }, { - "id": 21173, + "id": 4263, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "south": "none", + "west": "side" } }, { - "id": 21174, + "id": 4264, "properties": { + "east": "none", + "north": "none", "power": "14", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "south": "none", + "west": "none" } }, { - "id": 21175, + "id": 4265, "properties": { + "east": "none", + "north": "none", "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "true" + "south": "up", + "west": "up" } }, { - "id": 21176, + "id": 4266, "properties": { + "east": "none", + "north": "none", "power": "15", - "sculk_sensor_phase": "inactive", - "waterlogged": "false" + "south": "up", + "west": "side" } }, { - "id": 21177, + "id": 4267, "properties": { + "east": "none", + "north": "none", "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "true" + "south": "up", + "west": "none" } }, { - "id": 21178, + "id": 4268, "properties": { + "east": "none", + "north": "none", "power": "15", - "sculk_sensor_phase": "active", - "waterlogged": "false" + "south": "side", + "west": "up" } }, { - "id": 21179, + "id": 4269, "properties": { + "east": "none", + "north": "none", "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "true" + "south": "side", + "west": "side" } }, { - "id": 21180, + "id": 4270, "properties": { - "power": "15", - "sculk_sensor_phase": "cooldown", - "waterlogged": "false" + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4271, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4272, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4273, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" } } ] }, - "minecraft:sculk_shrieker": { + "minecraft:reinforced_deepslate": { + "states": [ + { + "default": true, + "id": 26573 + } + ] + }, + "minecraft:repeater": { "properties": { - "can_summon": [ - "true", - "false" + "delay": [ + "1", + "2", + "3", + "4" ], - "shrieking": [ + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ "true", "false" ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 21696, + "id": 5881, "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "true" + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" } }, { - "id": 21697, + "id": 5882, "properties": { - "can_summon": "true", - "shrieking": "true", - "waterlogged": "false" + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" } }, { - "id": 21698, + "id": 5883, "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "true" + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" } }, { - "id": 21699, + "default": true, + "id": 5884, "properties": { - "can_summon": "true", - "shrieking": "false", - "waterlogged": "false" + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" } }, { - "id": 21700, + "id": 5885, "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "true" + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" } }, { - "id": 21701, + "id": 5886, "properties": { - "can_summon": "false", - "shrieking": "true", - "waterlogged": "false" + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" } }, { - "id": 21702, + "id": 5887, "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "true" + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" } }, { - "default": true, - "id": 21703, + "id": 5888, "properties": { - "can_summon": "false", - "shrieking": "false", - "waterlogged": "false" + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" } - } - ] - }, - "minecraft:sculk_vein": { - "properties": { - "down": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21566, + "id": 5889, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" } }, { - "id": 21567, + "id": 5890, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" } }, { - "id": 21568, + "id": 5891, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" } }, { - "id": 21569, + "id": 5892, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" } }, { - "id": 21570, + "id": 5893, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" } }, { - "id": 21571, + "id": 5894, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" } }, { - "id": 21572, + "id": 5895, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" } }, { - "id": 21573, + "id": 5896, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" } }, { - "id": 21574, + "id": 5897, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" } }, { - "id": 21575, + "id": 5898, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" } }, { - "id": 21576, + "id": 5899, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" } }, { - "id": 21577, + "id": 5900, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" } }, { - "id": 21578, + "id": 5901, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" } }, { - "id": 21579, + "id": 5902, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" } }, { - "id": 21580, + "id": 5903, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" } }, { - "id": 21581, + "id": 5904, "properties": { - "down": "true", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" } }, { - "id": 21582, + "id": 5905, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" } }, { - "id": 21583, + "id": 5906, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" } }, { - "id": 21584, + "id": 5907, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" } }, { - "id": 21585, + "id": 5908, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" } }, { - "id": 21586, + "id": 5909, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" } }, { - "id": 21587, + "id": 5910, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" } }, { - "id": 21588, + "id": 5911, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" } }, { - "id": 21589, + "id": 5912, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" } }, { - "id": 21590, + "id": 5913, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" } }, { - "id": 21591, + "id": 5914, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" } }, { - "id": 21592, + "id": 5915, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" } }, { - "id": 21593, + "id": 5916, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" } }, { - "id": 21594, + "id": 5917, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" } }, { - "id": 21595, + "id": 5918, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" } }, { - "id": 21596, + "id": 5919, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" } }, { - "id": 21597, + "id": 5920, "properties": { - "down": "true", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" } }, { - "id": 21598, + "id": 5921, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" } }, { - "id": 21599, + "id": 5922, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" } }, { - "id": 21600, + "id": 5923, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" } }, { - "id": 21601, + "id": 5924, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" } }, { - "id": 21602, + "id": 5925, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" } }, { - "id": 21603, + "id": 5926, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" } }, { - "id": 21604, + "id": 5927, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" } }, { - "id": 21605, + "id": 5928, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" } }, { - "id": 21606, + "id": 5929, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" } }, { - "id": 21607, + "id": 5930, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" } }, { - "id": 21608, + "id": 5931, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" } }, { - "id": 21609, + "id": 5932, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" } }, { - "id": 21610, + "id": 5933, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" } }, { - "id": 21611, + "id": 5934, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" } }, { - "id": 21612, + "id": 5935, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" } }, { - "id": 21613, + "id": 5936, "properties": { - "down": "true", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" } }, { - "id": 21614, + "id": 5937, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" } }, { - "id": 21615, + "id": 5938, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" } }, { - "id": 21616, + "id": 5939, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" } }, { - "id": 21617, + "id": 5940, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" } }, { - "id": 21618, + "id": 5941, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" } }, { - "id": 21619, + "id": 5942, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" } }, { - "id": 21620, + "id": 5943, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" } }, { - "id": 21621, + "id": 5944, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:repeating_command_block": { + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ { - "id": 21622, + "id": 12515, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "conditional": "true", + "facing": "north" } }, { - "id": 21623, + "id": 12516, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "conditional": "true", + "facing": "east" } }, { - "id": 21624, + "id": 12517, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "conditional": "true", + "facing": "south" } }, { - "id": 21625, + "id": 12518, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "conditional": "true", + "facing": "west" } }, { - "id": 21626, + "id": 12519, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "conditional": "true", + "facing": "up" } }, { - "id": 21627, + "id": 12520, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "conditional": "true", + "facing": "down" } }, { - "id": 21628, + "default": true, + "id": 12521, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "conditional": "false", + "facing": "north" } }, { - "id": 21629, + "id": 12522, "properties": { - "down": "true", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "conditional": "false", + "facing": "east" } }, { - "id": 21630, + "id": 12523, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "conditional": "false", + "facing": "south" } }, { - "id": 21631, + "id": 12524, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12525, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12526, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:respawn_anchor": { + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 19450, + "properties": { + "charges": "0" + } + }, + { + "id": 19451, + "properties": { + "charges": "1" + } + }, + { + "id": 19452, + "properties": { + "charges": "2" + } + }, + { + "id": 19453, + "properties": { + "charges": "3" + } + }, + { + "id": 19454, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "states": [ + { + "default": true, + "id": 24902 + } + ] + }, + "minecraft:rose_bush": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10751, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10752, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "states": [ + { + "default": true, + "id": 112 + } + ] + }, + "minecraft:sandstone": { + "states": [ + { + "default": true, + "id": 535 + } + ] + }, + "minecraft:sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11234, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11235, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11236, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11237, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11238, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11239, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7432, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7450, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7470, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7490, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7500, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17474, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17475, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17476, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17484, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17485, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17487, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17488, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17496, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17497, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17498, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17499, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17500, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17508, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17509, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17510, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17511, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17512, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17520, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17521, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17523, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17524, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17532, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17533, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17534, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17535, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17536, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17544, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17545, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17546, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17547, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17557, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17558, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17559, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17560, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17568, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17569, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17570, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17571, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17572, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17580, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17581, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17582, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17583, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17584, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17592, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17593, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17595, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17596, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17604, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17605, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17606, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17607, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17608, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18372, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18373, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18374, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18375, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18376, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18377, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18378, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18379, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18380, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18381, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18382, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18383, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18384, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18385, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18386, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 18387, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 18388, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18389, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18390, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18391, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18392, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18393, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18394, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18395, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18396, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18397, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18398, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18399, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18400, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18401, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18402, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18403, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "states": [ + { + "default": true, + "id": 22799 + } + ] + }, + "minecraft:sculk_catalyst": { + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22928, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 22929, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22319, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22320, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22321, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22322, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22323, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22324, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22325, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22326, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22327, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22328, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22329, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22330, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22331, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22332, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22333, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22334, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22335, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22336, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22337, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22338, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22339, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22340, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22341, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22342, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22343, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22344, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22345, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22346, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22347, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22348, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22349, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22350, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22351, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22352, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22353, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22354, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22355, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22356, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22357, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22358, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22359, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22360, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22361, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22362, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22363, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22364, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22365, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22366, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22367, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22368, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22369, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22370, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22371, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22372, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22373, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22374, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22375, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22376, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22377, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22378, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22379, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22380, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22381, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22382, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22383, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22384, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22385, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22386, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22387, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22388, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22389, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22390, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22391, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22392, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22393, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22394, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22395, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22396, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22397, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22398, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22399, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22400, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22401, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22402, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22403, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22404, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22405, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22406, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22407, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22408, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22409, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22410, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22411, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22412, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22413, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22414, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22930, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22931, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22932, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 22933, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 22934, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22935, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22936, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22937, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22800, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22801, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22802, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22803, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22804, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22805, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22806, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22807, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22808, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22809, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22810, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22811, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22812, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22813, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22814, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22815, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22816, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22817, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22818, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22819, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22820, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22821, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22822, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22823, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22824, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22825, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22826, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22827, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22828, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22829, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22830, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22831, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22832, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22833, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22834, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22835, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22836, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22837, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22838, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22839, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22840, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22841, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22842, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22843, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22844, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22845, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22846, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22847, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22848, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22849, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22850, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22851, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22852, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22853, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22854, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22855, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22856, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22857, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22858, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22859, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22860, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22861, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22862, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22863, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22864, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22865, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22866, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22867, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22868, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22869, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22870, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22871, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22872, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22873, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22874, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22875, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22876, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22877, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22878, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22879, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22880, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22881, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22882, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22883, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22884, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22885, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22886, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22887, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22888, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22889, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22890, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22891, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22892, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22893, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22894, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22895, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22896, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22897, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22898, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22899, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22900, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22901, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22902, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22903, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22904, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22905, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22906, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22907, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22908, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22909, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22910, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22911, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22912, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22913, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22914, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22915, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22916, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22917, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22918, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22919, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22920, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22921, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22922, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22923, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22924, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22925, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22926, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 22927, "properties": { "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "states": [ + { + "default": true, + "id": 10724 + } + ] + }, + "minecraft:sea_pickle": { + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12933, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 12934, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 12935, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 12936, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 12937, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 12938, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 12939, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 12940, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "states": [ + { + "default": true, + "id": 2008 + } + ] + }, + "minecraft:short_grass": { + "states": [ + { + "default": true, + "id": 2005 + } + ] + }, + "minecraft:shroomlight": { + "states": [ + { + "default": true, + "id": 18610 + } + ] + }, + "minecraft:shulker_box": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12562, + "properties": { + "facing": "north" + } + }, + { + "id": 12563, + "properties": { + "facing": "east" + } + }, + { + "id": 12564, + "properties": { + "facing": "south" + } + }, + { + "id": 12565, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12566, + "properties": { + "facing": "up" + } + }, + { + "id": 12567, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8827, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8828, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8829, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8830, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8831, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8832, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8833, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8834, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8835, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8836, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8837, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8838, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8839, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8840, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8841, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 8842, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 8843, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 8844, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 8845, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 8846, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 8847, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 8848, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 8849, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 8850, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 8851, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 8852, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 8853, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 8854, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 8855, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 8856, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 8857, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 8858, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8859, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8860, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8861, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8862, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8863, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 8864, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 8865, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 8866, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:slime_block": { + "states": [ + { + "default": true, + "id": 10364 + } + ] + }, + "minecraft:small_amethyst_bud": { + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21069, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21070, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21071, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21072, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21073, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21074, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21075, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21076, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21077, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21078, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21079, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21080, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24884, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24885, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24886, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24887, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24888, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24889, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24890, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24891, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24892, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24893, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24894, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24895, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24896, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24897, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24898, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24899, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "states": [ + { + "default": true, + "id": 18466 + } + ] + }, + "minecraft:smoker": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18420, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18421, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18422, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18423, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18424, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18425, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18426, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18427, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "states": [ + { + "default": true, + "id": 26557 + } + ] + }, + "minecraft:smooth_quartz": { + "states": [ + { + "default": true, + "id": 11308 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14124, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14125, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14126, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14127, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14128, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14129, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13602, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13603, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13604, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13605, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13606, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13607, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13608, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13609, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13610, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13611, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13612, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13613, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13614, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13615, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13616, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13617, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13618, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13619, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13620, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13621, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13622, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13623, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13624, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13625, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13626, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13627, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13628, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13629, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13630, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13631, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13632, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13633, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13634, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13635, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13636, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13637, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13638, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13639, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13640, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13641, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13642, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13643, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13644, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13645, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13646, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13647, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13648, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13649, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13650, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13651, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13652, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13653, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13654, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13655, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13656, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13657, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13658, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13659, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13660, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13662, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13663, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13664, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13665, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13666, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13667, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13668, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13669, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13670, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13671, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13672, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13673, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13674, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13675, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13676, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13677, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13678, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13679, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "states": [ + { + "default": true, + "id": 11309 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14088, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14089, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14090, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14091, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14092, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14093, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13042, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13043, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13044, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13045, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13048, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13049, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13052, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13053, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13056, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13057, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13062, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13063, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13064, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13065, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13066, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13067, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13068, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13069, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13070, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13071, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13072, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13073, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13076, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13077, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13082, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13083, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13084, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13085, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13086, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13087, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13088, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13089, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13090, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13091, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13092, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13093, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13096, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13097, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13102, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13103, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13104, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13105, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13106, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13107, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13108, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13109, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13110, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13111, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13112, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "states": [ + { + "default": true, + "id": 11307 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14118, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14119, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14120, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14121, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14122, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14123, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13522, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13523, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13525, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13526, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13527, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13529, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13530, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13531, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13541, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13542, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13543, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13545, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13546, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13547, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13549, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13550, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13551, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13561, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13562, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13563, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13565, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13566, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13567, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13569, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13570, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13571, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13581, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13582, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13583, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13585, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13586, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13587, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13589, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13590, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13591, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "states": [ + { + "default": true, + "id": 11306 + } + ] + }, + "minecraft:smooth_stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11228, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11229, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11230, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11231, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11232, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11233, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sniffer_egg": { + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12800, + "properties": { + "hatch": "0" + } + }, + { + "id": 12801, + "properties": { + "hatch": "1" + } + }, + { + "id": 12802, + "properties": { + "hatch": "2" + } + } + ] + }, + "minecraft:snow": { + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 5772, + "properties": { + "layers": "1" + } + }, + { + "id": 5773, + "properties": { + "layers": "2" + } + }, + { + "id": 5774, + "properties": { + "layers": "3" + } + }, + { + "id": 5775, + "properties": { + "layers": "4" + } + }, + { + "id": 5776, + "properties": { + "layers": "5" + } + }, + { + "id": 5777, + "properties": { + "layers": "6" + } + }, + { + "id": 5778, + "properties": { + "layers": "7" + } + }, + { + "id": 5779, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "states": [ + { + "default": true, + "id": 5781 + } + ] + }, + "minecraft:soul_campfire": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18543, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18544, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18545, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18546, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18547, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18548, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18549, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18550, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18551, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18552, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18553, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18554, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18555, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18556, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18557, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18558, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18559, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18560, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18561, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18562, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18563, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18564, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18565, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18566, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18567, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18568, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18569, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18570, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18571, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18572, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18573, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18574, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_fire": { + "states": [ + { + "default": true, + "id": 2872 + } + ] + }, + "minecraft:soul_lantern": { + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18507, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 18508, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 18509, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18510, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "states": [ + { + "default": true, + "id": 5850 + } + ] + }, + "minecraft:soul_soil": { + "states": [ + { + "default": true, + "id": 5851 + } + ] + }, + "minecraft:soul_torch": { + "states": [ + { + "default": true, + "id": 5858 + } + ] + }, + "minecraft:soul_wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5859, + "properties": { + "facing": "north" + } + }, + { + "id": 5860, + "properties": { + "facing": "south" + } + }, + { + "id": 5861, + "properties": { + "facing": "west" + } + }, + { + "id": 5862, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "states": [ + { + "default": true, + "id": 2873 + } + ] + }, + "minecraft:sponge": { + "states": [ + { + "default": true, + "id": 517 + } + ] + }, + "minecraft:spore_blossom": { + "states": [ + { + "default": true, + "id": 24823 + } + ] + }, + "minecraft:spruce_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8635, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8636, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8637, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8638, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8639, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8640, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8641, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8642, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8643, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8644, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8645, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8646, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8647, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8648, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8649, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8650, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8651, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8652, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8653, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8654, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8655, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8656, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8657, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8658, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11822, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11823, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11824, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11825, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11826, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11827, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11828, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11829, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11830, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11831, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11832, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11833, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11834, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11835, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11836, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11837, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11838, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11839, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11840, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11841, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11842, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11843, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11844, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11845, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11846, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11847, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11848, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11849, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11850, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11851, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11852, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11853, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11854, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11855, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11856, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11857, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11858, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11859, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11860, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11861, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11862, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11863, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11864, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11865, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11866, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11867, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11868, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11869, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11870, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11871, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11872, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11873, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11874, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11875, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11876, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11877, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11878, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11879, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11880, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11881, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11882, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11883, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11884, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11885, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11566, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11569, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11572, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11573, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11576, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11577, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11579, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11580, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11581, + "properties": { "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11584, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11585, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11588, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11589, + "properties": { + "east": "false", "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11592, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11593, + "properties": { + "east": "false", + "north": "false", "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11594, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11595, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11596, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11597, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11310, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11311, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11312, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11313, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11314, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11315, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11316, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11317, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11318, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11319, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11320, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11321, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11322, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11323, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11324, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11325, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11326, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11327, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11328, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11339, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4898, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4899, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4900, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4901, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4902, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4903, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4904, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4905, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4906, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4907, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4908, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4909, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4910, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4911, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4912, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4913, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4914, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4915, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4916, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4917, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4918, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4919, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4920, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4921, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4922, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4923, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4924, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4925, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4926, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4927, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4928, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4929, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4930, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4931, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4932, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4933, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4934, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4935, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4936, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4937, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4938, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4939, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4940, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4941, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4942, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4943, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4944, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4945, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4946, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4947, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4948, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4949, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4950, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4951, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4952, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4953, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4954, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4955, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4956, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4957, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4958, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4961, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 265, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 266, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 267, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 268, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 269, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 270, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 271, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 272, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 273, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 274, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 275, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 276, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 277, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 278, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 279, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 280, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 281, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 282, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 283, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 284, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 285, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 286, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 287, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 288, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 289, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 290, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 291, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 292, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 133, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 134, + "properties": { + "axis": "y" + } + }, + { + "id": 135, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5718, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5719, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 27, + "properties": { + "stage": "0" + } + }, + { + "id": 28, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_sign": { + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4334, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4335, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4336, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4337, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4338, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4339, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4340, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4341, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4342, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4343, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4344, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4345, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4346, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4347, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4348, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4349, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4350, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4351, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4352, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4353, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4354, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4355, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4356, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4357, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4358, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4359, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4360, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4361, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4362, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4363, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4364, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4365, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11168, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11169, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11170, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11171, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11172, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11173, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7666, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7667, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7668, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7669, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7670, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7671, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7672, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7676, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7677, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7678, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7679, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7680, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7681, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7682, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7683, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7684, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7685, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7686, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7687, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7688, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7689, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7690, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7691, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7692, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7693, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7694, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7695, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7696, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7697, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7698, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7699, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7700, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7701, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7702, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7703, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7704, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7705, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7706, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7707, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7708, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7709, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7710, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7711, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7712, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7713, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7714, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7715, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7716, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7717, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7718, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7719, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7720, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7721, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7722, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7723, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7724, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7725, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7726, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7727, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7728, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7729, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7730, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7731, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7732, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7733, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7734, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7735, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7736, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7737, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7738, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7739, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7740, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7741, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7745, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6025, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6026, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6027, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6028, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6029, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6030, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6031, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6032, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6033, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6034, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6035, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6036, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6037, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6038, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6039, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6040, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6041, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6042, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6043, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6044, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6045, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6046, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6047, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6048, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6049, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6050, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6051, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6052, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6053, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6054, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6055, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6056, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6057, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6058, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6059, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6060, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6061, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6062, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6063, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6064, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6065, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6066, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6067, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6068, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6069, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6070, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6071, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6072, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6073, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6074, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6075, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6076, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6077, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6078, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6079, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6080, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6081, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6082, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6083, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6084, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6085, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6086, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6087, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6088, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_hanging_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5546, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5547, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5548, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5549, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5550, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5551, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5552, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5553, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4770, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4771, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4775, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4776, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4777, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 192, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 193, + "properties": { + "axis": "y" + } + }, + { + "id": 194, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1992, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1993, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1994, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1995, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1996, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1997, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1998, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1999, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2000, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2001, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2002, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2003, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11264, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11265, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11266, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11267, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11268, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11269, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7109, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7111, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7119, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7129, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7131, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7135, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7139, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7149, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7151, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7155, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7159, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7169, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7171, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7175, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7179, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15784, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15785, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15786, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15787, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15788, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15789, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15791, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15796, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15797, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15798, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15799, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15800, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15801, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15803, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15808, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15811, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15812, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15813, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15815, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15820, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15821, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15822, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15823, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15824, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15825, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15827, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15832, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15833, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15834, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15835, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15836, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15837, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15839, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15844, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15847, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15848, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15849, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15851, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15853, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15854, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15855, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15856, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15857, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15858, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15859, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15860, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15861, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15863, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15865, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15866, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15867, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15868, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15869, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15870, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15871, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15872, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15873, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15875, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15880, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15881, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15882, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15883, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15884, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15885, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15887, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15889, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15890, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15891, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15892, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15893, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15894, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15895, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15896, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15897, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15899, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15901, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15902, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15903, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15904, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15905, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15906, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15907, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15908, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15909, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15911, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15913, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15914, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15915, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15916, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15917, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15918, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15919, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15920, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15921, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15923, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15925, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15926, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15927, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15928, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15929, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15930, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15931, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15932, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15933, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15935, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15937, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15938, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15939, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15940, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15941, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15942, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15943, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15944, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15945, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15947, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15949, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15950, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15951, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15952, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15953, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15954, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15955, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15956, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15957, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15959, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15961, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15962, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15963, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15964, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15965, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15966, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15967, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15968, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15969, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15971, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15973, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15974, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15975, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15976, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15977, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15978, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15979, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15980, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15981, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15983, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15988, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15989, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15990, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15991, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15992, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15993, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15995, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16000, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16001, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16002, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16003, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16004, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16005, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16007, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16012, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16013, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16014, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16015, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16016, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16017, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16019, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16025, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16026, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16027, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16028, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16029, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16031, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16036, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16037, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16038, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16039, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16040, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16041, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16043, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16048, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16049, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16050, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16051, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16052, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16053, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16055, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16061, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16062, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16063, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16064, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16065, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16067, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16072, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16073, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16074, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16075, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16076, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16077, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16079, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", "up": "true", "waterlogged": "true", - "west": "false" + "west": "none" + } + }, + { + "id": 16081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16085, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16086, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16087, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16088, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16089, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16091, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16097, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16098, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16099, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16100, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16101, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16103, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "states": [ + { + "default": true, + "id": 6537 + } + ] + }, + "minecraft:stone_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5748, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5749, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5750, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5751, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5753, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5755, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5756, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5757, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5758, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5759, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5760, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5761, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5762, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5763, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5764, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5765, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5766, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5767, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5769, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5771, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5650, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5651, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11222, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11223, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11224, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11225, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11226, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11227, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13442, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13443, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13444, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13445, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13446, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13447, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13448, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13449, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13450, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13451, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13452, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13453, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13454, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13455, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13456, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13457, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13458, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13459, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13460, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13461, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13462, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13463, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13464, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13465, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13466, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13467, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13468, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13469, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13470, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13471, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13472, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13473, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13474, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13475, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13476, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13477, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13478, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13479, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13480, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13481, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13482, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13483, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13484, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13485, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13486, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13487, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13488, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 21632, + "id": 13489, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 21633, + "id": 13490, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 21634, + "id": 13491, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 21635, + "id": 13492, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 21636, + "id": 13493, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 21637, + "id": 13494, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 21638, + "id": 13495, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 21639, + "id": 13496, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 21640, + "id": 13497, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 21641, + "id": 13498, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 21642, + "id": 13499, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 21643, + "id": 13500, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 21644, + "id": 13501, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 21645, + "id": 13502, "properties": { - "down": "false", - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 21646, + "id": 13503, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 21647, + "id": 13504, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 21648, + "id": 13505, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 21649, + "id": 13506, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 21650, + "id": 13507, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 21651, + "id": 13508, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 21652, + "id": 13509, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 21653, + "id": 13510, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 21654, + "id": 13511, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 21655, + "id": 13512, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 21656, + "id": 13513, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 21657, + "id": 13514, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 21658, + "id": 13515, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 21659, + "id": 13516, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 21660, + "id": 13517, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 21661, + "id": 13518, "properties": { - "down": "false", - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 21662, + "id": 13519, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 21663, + "id": 13520, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 21664, + "id": 13521, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18467, + "properties": { + "facing": "north" } }, { - "id": 21665, + "id": 18468, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "facing": "south" } }, { - "id": 21666, + "id": 18469, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "facing": "west" } }, { - "id": 21667, + "id": 18470, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 171, + "properties": { + "axis": "x" } }, { - "id": 21668, + "default": true, + "id": 172, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21669, + "id": 173, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 225, + "properties": { + "axis": "x" } }, { - "id": 21670, + "default": true, + "id": 226, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21671, + "id": 227, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 186, + "properties": { + "axis": "x" } }, { - "id": 21672, + "default": true, + "id": 187, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21673, + "id": 188, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 165, + "properties": { + "axis": "x" } }, { - "id": 21674, + "default": true, + "id": 166, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21675, + "id": 167, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 219, + "properties": { + "axis": "x" } }, { - "id": 21676, + "default": true, + "id": 220, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21677, + "id": 221, "properties": { - "down": "false", - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 174, + "properties": { + "axis": "x" } }, { - "id": 21678, + "default": true, + "id": 175, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21679, + "id": 176, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 228, + "properties": { + "axis": "x" } }, { - "id": 21680, + "default": true, + "id": 229, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21681, + "id": 230, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18605, + "properties": { + "axis": "x" } }, { - "id": 21682, + "default": true, + "id": 18606, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21683, + "id": 18607, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18599, + "properties": { + "axis": "x" } }, { - "id": 21684, + "default": true, + "id": 18600, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21685, + "id": 18601, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 177, + "properties": { + "axis": "x" } }, { - "id": 21686, + "default": true, + "id": 178, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21687, + "id": 179, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 231, + "properties": { + "axis": "x" } }, { - "id": 21688, + "default": true, + "id": 232, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "true" + "axis": "y" } }, { - "id": 21689, + "id": 233, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "waterlogged": "false", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 168, + "properties": { + "axis": "x" } }, { - "id": 21690, + "default": true, + "id": 169, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "true" + "axis": "y" } }, { - "id": 21691, + "id": 170, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "true", - "west": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 222, + "properties": { + "axis": "x" } }, { - "id": 21692, + "default": true, + "id": 223, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "true" + "axis": "y" + } + }, + { + "id": 224, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 183, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 184, + "properties": { + "axis": "y" + } + }, + { + "id": 185, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 235, + "properties": { + "axis": "y" } }, { - "default": true, - "id": 21693, + "id": 236, "properties": { - "down": "false", - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "waterlogged": "false", - "west": "false" + "axis": "z" } } ] }, - "minecraft:sea_lantern": { + "minecraft:stripped_oak_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ + { + "id": 180, + "properties": { + "axis": "x" + } + }, { "default": true, - "id": 10724 + "id": 181, + "properties": { + "axis": "y" + } + }, + { + "id": 182, + "properties": { + "axis": "z" + } } ] }, - "minecraft:sea_pickle": { + "minecraft:stripped_oak_wood": { "properties": { - "pickles": [ - "1", - "2", - "3", - "4" - ], - "waterlogged": [ - "true", - "false" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { - "default": true, - "id": 12933, + "id": 213, "properties": { - "pickles": "1", - "waterlogged": "true" + "axis": "x" } }, { - "id": 12934, + "default": true, + "id": 214, "properties": { - "pickles": "1", - "waterlogged": "false" + "axis": "y" } }, { - "id": 12935, + "id": 215, "properties": { - "pickles": "2", - "waterlogged": "true" + "axis": "z" } - }, + } + ] + }, + "minecraft:stripped_spruce_log": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { - "id": 12936, + "id": 162, "properties": { - "pickles": "2", - "waterlogged": "false" + "axis": "x" } }, { - "id": 12937, + "default": true, + "id": 163, "properties": { - "pickles": "3", - "waterlogged": "true" + "axis": "y" } }, { - "id": 12938, + "id": 164, "properties": { - "pickles": "3", - "waterlogged": "false" + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 216, + "properties": { + "axis": "x" } }, { - "id": 12939, + "default": true, + "id": 217, "properties": { - "pickles": "4", - "waterlogged": "true" + "axis": "y" } }, { - "id": 12940, + "id": 218, "properties": { - "pickles": "4", - "waterlogged": "false" + "axis": "z" } } ] }, - "minecraft:seagrass": { + "minecraft:stripped_warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, "states": [ { - "default": true, - "id": 2008 - } - ] - }, - "minecraft:shroomlight": { - "states": [ + "id": 18588, + "properties": { + "axis": "x" + } + }, { "default": true, - "id": 18610 + "id": 18589, + "properties": { + "axis": "y" + } + }, + { + "id": 18590, + "properties": { + "axis": "z" + } } ] }, - "minecraft:shulker_box": { + "minecraft:stripped_warped_stem": { "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { - "id": 12562, + "id": 18582, "properties": { - "facing": "north" + "axis": "x" } }, { - "id": 12563, + "default": true, + "id": 18583, "properties": { - "facing": "east" + "axis": "y" } }, { - "id": 12564, + "id": 18584, "properties": { - "facing": "south" + "axis": "z" } - }, + } + ] + }, + "minecraft:structure_block": { + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ { - "id": 12565, + "id": 19356, "properties": { - "facing": "west" + "mode": "save" } }, { "default": true, - "id": 12566, + "id": 19357, "properties": { - "facing": "up" + "mode": "load" } }, { - "id": 12567, + "id": 19358, "properties": { - "facing": "down" + "mode": "corner" + } + }, + { + "id": 19359, + "properties": { + "mode": "data" } } ] }, - "minecraft:skeleton_skull": { + "minecraft:structure_void": { + "states": [ + { + "default": true, + "id": 12549 + } + ] + }, + "minecraft:sugar_cane": { "properties": { - "powered": [ - "true", - "false" - ], - "rotation": [ + "age": [ "0", "1", "2", @@ -213232,428 +236644,496 @@ }, "states": [ { - "id": 8827, + "default": true, + "id": 5799, "properties": { - "powered": "true", - "rotation": "0" + "age": "0" } }, { - "id": 8828, + "id": 5800, "properties": { - "powered": "true", - "rotation": "1" + "age": "1" } }, { - "id": 8829, + "id": 5801, "properties": { - "powered": "true", - "rotation": "2" + "age": "2" } }, { - "id": 8830, + "id": 5802, "properties": { - "powered": "true", - "rotation": "3" + "age": "3" } }, { - "id": 8831, + "id": 5803, "properties": { - "powered": "true", - "rotation": "4" + "age": "4" } }, { - "id": 8832, + "id": 5804, "properties": { - "powered": "true", - "rotation": "5" + "age": "5" } }, { - "id": 8833, + "id": 5805, "properties": { - "powered": "true", - "rotation": "6" + "age": "6" } }, { - "id": 8834, + "id": 5806, "properties": { - "powered": "true", - "rotation": "7" + "age": "7" } }, { - "id": 8835, + "id": 5807, "properties": { - "powered": "true", - "rotation": "8" + "age": "8" } }, { - "id": 8836, + "id": 5808, "properties": { - "powered": "true", - "rotation": "9" + "age": "9" } }, { - "id": 8837, + "id": 5809, "properties": { - "powered": "true", - "rotation": "10" + "age": "10" } }, { - "id": 8838, + "id": 5810, "properties": { - "powered": "true", - "rotation": "11" + "age": "11" } }, { - "id": 8839, + "id": 5811, "properties": { - "powered": "true", - "rotation": "12" + "age": "12" } }, { - "id": 8840, + "id": 5812, "properties": { - "powered": "true", - "rotation": "13" + "age": "13" } }, { - "id": 8841, + "id": 5813, "properties": { - "powered": "true", - "rotation": "14" + "age": "14" } }, { - "id": 8842, + "id": 5814, "properties": { - "powered": "true", - "rotation": "15" + "age": "15" } - }, + } + ] + }, + "minecraft:sunflower": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { - "default": true, - "id": 8843, + "id": 10747, "properties": { - "powered": "false", - "rotation": "0" + "half": "upper" } }, { - "id": 8844, + "default": true, + "id": 10748, "properties": { - "powered": "false", - "rotation": "1" + "half": "lower" } - }, + } + ] + }, + "minecraft:suspicious_gravel": { + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { - "id": 8845, + "default": true, + "id": 119, "properties": { - "powered": "false", - "rotation": "2" + "dusted": "0" } }, { - "id": 8846, + "id": 120, "properties": { - "powered": "false", - "rotation": "3" + "dusted": "1" } }, { - "id": 8847, + "id": 121, "properties": { - "powered": "false", - "rotation": "4" + "dusted": "2" } }, { - "id": 8848, + "id": 122, "properties": { - "powered": "false", - "rotation": "5" + "dusted": "3" } - }, + } + ] + }, + "minecraft:suspicious_sand": { + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { - "id": 8849, + "default": true, + "id": 113, "properties": { - "powered": "false", - "rotation": "6" + "dusted": "0" } }, { - "id": 8850, + "id": 114, "properties": { - "powered": "false", - "rotation": "7" + "dusted": "1" } }, { - "id": 8851, + "id": 115, "properties": { - "powered": "false", - "rotation": "8" + "dusted": "2" } }, { - "id": 8852, + "id": 116, "properties": { - "powered": "false", - "rotation": "9" + "dusted": "3" } - }, + } + ] + }, + "minecraft:sweet_berry_bush": { + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ { - "id": 8853, + "default": true, + "id": 18575, "properties": { - "powered": "false", - "rotation": "10" + "age": "0" } }, { - "id": 8854, + "id": 18576, "properties": { - "powered": "false", - "rotation": "11" + "age": "1" } }, { - "id": 8855, + "id": 18577, "properties": { - "powered": "false", - "rotation": "12" + "age": "2" } }, { - "id": 8856, + "id": 18578, "properties": { - "powered": "false", - "rotation": "13" + "age": "3" } - }, + } + ] + }, + "minecraft:tall_grass": { + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ { - "id": 8857, + "id": 10755, "properties": { - "powered": "false", - "rotation": "14" + "half": "upper" } }, { - "id": 8858, + "default": true, + "id": 10756, "properties": { - "powered": "false", - "rotation": "15" + "half": "lower" } } ] }, - "minecraft:skeleton_wall_skull": { + "minecraft:tall_seagrass": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" + "half": [ + "upper", + "lower" ] }, "states": [ { - "id": 8859, + "id": 2009, "properties": { - "facing": "north", - "powered": "true" + "half": "upper" } }, { "default": true, - "id": 8860, + "id": 2010, "properties": { - "facing": "north", - "powered": "false" + "half": "lower" } - }, + } + ] + }, + "minecraft:target": { + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ { - "id": 8861, + "default": true, + "id": 19381, "properties": { - "facing": "south", - "powered": "true" + "power": "0" } }, { - "id": 8862, + "id": 19382, "properties": { - "facing": "south", - "powered": "false" + "power": "1" } }, { - "id": 8863, + "id": 19383, "properties": { - "facing": "west", - "powered": "true" + "power": "2" } }, { - "id": 8864, + "id": 19384, "properties": { - "facing": "west", - "powered": "false" + "power": "3" } }, { - "id": 8865, + "id": 19385, "properties": { - "facing": "east", - "powered": "true" + "power": "4" } }, { - "id": 8866, + "id": 19386, "properties": { - "facing": "east", - "powered": "false" + "power": "5" } - } - ] - }, - "minecraft:slime_block": { - "states": [ - { - "default": true, - "id": 10364 - } - ] - }, - "minecraft:small_amethyst_bud": { - "properties": { - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 21069, + "id": 19387, "properties": { - "facing": "north", - "waterlogged": "true" + "power": "6" } }, { - "id": 21070, + "id": 19388, "properties": { - "facing": "north", - "waterlogged": "false" + "power": "7" } }, { - "id": 21071, + "id": 19389, "properties": { - "facing": "east", - "waterlogged": "true" + "power": "8" } }, { - "id": 21072, + "id": 19390, "properties": { - "facing": "east", - "waterlogged": "false" + "power": "9" } }, { - "id": 21073, + "id": 19391, "properties": { - "facing": "south", - "waterlogged": "true" + "power": "10" } }, { - "id": 21074, + "id": 19392, "properties": { - "facing": "south", - "waterlogged": "false" + "power": "11" } }, { - "id": 21075, + "id": 19393, "properties": { - "facing": "west", - "waterlogged": "true" + "power": "12" } }, { - "id": 21076, + "id": 19394, "properties": { - "facing": "west", - "waterlogged": "false" + "power": "13" } }, { - "id": 21077, + "id": 19395, "properties": { - "facing": "up", - "waterlogged": "true" + "power": "14" } }, + { + "id": 19396, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "states": [ { "default": true, - "id": 21078, + "id": 10744 + } + ] + }, + "minecraft:tinted_glass": { + "states": [ + { + "default": true, + "id": 22317 + } + ] + }, + "minecraft:tnt": { + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2094, "properties": { - "facing": "up", - "waterlogged": "false" + "unstable": "true" } }, { - "id": 21079, + "default": true, + "id": 2095, "properties": { - "facing": "down", - "waterlogged": "true" + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "states": [ + { + "default": true, + "id": 2355 + } + ] + }, + "minecraft:torchflower": { + "states": [ + { + "default": true, + "id": 2076 + } + ] + }, + "minecraft:torchflower_crop": { + "properties": { + "age": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12495, + "properties": { + "age": "0" } }, { - "id": 21080, + "id": 12496, "properties": { - "facing": "down", - "waterlogged": "false" + "age": "1" } } ] }, - "minecraft:small_dripleaf": { + "minecraft:trapped_chest": { "properties": { + "type": [ + "single", + "left", + "right" + ], "facing": [ "north", "south", "west", "east" ], - "half": [ - "upper", - "lower" - ], "waterlogged": [ "true", "false" @@ -213661,1862 +237141,2107 @@ }, "states": [ { - "id": 22570, + "id": 9119, "properties": { + "type": "single", "facing": "north", - "half": "upper", "waterlogged": "true" } }, { - "id": 22571, + "default": true, + "id": 9120, "properties": { + "type": "single", "facing": "north", - "half": "upper", "waterlogged": "false" } }, { - "id": 22572, + "id": 9121, "properties": { + "type": "left", "facing": "north", - "half": "lower", "waterlogged": "true" } }, { - "default": true, - "id": 22573, + "id": 9122, "properties": { + "type": "left", "facing": "north", - "half": "lower", "waterlogged": "false" } }, { - "id": 22574, + "id": 9123, "properties": { - "facing": "south", - "half": "upper", + "type": "right", + "facing": "north", "waterlogged": "true" } }, { - "id": 22575, + "id": 9124, "properties": { - "facing": "south", - "half": "upper", + "type": "right", + "facing": "north", "waterlogged": "false" } }, { - "id": 22576, + "id": 9125, "properties": { + "type": "single", "facing": "south", - "half": "lower", "waterlogged": "true" } }, { - "id": 22577, + "id": 9126, "properties": { + "type": "single", "facing": "south", - "half": "lower", "waterlogged": "false" } }, { - "id": 22578, + "id": 9127, "properties": { - "facing": "west", - "half": "upper", + "type": "left", + "facing": "south", "waterlogged": "true" } }, { - "id": 22579, + "id": 9128, "properties": { - "facing": "west", - "half": "upper", + "type": "left", + "facing": "south", "waterlogged": "false" } }, { - "id": 22580, + "id": 9129, "properties": { - "facing": "west", - "half": "lower", + "type": "right", + "facing": "south", "waterlogged": "true" } }, { - "id": 22581, + "id": 9130, "properties": { - "facing": "west", - "half": "lower", + "type": "right", + "facing": "south", "waterlogged": "false" } }, { - "id": 22582, + "id": 9131, "properties": { - "facing": "east", - "half": "upper", + "type": "single", + "facing": "west", "waterlogged": "true" } }, { - "id": 22583, + "id": 9132, "properties": { - "facing": "east", - "half": "upper", + "type": "single", + "facing": "west", "waterlogged": "false" } }, { - "id": 22584, + "id": 9133, "properties": { - "facing": "east", - "half": "lower", + "type": "left", + "facing": "west", "waterlogged": "true" } }, { - "id": 22585, + "id": 9134, "properties": { - "facing": "east", - "half": "lower", + "type": "left", + "facing": "west", "waterlogged": "false" } - } - ] - }, - "minecraft:smithing_table": { - "states": [ - { - "default": true, - "id": 18466 - } - ] - }, - "minecraft:smoker": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "lit": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 18420, - "properties": { - "facing": "north", - "lit": "true" - } - }, - { - "default": true, - "id": 18421, - "properties": { - "facing": "north", - "lit": "false" - } - }, - { - "id": 18422, - "properties": { - "facing": "south", - "lit": "true" - } - }, - { - "id": 18423, - "properties": { - "facing": "south", - "lit": "false" - } }, { - "id": 18424, + "id": 9135, "properties": { + "type": "right", "facing": "west", - "lit": "true" + "waterlogged": "true" } }, { - "id": 18425, + "id": 9136, "properties": { + "type": "right", "facing": "west", - "lit": "false" - } - }, - { - "id": 18426, - "properties": { - "facing": "east", - "lit": "true" + "waterlogged": "false" } }, { - "id": 18427, + "id": 9137, "properties": { + "type": "single", "facing": "east", - "lit": "false" - } - } - ] - }, - "minecraft:smooth_basalt": { - "states": [ - { - "default": true, - "id": 24243 - } - ] - }, - "minecraft:smooth_quartz": { - "states": [ - { - "default": true, - "id": 11308 - } - ] - }, - "minecraft:smooth_quartz_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 14124, - "properties": { - "type": "top", "waterlogged": "true" } }, { - "id": 14125, + "id": 9138, "properties": { - "type": "top", + "type": "single", + "facing": "east", "waterlogged": "false" } }, { - "id": 14126, + "id": 9139, "properties": { - "type": "bottom", + "type": "left", + "facing": "east", "waterlogged": "true" } }, { - "default": true, - "id": 14127, + "id": 9140, "properties": { - "type": "bottom", + "type": "left", + "facing": "east", "waterlogged": "false" } }, { - "id": 14128, + "id": 9141, "properties": { - "type": "double", + "type": "right", + "facing": "east", "waterlogged": "true" } }, { - "id": 14129, + "id": 9142, "properties": { - "type": "double", + "type": "right", + "facing": "east", "waterlogged": "false" } } ] }, - "minecraft:smooth_quartz_stairs": { + "minecraft:trial_spawner": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" ] }, "states": [ { - "id": 13602, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13603, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13604, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13605, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13606, - "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13607, + "default": true, + "id": 26638, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "trial_spawner_state": "inactive" } }, { - "id": 13608, + "id": 26639, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "trial_spawner_state": "waiting_for_players" } }, { - "id": 13609, + "id": 26640, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "trial_spawner_state": "active" } }, { - "id": 13610, - "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "id": 26641, + "properties": { + "trial_spawner_state": "waiting_for_reward_ejection" } }, { - "id": 13611, + "id": 26642, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "trial_spawner_state": "ejecting_reward" } }, { - "id": 13612, + "id": 26643, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "trial_spawner_state": "cooldown" } - }, + } + ] + }, + "minecraft:tripwire": { + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { - "default": true, - "id": 13613, + "id": 7537, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13614, + "id": 7538, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13615, + "id": 7539, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13616, + "id": 7540, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13617, + "id": 7541, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13618, + "id": 7542, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13619, + "id": 7543, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13620, + "id": 7544, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13621, + "id": 7545, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13622, + "id": 7546, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13623, + "id": 7547, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13624, + "id": 7548, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13625, + "id": 7549, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13626, + "id": 7550, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13627, + "id": 7551, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13628, + "id": 7552, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13629, + "id": 7553, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13630, + "id": 7554, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13631, + "id": 7555, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13632, + "id": 7556, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13633, + "id": 7557, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13634, + "id": 7558, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13635, + "id": 7559, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13636, + "id": 7560, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13637, + "id": 7561, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13638, + "id": 7562, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13639, + "id": 7563, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13640, + "id": 7564, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13641, + "id": 7565, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13642, + "id": 7566, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13643, + "id": 7567, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13644, + "id": 7568, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13645, + "id": 7569, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13646, + "id": 7570, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13647, + "id": 7571, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13648, + "id": 7572, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13649, + "id": 7573, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13650, + "id": 7574, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13651, + "id": 7575, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13652, + "id": 7576, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13653, + "id": 7577, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13654, + "id": 7578, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13655, + "id": 7579, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13656, + "id": 7580, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13657, + "id": 7581, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13658, + "id": 7582, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13659, + "id": 7583, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13660, + "id": 7584, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13661, + "id": 7585, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13662, + "id": 7586, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13663, + "id": 7587, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13664, + "id": 7588, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13665, + "id": 7589, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13666, + "id": 7590, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13667, + "id": 7591, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13668, + "id": 7592, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13669, + "id": 7593, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13670, + "id": 7594, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13671, + "id": 7595, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13672, + "id": 7596, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13673, + "id": 7597, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13674, + "id": 7598, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13675, + "id": 7599, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13676, + "id": 7600, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13677, + "id": 7601, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13678, + "id": 7602, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13679, + "id": 7603, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13680, + "id": 7604, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13681, + "id": 7605, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } - } - ] - }, - "minecraft:smooth_red_sandstone": { - "states": [ + }, { - "default": true, - "id": 11309 - } - ] - }, - "minecraft:smooth_red_sandstone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 7606, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, { - "id": 14088, + "id": 7607, "properties": { - "type": "top", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 14089, + "id": 7608, "properties": { - "type": "top", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 14090, + "id": 7609, "properties": { - "type": "bottom", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "default": true, - "id": 14091, + "id": 7610, "properties": { - "type": "bottom", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 14092, + "id": 7611, "properties": { - "type": "double", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 14093, + "id": 7612, "properties": { - "type": "double", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } - } - ] - }, - "minecraft:smooth_red_sandstone_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 13042, + "id": 7613, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13043, + "id": 7614, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13044, + "id": 7615, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13045, + "id": 7616, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13046, + "id": 7617, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13047, + "id": 7618, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13048, + "id": 7619, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13049, + "id": 7620, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13050, + "id": 7621, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13051, + "id": 7622, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13052, + "id": 7623, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "default": true, - "id": 13053, + "id": 7624, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13054, + "id": 7625, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13055, + "id": 7626, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13056, + "id": 7627, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13057, + "id": 7628, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13058, + "id": 7629, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13059, + "id": 7630, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13060, + "id": 7631, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13061, + "id": 7632, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13062, + "id": 7633, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13063, + "id": 7634, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13064, + "id": 7635, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13065, + "id": 7636, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13066, + "id": 7637, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13067, + "id": 7638, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13068, + "id": 7639, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13069, + "id": 7640, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13070, + "id": 7641, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13071, + "id": 7642, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13072, + "id": 7643, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13073, + "id": 7644, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13074, + "id": 7645, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13075, + "id": 7646, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13076, + "id": 7647, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13077, + "id": 7648, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13078, + "id": 7649, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13079, + "id": 7650, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13080, + "id": 7651, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13081, + "id": 7652, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13082, + "id": 7653, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13083, + "id": 7654, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13084, + "id": 7655, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13085, + "id": 7656, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" } }, { - "id": 13086, + "id": 7657, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" } }, { - "id": 13087, + "id": 7658, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" } }, { - "id": 13088, + "id": 7659, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" } }, { - "id": 13089, + "id": 7660, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" } }, { - "id": 13090, + "id": 7661, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" } }, { - "id": 13091, + "id": 7662, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" } }, { - "id": 13092, + "id": 7663, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" } }, { - "id": 13093, + "default": true, + "id": 7664, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" } - }, + } + ] + }, + "minecraft:tripwire_hook": { + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 13094, + "id": 7521, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "attached": "true", + "facing": "north", + "powered": "true" } }, { - "id": 13095, + "id": 7522, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "attached": "true", + "facing": "north", + "powered": "false" } }, { - "id": 13096, + "id": 7523, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "attached": "true", + "facing": "south", + "powered": "true" } }, { - "id": 13097, + "id": 7524, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "attached": "true", + "facing": "south", + "powered": "false" } }, { - "id": 13098, + "id": 7525, "properties": { + "attached": "true", "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "powered": "true" } }, { - "id": 13099, + "id": 7526, "properties": { + "attached": "true", "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "powered": "false" } }, { - "id": 13100, + "id": 7527, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "attached": "true", + "facing": "east", + "powered": "true" } }, { - "id": 13101, + "id": 7528, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "attached": "true", + "facing": "east", + "powered": "false" } }, { - "id": 13102, + "id": 7529, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "attached": "false", + "facing": "north", + "powered": "true" } }, { - "id": 13103, + "default": true, + "id": 7530, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "attached": "false", + "facing": "north", + "powered": "false" } }, { - "id": 13104, + "id": 7531, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "attached": "false", + "facing": "south", + "powered": "true" } }, { - "id": 13105, + "id": 7532, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "attached": "false", + "facing": "south", + "powered": "false" } }, { - "id": 13106, + "id": 7533, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "attached": "false", + "facing": "west", + "powered": "true" } }, { - "id": 13107, + "id": 7534, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "attached": "false", + "facing": "west", + "powered": "false" } }, { - "id": 13108, + "id": 7535, "properties": { + "attached": "false", "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "powered": "true" } }, { - "id": 13109, + "id": 7536, "properties": { + "attached": "false", "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "powered": "false" } - }, + } + ] + }, + "minecraft:tube_coral": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 13110, + "default": true, + "id": 12823, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", "waterlogged": "true" } }, { - "id": 13111, + "id": 12824, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:tube_coral_block": { + "states": [ { - "id": 13112, + "default": true, + "id": 12808 + } + ] + }, + "minecraft:tube_coral_fan": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12843, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", "waterlogged": "true" } }, { - "id": 13113, + "id": 12844, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 13114, + "default": true, + "id": 12893, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "facing": "north", "waterlogged": "true" } }, { - "id": 13115, + "id": 12894, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", + "facing": "north", "waterlogged": "false" } }, { - "id": 13116, + "id": 12895, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "true" } }, { - "id": 13117, + "id": 12896, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", + "facing": "south", "waterlogged": "false" } }, { - "id": 13118, + "id": 12897, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "facing": "west", "waterlogged": "true" } }, { - "id": 13119, + "id": 12898, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "facing": "west", "waterlogged": "false" } }, { - "id": 13120, + "id": 12899, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "true" } }, { - "id": 13121, + "id": 12900, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "false" } } ] }, - "minecraft:smooth_sandstone": { + "minecraft:tuff": { "states": [ { "default": true, - "id": 11307 + "id": 21081 } ] }, - "minecraft:smooth_sandstone_slab": { + "minecraft:tuff_brick_slab": { "properties": { "type": [ "top", @@ -215530,21 +239255,21 @@ }, "states": [ { - "id": 14118, + "id": 21905, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 14119, + "id": 21906, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 14120, + "id": 21907, "properties": { "type": "bottom", "waterlogged": "true" @@ -215552,21 +239277,21 @@ }, { "default": true, - "id": 14121, + "id": 21908, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 14122, + "id": 21909, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 14123, + "id": 21910, "properties": { "type": "double", "waterlogged": "false" @@ -215574,7 +239299,7 @@ } ] }, - "minecraft:smooth_sandstone_stairs": { + "minecraft:tuff_brick_stairs": { "properties": { "facing": [ "north", @@ -215600,7 +239325,7 @@ }, "states": [ { - "id": 13522, + "id": 21911, "properties": { "facing": "north", "half": "top", @@ -215609,7 +239334,7 @@ } }, { - "id": 13523, + "id": 21912, "properties": { "facing": "north", "half": "top", @@ -215618,7 +239343,7 @@ } }, { - "id": 13524, + "id": 21913, "properties": { "facing": "north", "half": "top", @@ -215627,7 +239352,7 @@ } }, { - "id": 13525, + "id": 21914, "properties": { "facing": "north", "half": "top", @@ -215636,7 +239361,7 @@ } }, { - "id": 13526, + "id": 21915, "properties": { "facing": "north", "half": "top", @@ -215645,7 +239370,7 @@ } }, { - "id": 13527, + "id": 21916, "properties": { "facing": "north", "half": "top", @@ -215654,7 +239379,7 @@ } }, { - "id": 13528, + "id": 21917, "properties": { "facing": "north", "half": "top", @@ -215663,7 +239388,7 @@ } }, { - "id": 13529, + "id": 21918, "properties": { "facing": "north", "half": "top", @@ -215672,7 +239397,7 @@ } }, { - "id": 13530, + "id": 21919, "properties": { "facing": "north", "half": "top", @@ -215681,7 +239406,7 @@ } }, { - "id": 13531, + "id": 21920, "properties": { "facing": "north", "half": "top", @@ -215690,7 +239415,7 @@ } }, { - "id": 13532, + "id": 21921, "properties": { "facing": "north", "half": "bottom", @@ -215700,7 +239425,7 @@ }, { "default": true, - "id": 13533, + "id": 21922, "properties": { "facing": "north", "half": "bottom", @@ -215709,7 +239434,7 @@ } }, { - "id": 13534, + "id": 21923, "properties": { "facing": "north", "half": "bottom", @@ -215718,7 +239443,7 @@ } }, { - "id": 13535, + "id": 21924, "properties": { "facing": "north", "half": "bottom", @@ -215727,7 +239452,7 @@ } }, { - "id": 13536, + "id": 21925, "properties": { "facing": "north", "half": "bottom", @@ -215736,7 +239461,7 @@ } }, { - "id": 13537, + "id": 21926, "properties": { "facing": "north", "half": "bottom", @@ -215745,7 +239470,7 @@ } }, { - "id": 13538, + "id": 21927, "properties": { "facing": "north", "half": "bottom", @@ -215754,7 +239479,7 @@ } }, { - "id": 13539, + "id": 21928, "properties": { "facing": "north", "half": "bottom", @@ -215763,7 +239488,7 @@ } }, { - "id": 13540, + "id": 21929, "properties": { "facing": "north", "half": "bottom", @@ -215772,7 +239497,7 @@ } }, { - "id": 13541, + "id": 21930, "properties": { "facing": "north", "half": "bottom", @@ -215781,7 +239506,7 @@ } }, { - "id": 13542, + "id": 21931, "properties": { "facing": "south", "half": "top", @@ -215790,7 +239515,7 @@ } }, { - "id": 13543, + "id": 21932, "properties": { "facing": "south", "half": "top", @@ -215799,7 +239524,7 @@ } }, { - "id": 13544, + "id": 21933, "properties": { "facing": "south", "half": "top", @@ -215808,7 +239533,7 @@ } }, { - "id": 13545, + "id": 21934, "properties": { "facing": "south", "half": "top", @@ -215817,7 +239542,7 @@ } }, { - "id": 13546, + "id": 21935, "properties": { "facing": "south", "half": "top", @@ -215826,7 +239551,7 @@ } }, { - "id": 13547, + "id": 21936, "properties": { "facing": "south", "half": "top", @@ -215835,7 +239560,7 @@ } }, { - "id": 13548, + "id": 21937, "properties": { "facing": "south", "half": "top", @@ -215844,7 +239569,7 @@ } }, { - "id": 13549, + "id": 21938, "properties": { "facing": "south", "half": "top", @@ -215853,7 +239578,7 @@ } }, { - "id": 13550, + "id": 21939, "properties": { "facing": "south", "half": "top", @@ -215862,7 +239587,7 @@ } }, { - "id": 13551, + "id": 21940, "properties": { "facing": "south", "half": "top", @@ -215871,7 +239596,7 @@ } }, { - "id": 13552, + "id": 21941, "properties": { "facing": "south", "half": "bottom", @@ -215880,7 +239605,7 @@ } }, { - "id": 13553, + "id": 21942, "properties": { "facing": "south", "half": "bottom", @@ -215889,7 +239614,7 @@ } }, { - "id": 13554, + "id": 21943, "properties": { "facing": "south", "half": "bottom", @@ -215898,7 +239623,7 @@ } }, { - "id": 13555, + "id": 21944, "properties": { "facing": "south", "half": "bottom", @@ -215907,7 +239632,7 @@ } }, { - "id": 13556, + "id": 21945, "properties": { "facing": "south", "half": "bottom", @@ -215916,7 +239641,7 @@ } }, { - "id": 13557, + "id": 21946, "properties": { "facing": "south", "half": "bottom", @@ -215925,7 +239650,7 @@ } }, { - "id": 13558, + "id": 21947, "properties": { "facing": "south", "half": "bottom", @@ -215934,7 +239659,7 @@ } }, { - "id": 13559, + "id": 21948, "properties": { "facing": "south", "half": "bottom", @@ -215943,7 +239668,7 @@ } }, { - "id": 13560, + "id": 21949, "properties": { "facing": "south", "half": "bottom", @@ -215952,7 +239677,7 @@ } }, { - "id": 13561, + "id": 21950, "properties": { "facing": "south", "half": "bottom", @@ -215961,7 +239686,7 @@ } }, { - "id": 13562, + "id": 21951, "properties": { "facing": "west", "half": "top", @@ -215970,7 +239695,7 @@ } }, { - "id": 13563, + "id": 21952, "properties": { "facing": "west", "half": "top", @@ -215979,7 +239704,7 @@ } }, { - "id": 13564, + "id": 21953, "properties": { "facing": "west", "half": "top", @@ -215988,7 +239713,7 @@ } }, { - "id": 13565, + "id": 21954, "properties": { "facing": "west", "half": "top", @@ -215997,7 +239722,7 @@ } }, { - "id": 13566, + "id": 21955, "properties": { "facing": "west", "half": "top", @@ -216006,7 +239731,7 @@ } }, { - "id": 13567, + "id": 21956, "properties": { "facing": "west", "half": "top", @@ -216015,7 +239740,7 @@ } }, { - "id": 13568, + "id": 21957, "properties": { "facing": "west", "half": "top", @@ -216024,7 +239749,7 @@ } }, { - "id": 13569, + "id": 21958, "properties": { "facing": "west", "half": "top", @@ -216033,7 +239758,7 @@ } }, { - "id": 13570, + "id": 21959, "properties": { "facing": "west", "half": "top", @@ -216042,7 +239767,7 @@ } }, { - "id": 13571, + "id": 21960, "properties": { "facing": "west", "half": "top", @@ -216051,7 +239776,7 @@ } }, { - "id": 13572, + "id": 21961, "properties": { "facing": "west", "half": "bottom", @@ -216060,7 +239785,7 @@ } }, { - "id": 13573, + "id": 21962, "properties": { "facing": "west", "half": "bottom", @@ -216069,7 +239794,7 @@ } }, { - "id": 13574, + "id": 21963, "properties": { "facing": "west", "half": "bottom", @@ -216078,7 +239803,7 @@ } }, { - "id": 13575, + "id": 21964, "properties": { "facing": "west", "half": "bottom", @@ -216087,7 +239812,7 @@ } }, { - "id": 13576, + "id": 21965, "properties": { "facing": "west", "half": "bottom", @@ -216096,7 +239821,7 @@ } }, { - "id": 13577, + "id": 21966, "properties": { "facing": "west", "half": "bottom", @@ -216105,7 +239830,7 @@ } }, { - "id": 13578, + "id": 21967, "properties": { "facing": "west", "half": "bottom", @@ -216114,7 +239839,7 @@ } }, { - "id": 13579, + "id": 21968, "properties": { "facing": "west", "half": "bottom", @@ -216123,7 +239848,7 @@ } }, { - "id": 13580, + "id": 21969, "properties": { "facing": "west", "half": "bottom", @@ -216132,7 +239857,7 @@ } }, { - "id": 13581, + "id": 21970, "properties": { "facing": "west", "half": "bottom", @@ -216141,7 +239866,7 @@ } }, { - "id": 13582, + "id": 21971, "properties": { "facing": "east", "half": "top", @@ -216150,7 +239875,7 @@ } }, { - "id": 13583, + "id": 21972, "properties": { "facing": "east", "half": "top", @@ -216159,7 +239884,7 @@ } }, { - "id": 13584, + "id": 21973, "properties": { "facing": "east", "half": "top", @@ -216168,7 +239893,7 @@ } }, { - "id": 13585, + "id": 21974, "properties": { "facing": "east", "half": "top", @@ -216177,7 +239902,7 @@ } }, { - "id": 13586, + "id": 21975, "properties": { "facing": "east", "half": "top", @@ -216186,7 +239911,7 @@ } }, { - "id": 13587, + "id": 21976, "properties": { "facing": "east", "half": "top", @@ -216195,7 +239920,7 @@ } }, { - "id": 13588, + "id": 21977, "properties": { "facing": "east", "half": "top", @@ -216204,7 +239929,7 @@ } }, { - "id": 13589, + "id": 21978, "properties": { "facing": "east", "half": "top", @@ -216213,7 +239938,7 @@ } }, { - "id": 13590, + "id": 21979, "properties": { "facing": "east", "half": "top", @@ -216222,7 +239947,7 @@ } }, { - "id": 13591, + "id": 21980, "properties": { "facing": "east", "half": "top", @@ -216231,7 +239956,7 @@ } }, { - "id": 13592, + "id": 21981, "properties": { "facing": "east", "half": "bottom", @@ -216240,7 +239965,7 @@ } }, { - "id": 13593, + "id": 21982, "properties": { "facing": "east", "half": "bottom", @@ -216249,7 +239974,7 @@ } }, { - "id": 13594, + "id": 21983, "properties": { "facing": "east", "half": "bottom", @@ -216258,7 +239983,7 @@ } }, { - "id": 13595, + "id": 21984, "properties": { "facing": "east", "half": "bottom", @@ -216267,7 +239992,7 @@ } }, { - "id": 13596, + "id": 21985, "properties": { "facing": "east", "half": "bottom", @@ -216276,7 +240001,7 @@ } }, { - "id": 13597, + "id": 21986, "properties": { "facing": "east", "half": "bottom", @@ -216285,7 +240010,7 @@ } }, { - "id": 13598, + "id": 21987, "properties": { "facing": "east", "half": "bottom", @@ -216294,7 +240019,7 @@ } }, { - "id": 13599, + "id": 21988, "properties": { "facing": "east", "half": "bottom", @@ -216303,3317 +240028,3633 @@ } }, { - "id": 13600, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13601, + "id": 21989, "properties": { "facing": "east", "half": "bottom", "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:smooth_stone": { - "states": [ - { - "default": true, - "id": 11306 - } - ] - }, - "minecraft:smooth_stone_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 11228, - "properties": { - "type": "top", "waterlogged": "true" } }, { - "id": 11229, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 11230, - "properties": { - "type": "bottom", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 11231, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 11232, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 11233, - "properties": { - "type": "double", - "waterlogged": "false" - } - } - ] - }, - "minecraft:sniffer_egg": { - "properties": { - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ - { - "default": true, - "id": 12800, - "properties": { - "hatch": "0" - } - }, - { - "id": 12801, - "properties": { - "hatch": "1" - } - }, - { - "id": 12802, - "properties": { - "hatch": "2" - } - } - ] - }, - "minecraft:snow": { - "properties": { - "layers": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8" - ] - }, - "states": [ - { - "default": true, - "id": 5772, - "properties": { - "layers": "1" - } - }, - { - "id": 5773, - "properties": { - "layers": "2" - } - }, - { - "id": 5774, - "properties": { - "layers": "3" - } - }, - { - "id": 5775, - "properties": { - "layers": "4" - } - }, - { - "id": 5776, - "properties": { - "layers": "5" - } - }, - { - "id": 5777, - "properties": { - "layers": "6" - } - }, - { - "id": 5778, - "properties": { - "layers": "7" - } - }, - { - "id": 5779, + "id": 21990, "properties": { - "layers": "8" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } } ] }, - "minecraft:snow_block": { - "states": [ - { - "default": true, - "id": 5781 - } - ] - }, - "minecraft:soul_campfire": { + "minecraft:tuff_brick_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "lit": [ - "true", - "false" + "north": [ + "none", + "low", + "tall" ], - "signal_fire": [ + "south": [ + "none", + "low", + "tall" + ], + "up": [ "true", "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { - "id": 18543, + "id": 21991, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 18544, + "id": 21992, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 18545, + "id": 21993, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { "default": true, - "id": 18546, + "id": 21994, "properties": { - "facing": "north", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 18547, + "id": 21995, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 18548, + "id": 21996, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18549, + "id": 21997, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 18550, + "id": 21998, "properties": { - "facing": "north", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 18551, + "id": 21999, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18552, + "id": 22000, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 18553, + "id": 22001, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 18554, + "id": 22002, "properties": { - "facing": "south", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18555, + "id": 22003, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 18556, + "id": 22004, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 18557, + "id": 22005, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18558, + "id": 22006, "properties": { - "facing": "south", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 18559, + "id": 22007, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 18560, + "id": 22008, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18561, + "id": 22009, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 18562, + "id": 22010, "properties": { - "facing": "west", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 18563, + "id": 22011, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18564, + "id": 22012, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 18565, + "id": 22013, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 18566, + "id": 22014, "properties": { - "facing": "west", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18567, + "id": 22015, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 18568, + "id": 22016, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 18569, + "id": 22017, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18570, + "id": 22018, "properties": { - "facing": "east", - "lit": "true", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 18571, + "id": 22019, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 18572, + "id": 22020, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 18573, + "id": 22021, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 18574, + "id": 22022, "properties": { - "facing": "east", - "lit": "false", - "signal_fire": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:soul_fire": { - "states": [ - { - "default": true, - "id": 2872 - } - ] - }, - "minecraft:soul_lantern": { - "properties": { - "hanging": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 18507, + "id": 22023, "properties": { - "hanging": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 18508, + "id": 22024, "properties": { - "hanging": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 18509, + "id": 22025, "properties": { - "hanging": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 18510, + "id": 22026, "properties": { - "hanging": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:soul_sand": { - "states": [ - { - "default": true, - "id": 5851 - } - ] - }, - "minecraft:soul_soil": { - "states": [ - { - "default": true, - "id": 5852 - } - ] - }, - "minecraft:soul_torch": { - "states": [ + }, { - "default": true, - "id": 5859 - } - ] - }, - "minecraft:soul_wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + "id": 22027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, { - "default": true, - "id": 5860, + "id": 22028, "properties": { - "facing": "north" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 5861, + "id": 22029, "properties": { - "facing": "south" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 5862, + "id": 22030, "properties": { - "facing": "west" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 5863, + "id": 22031, "properties": { - "facing": "east" + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:spawner": { - "states": [ + }, { - "default": true, - "id": 2873 - } - ] - }, - "minecraft:sponge": { - "states": [ + "id": 22032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, { - "default": true, - "id": 517 - } - ] - }, - "minecraft:spore_blossom": { - "states": [ + "id": 22033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, { - "default": true, - "id": 22509 - } - ] - }, - "minecraft:spruce_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + "id": 22034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, { - "id": 8635, + "id": 22035, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 8636, + "id": 22036, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 8637, + "id": 22037, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 8638, + "id": 22038, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 8639, + "id": 22039, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 8640, + "id": 22040, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 8641, + "id": 22041, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 8642, + "id": 22042, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 8643, + "id": 22043, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 8644, + "id": 22044, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 8645, + "id": 22045, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 8646, + "id": 22046, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 8647, + "id": 22047, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 8648, + "id": 22048, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 8649, + "id": 22049, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 8650, + "id": 22050, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 8651, + "id": 22051, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 8652, + "id": 22052, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 8653, + "id": 22053, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 8654, + "id": 22054, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 8655, + "id": 22055, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 8656, + "id": 22056, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 8657, + "id": 22057, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 8658, + "id": 22058, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } - } - ] - }, - "minecraft:spruce_door": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "upper", - "lower" - ], - "hinge": [ - "left", - "right" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11822, + "id": 22059, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11823, + "id": 22060, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11824, + "id": 22061, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11825, + "id": 22062, "properties": { - "facing": "north", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11826, + "id": 22063, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11827, + "id": 22064, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11828, + "id": 22065, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11829, + "id": 22066, "properties": { - "facing": "north", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11830, + "id": 22067, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11831, + "id": 22068, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11832, + "id": 22069, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 11833, + "id": 22070, "properties": { - "facing": "north", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11834, + "id": 22071, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11835, + "id": 22072, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11836, + "id": 22073, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11837, + "id": 22074, "properties": { - "facing": "north", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11838, + "id": 22075, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11839, + "id": 22076, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11840, + "id": 22077, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11841, + "id": 22078, "properties": { - "facing": "south", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11842, + "id": 22079, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11843, + "id": 22080, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11844, + "id": 22081, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11845, + "id": 22082, "properties": { - "facing": "south", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11846, + "id": 22083, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11847, + "id": 22084, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11848, + "id": 22085, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11849, + "id": 22086, "properties": { - "facing": "south", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11850, + "id": 22087, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11851, + "id": 22088, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11852, + "id": 22089, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11853, + "id": 22090, "properties": { - "facing": "south", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11854, + "id": 22091, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11855, + "id": 22092, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11856, + "id": 22093, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11857, + "id": 22094, "properties": { - "facing": "west", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11858, + "id": 22095, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11859, + "id": 22096, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11860, + "id": 22097, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11861, + "id": 22098, "properties": { - "facing": "west", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11862, + "id": 22099, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11863, + "id": 22100, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11864, + "id": 22101, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11865, + "id": 22102, "properties": { - "facing": "west", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11866, + "id": 22103, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11867, + "id": 22104, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11868, + "id": 22105, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11869, + "id": 22106, "properties": { - "facing": "west", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11870, + "id": 22107, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11871, + "id": 22108, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11872, + "id": 22109, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11873, + "id": 22110, "properties": { - "facing": "east", - "half": "upper", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11874, + "id": 22111, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11875, + "id": 22112, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11876, + "id": 22113, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11877, + "id": 22114, "properties": { - "facing": "east", - "half": "upper", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11878, + "id": 22115, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11879, + "id": 22116, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11880, + "id": 22117, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11881, + "id": 22118, "properties": { - "facing": "east", - "half": "lower", - "hinge": "left", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11882, + "id": 22119, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11883, + "id": 22120, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "true", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11884, + "id": 22121, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11885, + "id": 22122, "properties": { - "facing": "east", - "half": "lower", - "hinge": "right", - "open": "false", - "powered": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:spruce_fence": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11566, + "id": 22123, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 11567, + "id": 22124, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "true", - "west": "false" + "west": "low" } }, { - "id": 11568, + "id": 22125, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11569, + "id": 22126, "properties": { - "east": "true", - "north": "true", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "false" - } - }, - { - "id": 11570, - "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "west": "none" } }, { - "id": 11571, + "id": 22127, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11572, + "id": 22128, "properties": { - "east": "true", - "north": "true", - "south": "false", + "east": "low", + "north": "none", + "south": "tall", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "id": 11573, + "id": 22129, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11574, + "id": 22130, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "low" } }, { - "id": 11575, + "id": 22131, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "tall" } }, { - "id": 11576, + "id": 22132, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "true" + "west": "none" } }, { - "id": 11577, + "id": 22133, "properties": { - "east": "true", - "north": "false", - "south": "true", + "east": "low", + "north": "none", + "south": "tall", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "low" } }, { - "id": 11578, + "id": 22134, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11579, + "id": 22135, "properties": { - "east": "true", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "true", - "west": "false" + "west": "none" } }, { - "id": 11580, + "id": 22136, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11581, + "id": 22137, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11582, + "id": 22138, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11583, + "id": 22139, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11584, + "id": 22140, "properties": { - "east": "false", - "north": "true", - "south": "true", + "east": "low", + "north": "low", + "south": "none", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "id": 11585, + "id": 22141, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11586, + "id": 22142, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "true" + "west": "low" } }, { - "id": 11587, + "id": 22143, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "true", - "west": "false" + "west": "tall" } }, { - "id": 11588, + "id": 22144, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "true" + "west": "none" } }, { - "id": 11589, + "id": 22145, "properties": { - "east": "false", - "north": "true", - "south": "false", + "east": "low", + "north": "low", + "south": "none", + "up": "false", "waterlogged": "false", - "west": "false" + "west": "low" } }, { - "id": 11590, + "id": 22146, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11591, + "id": 22147, "properties": { - "east": "false", - "north": "false", - "south": "true", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "true", - "west": "false" + "west": "none" } }, { - "id": 11592, + "id": 22148, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11593, + "id": 22149, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11594, + "id": 22150, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11595, + "id": 22151, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11596, + "id": 22152, "properties": { - "east": "false", - "north": "false", - "south": "false", + "east": "low", + "north": "low", + "south": "low", + "up": "true", "waterlogged": "false", - "west": "true" + "west": "tall" } }, { - "default": true, - "id": 11597, + "id": 22153, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:spruce_fence_gate": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "in_wall": [ - "true", - "false" - ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11310, + "id": 22154, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11311, + "id": 22155, "properties": { - "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11312, + "id": 22156, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11313, + "id": 22157, "properties": { - "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11314, + "id": 22158, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11315, + "id": 22159, "properties": { - "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11316, + "id": 22160, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "default": true, - "id": 11317, + "id": 22161, "properties": { - "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11318, + "id": 22162, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11319, + "id": 22163, "properties": { - "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11320, + "id": 22164, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11321, + "id": 22165, "properties": { - "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11322, + "id": 22166, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11323, + "id": 22167, "properties": { - "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11324, + "id": 22168, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11325, + "id": 22169, "properties": { - "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11326, + "id": 22170, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11327, + "id": 22171, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11328, + "id": 22172, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11329, + "id": 22173, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11330, + "id": 22174, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 11331, + "id": 22175, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 11332, + "id": 22176, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11333, + "id": 22177, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 11334, + "id": 22178, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 11335, + "id": 22179, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11336, + "id": 22180, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 11337, + "id": 22181, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11338, + "id": 22182, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11339, + "id": 22183, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 11340, + "id": 22184, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11341, + "id": 22185, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:spruce_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4898, + "id": 22186, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4899, + "id": 22187, "properties": { - "attached": "true", - "rotation": "0", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4900, + "id": 22188, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4901, + "id": 22189, "properties": { - "attached": "true", - "rotation": "1", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4902, + "id": 22190, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4903, + "id": 22191, "properties": { - "attached": "true", - "rotation": "2", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4904, + "id": 22192, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4905, + "id": 22193, "properties": { - "attached": "true", - "rotation": "3", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4906, + "id": 22194, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4907, + "id": 22195, "properties": { - "attached": "true", - "rotation": "4", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4908, + "id": 22196, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4909, + "id": 22197, "properties": { - "attached": "true", - "rotation": "5", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4910, + "id": 22198, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4911, + "id": 22199, "properties": { - "attached": "true", - "rotation": "6", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4912, + "id": 22200, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4913, + "id": 22201, "properties": { - "attached": "true", - "rotation": "7", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4914, + "id": 22202, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4915, + "id": 22203, "properties": { - "attached": "true", - "rotation": "8", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4916, + "id": 22204, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4917, + "id": 22205, "properties": { - "attached": "true", - "rotation": "9", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4918, + "id": 22206, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4919, + "id": 22207, "properties": { - "attached": "true", - "rotation": "10", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4920, + "id": 22208, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4921, + "id": 22209, "properties": { - "attached": "true", - "rotation": "11", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4922, + "id": 22210, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4923, + "id": 22211, "properties": { - "attached": "true", - "rotation": "12", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4924, + "id": 22212, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4925, + "id": 22213, "properties": { - "attached": "true", - "rotation": "13", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4926, + "id": 22214, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4927, + "id": 22215, "properties": { - "attached": "true", - "rotation": "14", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4928, + "id": 22216, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4929, + "id": 22217, "properties": { - "attached": "true", - "rotation": "15", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4930, + "id": 22218, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 4931, + "id": 22219, "properties": { - "attached": "false", - "rotation": "0", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4932, + "id": 22220, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4933, + "id": 22221, "properties": { - "attached": "false", - "rotation": "1", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4934, + "id": 22222, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4935, + "id": 22223, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4936, + "id": 22224, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4937, + "id": 22225, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4938, + "id": 22226, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4939, + "id": 22227, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4940, + "id": 22228, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4941, + "id": 22229, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4942, + "id": 22230, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4943, + "id": 22231, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4944, + "id": 22232, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4945, + "id": 22233, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4946, + "id": 22234, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4947, + "id": 22235, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4948, + "id": 22236, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4949, + "id": 22237, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4950, + "id": 22238, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4951, + "id": 22239, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4952, + "id": 22240, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4953, + "id": 22241, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4954, + "id": 22242, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4955, + "id": 22243, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4956, + "id": 22244, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4957, + "id": 22245, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4958, + "id": 22246, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4959, + "id": 22247, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4960, + "id": 22248, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4961, - "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" - } - } - ] - }, - "minecraft:spruce_leaves": { - "properties": { - "distance": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ], - "persistent": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ - { - "id": 265, + "id": 22249, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 266, + "id": 22250, "properties": { - "distance": "1", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 267, + "id": 22251, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 268, + "id": 22252, "properties": { - "distance": "1", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 269, + "id": 22253, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 270, + "id": 22254, "properties": { - "distance": "2", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 271, + "id": 22255, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 272, + "id": 22256, "properties": { - "distance": "2", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 273, + "id": 22257, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 274, + "id": 22258, "properties": { - "distance": "3", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 275, + "id": 22259, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 276, + "id": 22260, "properties": { - "distance": "3", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 277, + "id": 22261, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 278, + "id": 22262, "properties": { - "distance": "4", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 279, + "id": 22263, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 280, + "id": 22264, "properties": { - "distance": "4", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 281, + "id": 22265, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 282, + "id": 22266, "properties": { - "distance": "5", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 283, + "id": 22267, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 284, + "id": 22268, "properties": { - "distance": "5", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 285, + "id": 22269, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 286, + "id": 22270, "properties": { - "distance": "6", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 287, + "id": 22271, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 288, + "id": 22272, "properties": { - "distance": "6", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 289, + "id": 22273, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 290, + "id": 22274, "properties": { - "distance": "7", - "persistent": "true", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 291, + "id": 22275, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "true" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 292, + "id": 22276, "properties": { - "distance": "7", - "persistent": "false", - "waterlogged": "false" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 133, + "id": 22277, "properties": { - "axis": "x" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "default": true, - "id": 134, + "id": 22278, "properties": { - "axis": "y" + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 135, + "id": 22279, "properties": { - "axis": "z" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:spruce_planks": { - "states": [ - { - "default": true, - "id": 16 - } - ] - }, - "minecraft:spruce_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5718, + "id": 22280, "properties": { - "powered": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "default": true, - "id": 5719, + "id": 22281, "properties": { - "powered": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:spruce_sapling": { - "properties": { - "stage": [ - "0", - "1" - ] - }, - "states": [ + }, { - "default": true, - "id": 27, + "id": 22282, "properties": { - "stage": "0" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 28, + "id": 22283, "properties": { - "stage": "1" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:spruce_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4334, + "id": 22284, "properties": { - "rotation": "0", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 4335, + "id": 22285, "properties": { - "rotation": "0", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4336, + "id": 22286, "properties": { - "rotation": "1", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4337, + "id": 22287, "properties": { - "rotation": "1", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4338, + "id": 22288, "properties": { - "rotation": "2", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4339, + "id": 22289, "properties": { - "rotation": "2", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4340, + "id": 22290, "properties": { - "rotation": "3", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4341, + "id": 22291, "properties": { - "rotation": "3", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4342, + "id": 22292, "properties": { - "rotation": "4", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4343, + "id": 22293, "properties": { - "rotation": "4", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4344, + "id": 22294, "properties": { - "rotation": "5", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4345, + "id": 22295, "properties": { - "rotation": "5", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4346, + "id": 22296, "properties": { - "rotation": "6", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4347, + "id": 22297, "properties": { - "rotation": "6", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4348, + "id": 22298, "properties": { - "rotation": "7", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4349, + "id": 22299, "properties": { - "rotation": "7", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4350, + "id": 22300, "properties": { - "rotation": "8", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4351, + "id": 22301, "properties": { - "rotation": "8", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4352, + "id": 22302, "properties": { - "rotation": "9", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4353, + "id": 22303, "properties": { - "rotation": "9", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4354, + "id": 22304, "properties": { - "rotation": "10", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4355, + "id": 22305, "properties": { - "rotation": "10", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4356, + "id": 22306, "properties": { - "rotation": "11", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4357, + "id": 22307, "properties": { - "rotation": "11", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4358, + "id": 22308, "properties": { - "rotation": "12", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4359, + "id": 22309, "properties": { - "rotation": "12", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 4360, + "id": 22310, "properties": { - "rotation": "13", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 4361, + "id": 22311, "properties": { - "rotation": "13", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4362, + "id": 22312, "properties": { - "rotation": "14", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 4363, + "id": 22313, "properties": { - "rotation": "14", - "waterlogged": "false" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 4364, + "id": 22314, "properties": { - "rotation": "15", - "waterlogged": "true" + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - }, + } + ] + }, + "minecraft:tuff_bricks": { + "states": [ { - "id": 4365, - "properties": { - "rotation": "15", - "waterlogged": "false" - } + "default": true, + "id": 21904 } ] }, - "minecraft:spruce_slab": { + "minecraft:tuff_slab": { "properties": { "type": [ "top", @@ -219627,21 +243668,21 @@ }, "states": [ { - "id": 11168, + "id": 21082, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11169, + "id": 21083, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11170, + "id": 21084, "properties": { "type": "bottom", "waterlogged": "true" @@ -219649,21 +243690,21 @@ }, { "default": true, - "id": 11171, + "id": 21085, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11172, + "id": 21086, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11173, + "id": 21087, "properties": { "type": "double", "waterlogged": "false" @@ -219671,7 +243712,7 @@ } ] }, - "minecraft:spruce_stairs": { + "minecraft:tuff_stairs": { "properties": { "facing": [ "north", @@ -219697,7 +243738,7 @@ }, "states": [ { - "id": 7666, + "id": 21088, "properties": { "facing": "north", "half": "top", @@ -219706,7 +243747,7 @@ } }, { - "id": 7667, + "id": 21089, "properties": { "facing": "north", "half": "top", @@ -219715,7 +243756,7 @@ } }, { - "id": 7668, + "id": 21090, "properties": { "facing": "north", "half": "top", @@ -219724,7 +243765,7 @@ } }, { - "id": 7669, + "id": 21091, "properties": { "facing": "north", "half": "top", @@ -219733,7 +243774,7 @@ } }, { - "id": 7670, + "id": 21092, "properties": { "facing": "north", "half": "top", @@ -219742,7 +243783,7 @@ } }, { - "id": 7671, + "id": 21093, "properties": { "facing": "north", "half": "top", @@ -219751,7 +243792,7 @@ } }, { - "id": 7672, + "id": 21094, "properties": { "facing": "north", "half": "top", @@ -219760,7 +243801,7 @@ } }, { - "id": 7673, + "id": 21095, "properties": { "facing": "north", "half": "top", @@ -219769,7 +243810,7 @@ } }, { - "id": 7674, + "id": 21096, "properties": { "facing": "north", "half": "top", @@ -219778,7 +243819,7 @@ } }, { - "id": 7675, + "id": 21097, "properties": { "facing": "north", "half": "top", @@ -219787,7 +243828,7 @@ } }, { - "id": 7676, + "id": 21098, "properties": { "facing": "north", "half": "bottom", @@ -219797,7 +243838,7 @@ }, { "default": true, - "id": 7677, + "id": 21099, "properties": { "facing": "north", "half": "bottom", @@ -219806,7 +243847,7 @@ } }, { - "id": 7678, + "id": 21100, "properties": { "facing": "north", "half": "bottom", @@ -219815,7 +243856,7 @@ } }, { - "id": 7679, + "id": 21101, "properties": { "facing": "north", "half": "bottom", @@ -219824,7 +243865,7 @@ } }, { - "id": 7680, + "id": 21102, "properties": { "facing": "north", "half": "bottom", @@ -219833,7 +243874,7 @@ } }, { - "id": 7681, + "id": 21103, "properties": { "facing": "north", "half": "bottom", @@ -219842,7 +243883,7 @@ } }, { - "id": 7682, + "id": 21104, "properties": { "facing": "north", "half": "bottom", @@ -219851,7 +243892,7 @@ } }, { - "id": 7683, + "id": 21105, "properties": { "facing": "north", "half": "bottom", @@ -219860,7 +243901,7 @@ } }, { - "id": 7684, + "id": 21106, "properties": { "facing": "north", "half": "bottom", @@ -219869,7 +243910,7 @@ } }, { - "id": 7685, + "id": 21107, "properties": { "facing": "north", "half": "bottom", @@ -219878,7 +243919,7 @@ } }, { - "id": 7686, + "id": 21108, "properties": { "facing": "south", "half": "top", @@ -219887,7 +243928,7 @@ } }, { - "id": 7687, + "id": 21109, "properties": { "facing": "south", "half": "top", @@ -219896,7 +243937,7 @@ } }, { - "id": 7688, + "id": 21110, "properties": { "facing": "south", "half": "top", @@ -219905,7 +243946,7 @@ } }, { - "id": 7689, + "id": 21111, "properties": { "facing": "south", "half": "top", @@ -219914,7 +243955,7 @@ } }, { - "id": 7690, + "id": 21112, "properties": { "facing": "south", "half": "top", @@ -219923,7 +243964,7 @@ } }, { - "id": 7691, + "id": 21113, "properties": { "facing": "south", "half": "top", @@ -219932,7 +243973,7 @@ } }, { - "id": 7692, + "id": 21114, "properties": { "facing": "south", "half": "top", @@ -219941,7 +243982,7 @@ } }, { - "id": 7693, + "id": 21115, "properties": { "facing": "south", "half": "top", @@ -219950,7 +243991,7 @@ } }, { - "id": 7694, + "id": 21116, "properties": { "facing": "south", "half": "top", @@ -219959,7 +244000,7 @@ } }, { - "id": 7695, + "id": 21117, "properties": { "facing": "south", "half": "top", @@ -219968,7 +244009,7 @@ } }, { - "id": 7696, + "id": 21118, "properties": { "facing": "south", "half": "bottom", @@ -219977,7 +244018,7 @@ } }, { - "id": 7697, + "id": 21119, "properties": { "facing": "south", "half": "bottom", @@ -219986,7 +244027,7 @@ } }, { - "id": 7698, + "id": 21120, "properties": { "facing": "south", "half": "bottom", @@ -219995,7 +244036,7 @@ } }, { - "id": 7699, + "id": 21121, "properties": { "facing": "south", "half": "bottom", @@ -220004,7 +244045,7 @@ } }, { - "id": 7700, + "id": 21122, "properties": { "facing": "south", "half": "bottom", @@ -220013,7 +244054,7 @@ } }, { - "id": 7701, + "id": 21123, "properties": { "facing": "south", "half": "bottom", @@ -220022,7 +244063,7 @@ } }, { - "id": 7702, + "id": 21124, "properties": { "facing": "south", "half": "bottom", @@ -220031,7 +244072,7 @@ } }, { - "id": 7703, + "id": 21125, "properties": { "facing": "south", "half": "bottom", @@ -220040,7 +244081,7 @@ } }, { - "id": 7704, + "id": 21126, "properties": { "facing": "south", "half": "bottom", @@ -220049,7 +244090,7 @@ } }, { - "id": 7705, + "id": 21127, "properties": { "facing": "south", "half": "bottom", @@ -220058,7 +244099,7 @@ } }, { - "id": 7706, + "id": 21128, "properties": { "facing": "west", "half": "top", @@ -220067,7 +244108,7 @@ } }, { - "id": 7707, + "id": 21129, "properties": { "facing": "west", "half": "top", @@ -220076,7 +244117,7 @@ } }, { - "id": 7708, + "id": 21130, "properties": { "facing": "west", "half": "top", @@ -220085,7 +244126,7 @@ } }, { - "id": 7709, + "id": 21131, "properties": { "facing": "west", "half": "top", @@ -220094,7 +244135,7 @@ } }, { - "id": 7710, + "id": 21132, "properties": { "facing": "west", "half": "top", @@ -220103,7 +244144,7 @@ } }, { - "id": 7711, + "id": 21133, "properties": { "facing": "west", "half": "top", @@ -220112,7 +244153,7 @@ } }, { - "id": 7712, + "id": 21134, "properties": { "facing": "west", "half": "top", @@ -220121,7 +244162,7 @@ } }, { - "id": 7713, + "id": 21135, "properties": { "facing": "west", "half": "top", @@ -220130,7 +244171,7 @@ } }, { - "id": 7714, + "id": 21136, "properties": { "facing": "west", "half": "top", @@ -220139,7 +244180,7 @@ } }, { - "id": 7715, + "id": 21137, "properties": { "facing": "west", "half": "top", @@ -220148,7 +244189,7 @@ } }, { - "id": 7716, + "id": 21138, "properties": { "facing": "west", "half": "bottom", @@ -220157,7 +244198,7 @@ } }, { - "id": 7717, + "id": 21139, "properties": { "facing": "west", "half": "bottom", @@ -220166,7 +244207,7 @@ } }, { - "id": 7718, + "id": 21140, "properties": { "facing": "west", "half": "bottom", @@ -220175,7 +244216,7 @@ } }, { - "id": 7719, + "id": 21141, "properties": { "facing": "west", "half": "bottom", @@ -220184,7 +244225,7 @@ } }, { - "id": 7720, + "id": 21142, "properties": { "facing": "west", "half": "bottom", @@ -220193,7 +244234,7 @@ } }, { - "id": 7721, + "id": 21143, "properties": { "facing": "west", "half": "bottom", @@ -220202,7 +244243,7 @@ } }, { - "id": 7722, + "id": 21144, "properties": { "facing": "west", "half": "bottom", @@ -220211,7 +244252,7 @@ } }, { - "id": 7723, + "id": 21145, "properties": { "facing": "west", "half": "bottom", @@ -220220,7 +244261,7 @@ } }, { - "id": 7724, + "id": 21146, "properties": { "facing": "west", "half": "bottom", @@ -220229,7 +244270,7 @@ } }, { - "id": 7725, + "id": 21147, "properties": { "facing": "west", "half": "bottom", @@ -220238,7 +244279,7 @@ } }, { - "id": 7726, + "id": 21148, "properties": { "facing": "east", "half": "top", @@ -220247,7 +244288,7 @@ } }, { - "id": 7727, + "id": 21149, "properties": { "facing": "east", "half": "top", @@ -220256,7 +244297,7 @@ } }, { - "id": 7728, + "id": 21150, "properties": { "facing": "east", "half": "top", @@ -220265,7 +244306,7 @@ } }, { - "id": 7729, + "id": 21151, "properties": { "facing": "east", "half": "top", @@ -220274,7 +244315,7 @@ } }, { - "id": 7730, + "id": 21152, "properties": { "facing": "east", "half": "top", @@ -220283,7 +244324,7 @@ } }, { - "id": 7731, + "id": 21153, "properties": { "facing": "east", "half": "top", @@ -220292,7 +244333,7 @@ } }, { - "id": 7732, + "id": 21154, "properties": { "facing": "east", "half": "top", @@ -220301,7 +244342,7 @@ } }, { - "id": 7733, + "id": 21155, "properties": { "facing": "east", "half": "top", @@ -220310,7 +244351,7 @@ } }, { - "id": 7734, + "id": 21156, "properties": { "facing": "east", "half": "top", @@ -220319,7 +244360,7 @@ } }, { - "id": 7735, + "id": 21157, "properties": { "facing": "east", "half": "top", @@ -220328,7 +244369,7 @@ } }, { - "id": 7736, + "id": 21158, "properties": { "facing": "east", "half": "bottom", @@ -220337,7 +244378,7 @@ } }, { - "id": 7737, + "id": 21159, "properties": { "facing": "east", "half": "bottom", @@ -220346,7 +244387,7 @@ } }, { - "id": 7738, + "id": 21160, "properties": { "facing": "east", "half": "bottom", @@ -220355,7 +244396,7 @@ } }, { - "id": 7739, + "id": 21161, "properties": { "facing": "east", "half": "bottom", @@ -220364,7 +244405,7 @@ } }, { - "id": 7740, + "id": 21162, "properties": { "facing": "east", "half": "bottom", @@ -220373,7 +244414,7 @@ } }, { - "id": 7741, + "id": 21163, "properties": { "facing": "east", "half": "bottom", @@ -220382,7 +244423,7 @@ } }, { - "id": 7742, + "id": 21164, "properties": { "facing": "east", "half": "bottom", @@ -220391,7 +244432,7 @@ } }, { - "id": 7743, + "id": 21165, "properties": { "facing": "east", "half": "bottom", @@ -220400,7 +244441,7 @@ } }, { - "id": 7744, + "id": 21166, "properties": { "facing": "east", "half": "bottom", @@ -220409,7 +244450,7 @@ } }, { - "id": 7745, + "id": 21167, "properties": { "facing": "east", "half": "bottom", @@ -220419,1804 +244460,2419 @@ } ] }, - "minecraft:spruce_trapdoor": { + "minecraft:tuff_wall": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" + "east": [ + "none", + "low", + "tall" ], - "half": [ - "top", - "bottom" + "north": [ + "none", + "low", + "tall" ], - "open": [ - "true", - "false" + "south": [ + "none", + "low", + "tall" ], - "powered": [ + "up": [ "true", "false" ], "waterlogged": [ "true", "false" + ], + "west": [ + "none", + "low", + "tall" ] }, "states": [ { - "id": 6026, + "id": 21168, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6027, + "id": 21169, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6028, + "id": 21170, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6029, + "default": true, + "id": 21171, "properties": { - "facing": "north", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6030, + "id": 21172, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 6031, + "id": 21173, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6032, + "id": 21174, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6033, + "id": 21175, "properties": { - "facing": "north", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 6034, + "id": 21176, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6035, + "id": 21177, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6036, + "id": 21178, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 6037, + "id": 21179, "properties": { - "facing": "north", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6038, + "id": 21180, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6039, + "id": 21181, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6040, + "id": 21182, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 6041, + "id": 21183, "properties": { - "facing": "north", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6042, + "id": 21184, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 6043, + "id": 21185, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6044, + "id": 21186, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6045, + "id": 21187, "properties": { - "facing": "south", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 6046, + "id": 21188, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6047, + "id": 21189, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6048, + "id": 21190, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 6049, + "id": 21191, "properties": { - "facing": "south", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6050, + "id": 21192, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6051, + "id": 21193, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6052, + "id": 21194, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6053, + "id": 21195, "properties": { - "facing": "south", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6054, + "id": 21196, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 6055, + "id": 21197, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6056, + "id": 21198, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6057, + "id": 21199, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21200, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21201, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21202, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21203, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21208, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21209, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21210, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21211, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21212, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21213, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21214, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21215, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21220, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21221, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21222, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21223, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21224, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21225, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21226, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21227, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21232, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21233, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21234, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6058, + "id": 21235, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 6059, + "id": 21236, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6060, + "id": 21237, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6061, + "id": 21238, "properties": { - "facing": "west", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 6062, + "id": 21239, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6063, + "id": 21240, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6064, + "id": 21241, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6065, + "id": 21242, "properties": { - "facing": "west", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6066, + "id": 21243, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6067, + "id": 21244, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 6068, + "id": 21245, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6069, + "id": 21246, "properties": { - "facing": "west", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6070, + "id": 21247, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 6071, + "id": 21248, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6072, + "id": 21249, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6073, + "id": 21250, "properties": { - "facing": "west", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 6074, + "id": 21251, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6075, + "id": 21252, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6076, + "id": 21253, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6077, + "id": 21254, "properties": { - "facing": "east", - "half": "top", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6078, + "id": 21255, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 6079, + "id": 21256, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 6080, + "id": 21257, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6081, + "id": 21258, "properties": { - "facing": "east", - "half": "top", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 6082, + "id": 21259, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 6083, + "id": 21260, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 6084, + "id": 21261, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 6085, + "id": 21262, "properties": { - "facing": "east", - "half": "bottom", - "open": "true", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 6086, + "id": 21263, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 6087, + "id": 21264, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "true", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 6088, + "id": 21265, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 6089, + "id": 21266, "properties": { - "facing": "east", - "half": "bottom", - "open": "false", - "powered": "false", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } - } - ] - }, - "minecraft:spruce_wall_hanging_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5546, + "id": 21267, "properties": { - "facing": "north", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 5547, + "id": 21268, "properties": { - "facing": "north", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 5548, + "id": 21269, "properties": { - "facing": "south", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 5549, + "id": 21270, "properties": { - "facing": "south", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 5550, + "id": 21271, "properties": { - "facing": "west", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 5551, + "id": 21272, "properties": { - "facing": "west", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 5552, + "id": 21273, "properties": { - "facing": "east", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 5553, + "id": 21274, "properties": { - "facing": "east", - "waterlogged": "false" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } - } - ] - }, - "minecraft:spruce_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 4770, + "id": 21275, "properties": { - "facing": "north", - "waterlogged": "true" + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "default": true, - "id": 4771, + "id": 21276, "properties": { - "facing": "north", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 4772, + "id": 21277, "properties": { - "facing": "south", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 4773, + "id": 21278, "properties": { - "facing": "south", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 4774, + "id": 21279, "properties": { - "facing": "west", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 4775, + "id": 21280, "properties": { - "facing": "west", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 4776, + "id": 21281, "properties": { - "facing": "east", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 4777, + "id": 21282, "properties": { - "facing": "east", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } - } - ] - }, - "minecraft:spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 192, + "id": 21283, "properties": { - "axis": "x" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "default": true, - "id": 193, + "id": 21284, "properties": { - "axis": "y" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 194, + "id": 21285, "properties": { - "axis": "z" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:sticky_piston": { - "properties": { - "extended": [ - "true", - "false" - ], - "facing": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - "states": [ + }, { - "id": 1992, + "id": 21286, "properties": { - "extended": "true", - "facing": "north" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 1993, + "id": 21287, "properties": { - "extended": "true", - "facing": "east" + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 1994, + "id": 21288, "properties": { - "extended": "true", - "facing": "south" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 1995, + "id": 21289, "properties": { - "extended": "true", - "facing": "west" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 1996, + "id": 21290, "properties": { - "extended": "true", - "facing": "up" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 1997, + "id": 21291, "properties": { - "extended": "true", - "facing": "down" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "default": true, - "id": 1998, + "id": 21292, "properties": { - "extended": "false", - "facing": "north" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 1999, + "id": 21293, "properties": { - "extended": "false", - "facing": "east" + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 2000, + "id": 21294, "properties": { - "extended": "false", - "facing": "south" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 2001, + "id": 21295, "properties": { - "extended": "false", - "facing": "west" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 2002, + "id": 21296, "properties": { - "extended": "false", - "facing": "up" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 2003, + "id": 21297, "properties": { - "extended": "false", - "facing": "down" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:stone": { - "states": [ - { - "default": true, - "id": 1 - } - ] - }, - "minecraft:stone_brick_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 11264, + "id": 21298, "properties": { - "type": "top", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 11265, + "id": 21299, "properties": { - "type": "top", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 11266, + "id": 21300, "properties": { - "type": "bottom", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "default": true, - "id": 11267, + "id": 21301, "properties": { - "type": "bottom", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 11268, + "id": 21302, "properties": { - "type": "double", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 11269, + "id": 21303, "properties": { - "type": "double", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } - } - ] - }, - "minecraft:stone_brick_stairs": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 7109, + "id": 21304, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7110, + "id": 21305, "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7111, + "id": 21306, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7112, + "id": 21307, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7113, + "id": 21308, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7114, + "id": 21309, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7115, + "id": 21310, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7116, + "id": 21311, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7117, + "id": 21312, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7118, + "id": 21313, "properties": { - "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7119, + "id": 21314, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "default": true, - "id": 7120, + "id": 21315, "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7121, + "id": 21316, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7122, + "id": 21317, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7123, + "id": 21318, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7124, + "id": 21319, "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7125, + "id": 21320, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7126, + "id": 21321, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7127, + "id": 21322, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7128, + "id": 21323, "properties": { - "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7129, + "id": 21324, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7130, + "id": 21325, "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7131, + "id": 21326, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7132, + "id": 21327, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7133, + "id": 21328, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7134, + "id": 21329, "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7135, + "id": 21330, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7136, + "id": 21331, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7137, + "id": 21332, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7138, + "id": 21333, "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7139, + "id": 21334, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7140, + "id": 21335, "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7141, + "id": 21336, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7142, + "id": 21337, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7143, + "id": 21338, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7144, + "id": 21339, "properties": { - "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7145, + "id": 21340, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7146, + "id": 21341, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7147, + "id": 21342, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7148, + "id": 21343, "properties": { - "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7149, + "id": 21344, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7150, + "id": 21345, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7151, + "id": 21346, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7152, + "id": 21347, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7153, + "id": 21348, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7154, + "id": 21349, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7155, + "id": 21350, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7156, + "id": 21351, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7157, + "id": 21352, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7158, + "id": 21353, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7159, + "id": 21354, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7160, + "id": 21355, "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7161, + "id": 21356, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7162, + "id": 21357, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7163, + "id": 21358, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7164, + "id": 21359, "properties": { - "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7165, + "id": 21360, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7166, + "id": 21361, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7167, + "id": 21362, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7168, + "id": 21363, "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7169, + "id": 21364, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7170, + "id": 21365, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7171, + "id": 21366, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7172, + "id": 21367, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7173, + "id": 21368, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7174, + "id": 21369, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7175, + "id": 21370, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7176, + "id": 21371, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7177, + "id": 21372, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" } }, { - "id": 7178, + "id": 21373, "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" } }, { - "id": 7179, + "id": 21374, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7180, + "id": 21375, "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" } }, { - "id": 7181, + "id": 21376, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" } }, { - "id": 7182, + "id": 21377, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" } }, { - "id": 7183, + "id": 21378, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" } }, { - "id": 7184, + "id": 21379, "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" } }, { - "id": 7185, + "id": 21380, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" } }, { - "id": 7186, + "id": 21381, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" } }, { - "id": 7187, + "id": 21382, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" } }, { - "id": 7188, + "id": 21383, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" } - } - ] - }, - "minecraft:stone_brick_wall": { - "properties": { - "east": [ - "none", - "low", - "tall" - ], - "north": [ - "none", - "low", - "tall" - ], - "south": [ - "none", - "low", - "tall" - ], - "up": [ - "true", - "false" - ], - "waterlogged": [ - "true", - "false" - ], - "west": [ - "none", - "low", - "tall" - ] - }, - "states": [ + }, { - "id": 15780, + "id": 21384, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222225,9 +246881,9 @@ } }, { - "id": 15781, + "id": 21385, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222236,9 +246892,9 @@ } }, { - "id": 15782, + "id": 21386, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222247,10 +246903,9 @@ } }, { - "default": true, - "id": 15783, + "id": 21387, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222259,9 +246914,9 @@ } }, { - "id": 15784, + "id": 21388, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222270,9 +246925,9 @@ } }, { - "id": 15785, + "id": 21389, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "true", @@ -222281,9 +246936,9 @@ } }, { - "id": 15786, + "id": 21390, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222292,9 +246947,9 @@ } }, { - "id": 15787, + "id": 21391, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222303,9 +246958,9 @@ } }, { - "id": 15788, + "id": 21392, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222314,9 +246969,9 @@ } }, { - "id": 15789, + "id": 21393, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222325,9 +246980,9 @@ } }, { - "id": 15790, + "id": 21394, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222336,9 +246991,9 @@ } }, { - "id": 15791, + "id": 21395, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "none", "up": "false", @@ -222347,9 +247002,9 @@ } }, { - "id": 15792, + "id": 21396, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222358,9 +247013,9 @@ } }, { - "id": 15793, + "id": 21397, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222369,9 +247024,9 @@ } }, { - "id": 15794, + "id": 21398, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222380,9 +247035,9 @@ } }, { - "id": 15795, + "id": 21399, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222391,9 +247046,9 @@ } }, { - "id": 15796, + "id": 21400, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222402,9 +247057,9 @@ } }, { - "id": 15797, + "id": 21401, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "true", @@ -222413,9 +247068,9 @@ } }, { - "id": 15798, + "id": 21402, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222424,9 +247079,9 @@ } }, { - "id": 15799, + "id": 21403, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222435,9 +247090,9 @@ } }, { - "id": 15800, + "id": 21404, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222446,9 +247101,9 @@ } }, { - "id": 15801, + "id": 21405, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222457,9 +247112,9 @@ } }, { - "id": 15802, + "id": 21406, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222468,9 +247123,9 @@ } }, { - "id": 15803, + "id": 21407, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "low", "up": "false", @@ -222479,9 +247134,9 @@ } }, { - "id": 15804, + "id": 21408, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222490,9 +247145,9 @@ } }, { - "id": 15805, + "id": 21409, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222501,9 +247156,9 @@ } }, { - "id": 15806, + "id": 21410, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222512,9 +247167,9 @@ } }, { - "id": 15807, + "id": 21411, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222523,9 +247178,9 @@ } }, { - "id": 15808, + "id": 21412, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222534,9 +247189,9 @@ } }, { - "id": 15809, + "id": 21413, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "true", @@ -222545,9 +247200,9 @@ } }, { - "id": 15810, + "id": 21414, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222556,9 +247211,9 @@ } }, { - "id": 15811, + "id": 21415, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222567,9 +247222,9 @@ } }, { - "id": 15812, + "id": 21416, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222578,9 +247233,9 @@ } }, { - "id": 15813, + "id": 21417, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222589,9 +247244,9 @@ } }, { - "id": 15814, + "id": 21418, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222600,9 +247255,9 @@ } }, { - "id": 15815, + "id": 21419, "properties": { - "east": "none", + "east": "tall", "north": "none", "south": "tall", "up": "false", @@ -222611,9 +247266,9 @@ } }, { - "id": 15816, + "id": 21420, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222622,9 +247277,9 @@ } }, { - "id": 15817, + "id": 21421, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222633,9 +247288,9 @@ } }, { - "id": 15818, + "id": 21422, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222644,9 +247299,9 @@ } }, { - "id": 15819, + "id": 21423, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222655,9 +247310,9 @@ } }, { - "id": 15820, + "id": 21424, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222666,9 +247321,9 @@ } }, { - "id": 15821, + "id": 21425, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "true", @@ -222677,9 +247332,9 @@ } }, { - "id": 15822, + "id": 21426, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222688,9 +247343,9 @@ } }, { - "id": 15823, + "id": 21427, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222699,9 +247354,9 @@ } }, { - "id": 15824, + "id": 21428, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222710,9 +247365,9 @@ } }, { - "id": 15825, + "id": 21429, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222721,9 +247376,9 @@ } }, { - "id": 15826, + "id": 21430, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222732,9 +247387,9 @@ } }, { - "id": 15827, + "id": 21431, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "none", "up": "false", @@ -222743,9 +247398,9 @@ } }, { - "id": 15828, + "id": 21432, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222754,9 +247409,9 @@ } }, { - "id": 15829, + "id": 21433, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222765,9 +247420,9 @@ } }, { - "id": 15830, + "id": 21434, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222776,9 +247431,9 @@ } }, { - "id": 15831, + "id": 21435, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222787,9 +247442,9 @@ } }, { - "id": 15832, + "id": 21436, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222798,9 +247453,9 @@ } }, { - "id": 15833, + "id": 21437, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "true", @@ -222809,9 +247464,9 @@ } }, { - "id": 15834, + "id": 21438, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222820,9 +247475,9 @@ } }, { - "id": 15835, + "id": 21439, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222831,9 +247486,9 @@ } }, { - "id": 15836, + "id": 21440, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222842,9 +247497,9 @@ } }, { - "id": 15837, + "id": 21441, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222853,9 +247508,9 @@ } }, { - "id": 15838, + "id": 21442, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222864,9 +247519,9 @@ } }, { - "id": 15839, + "id": 21443, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "low", "up": "false", @@ -222875,9 +247530,9 @@ } }, { - "id": 15840, + "id": 21444, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222886,9 +247541,9 @@ } }, { - "id": 15841, + "id": 21445, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222897,9 +247552,9 @@ } }, { - "id": 15842, + "id": 21446, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222908,9 +247563,9 @@ } }, { - "id": 15843, + "id": 21447, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222919,9 +247574,9 @@ } }, { - "id": 15844, + "id": 21448, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222930,9 +247585,9 @@ } }, { - "id": 15845, + "id": 21449, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "true", @@ -222941,9 +247596,9 @@ } }, { - "id": 15846, + "id": 21450, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -222952,9 +247607,9 @@ } }, { - "id": 15847, + "id": 21451, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -222963,9 +247618,9 @@ } }, { - "id": 15848, + "id": 21452, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -222974,9 +247629,9 @@ } }, { - "id": 15849, + "id": 21453, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -222985,9 +247640,9 @@ } }, { - "id": 15850, + "id": 21454, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -222996,9 +247651,9 @@ } }, { - "id": 15851, + "id": 21455, "properties": { - "east": "none", + "east": "tall", "north": "low", "south": "tall", "up": "false", @@ -223007,9 +247662,9 @@ } }, { - "id": 15852, + "id": 21456, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223018,9 +247673,9 @@ } }, { - "id": 15853, + "id": 21457, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223029,9 +247684,9 @@ } }, { - "id": 15854, + "id": 21458, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223040,9 +247695,9 @@ } }, { - "id": 15855, + "id": 21459, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223051,9 +247706,9 @@ } }, { - "id": 15856, + "id": 21460, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223062,9 +247717,9 @@ } }, { - "id": 15857, + "id": 21461, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "true", @@ -223073,9 +247728,9 @@ } }, { - "id": 15858, + "id": 21462, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223084,9 +247739,9 @@ } }, { - "id": 15859, + "id": 21463, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223095,9 +247750,9 @@ } }, { - "id": 15860, + "id": 21464, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223106,9 +247761,9 @@ } }, { - "id": 15861, + "id": 21465, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223117,9 +247772,9 @@ } }, { - "id": 15862, + "id": 21466, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223128,9 +247783,9 @@ } }, { - "id": 15863, + "id": 21467, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "none", "up": "false", @@ -223139,9 +247794,9 @@ } }, { - "id": 15864, + "id": 21468, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223150,9 +247805,9 @@ } }, { - "id": 15865, + "id": 21469, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223161,9 +247816,9 @@ } }, { - "id": 15866, + "id": 21470, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223172,9 +247827,9 @@ } }, { - "id": 15867, + "id": 21471, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223183,9 +247838,9 @@ } }, { - "id": 15868, + "id": 21472, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223194,9 +247849,9 @@ } }, { - "id": 15869, + "id": 21473, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "true", @@ -223205,9 +247860,9 @@ } }, { - "id": 15870, + "id": 21474, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223216,9 +247871,9 @@ } }, { - "id": 15871, + "id": 21475, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223227,9 +247882,9 @@ } }, { - "id": 15872, + "id": 21476, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223238,9 +247893,9 @@ } }, { - "id": 15873, + "id": 21477, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223249,9 +247904,9 @@ } }, { - "id": 15874, + "id": 21478, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223260,9 +247915,9 @@ } }, { - "id": 15875, + "id": 21479, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "low", "up": "false", @@ -223271,9 +247926,9 @@ } }, { - "id": 15876, + "id": 21480, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223282,9 +247937,9 @@ } }, { - "id": 15877, + "id": 21481, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223293,9 +247948,9 @@ } }, { - "id": 15878, + "id": 21482, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223304,9 +247959,9 @@ } }, { - "id": 15879, + "id": 21483, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223315,9 +247970,9 @@ } }, { - "id": 15880, + "id": 21484, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223326,9 +247981,9 @@ } }, { - "id": 15881, + "id": 21485, "properties": { - "east": "none", + "east": "tall", "north": "tall", "south": "tall", "up": "true", @@ -223337,2695 +247992,3223 @@ } }, { - "id": 15882, + "id": 21486, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21487, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21488, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21489, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21490, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21491, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:turtle_egg": { + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12788, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 12789, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 12790, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 12791, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 12792, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 12793, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 12794, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 12795, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 12796, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 12797, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 12798, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 12799, + "properties": { + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 18638, + "properties": { + "age": "0" + } + }, + { + "id": 18639, + "properties": { + "age": "1" + } + }, + { + "id": 18640, + "properties": { + "age": "2" + } + }, + { + "id": 18641, + "properties": { + "age": "3" + } + }, + { + "id": 18642, + "properties": { + "age": "4" + } + }, + { + "id": 18643, + "properties": { + "age": "5" + } + }, + { + "id": 18644, + "properties": { + "age": "6" + } + }, + { + "id": 18645, + "properties": { + "age": "7" + } + }, + { + "id": 18646, + "properties": { + "age": "8" + } + }, + { + "id": 18647, + "properties": { + "age": "9" + } + }, + { + "id": 18648, + "properties": { + "age": "10" + } + }, + { + "id": 18649, + "properties": { + "age": "11" + } + }, + { + "id": 18650, + "properties": { + "age": "12" + } + }, + { + "id": 18651, + "properties": { + "age": "13" + } + }, + { + "id": 18652, + "properties": { + "age": "14" + } + }, + { + "id": 18653, + "properties": { + "age": "15" + } + }, + { + "id": 18654, + "properties": { + "age": "16" + } + }, + { + "id": 18655, + "properties": { + "age": "17" + } + }, + { + "id": 18656, + "properties": { + "age": "18" + } + }, + { + "id": 18657, + "properties": { + "age": "19" + } + }, + { + "id": 18658, + "properties": { + "age": "20" + } + }, + { + "id": 18659, + "properties": { + "age": "21" + } + }, + { + "id": 18660, + "properties": { + "age": "22" + } + }, + { + "id": 18661, + "properties": { + "age": "23" + } + }, + { + "id": 18662, + "properties": { + "age": "24" + } + }, + { + "id": 18663, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "states": [ + { + "default": true, + "id": 18664 + } + ] + }, + "minecraft:verdant_froglight": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26566, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26567, + "properties": { + "axis": "y" + } + }, + { + "id": 26568, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6837, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6838, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6839, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6840, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6841, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6842, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6843, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6844, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6845, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6846, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6847, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6848, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6849, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6850, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6851, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6852, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6853, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6854, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6855, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6856, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6857, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6858, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6859, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6860, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6861, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6862, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6864, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6867, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6868, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "states": [ + { + "default": true, + "id": 12958 + } + ] + }, + "minecraft:wall_torch": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 2356, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north" } }, { - "id": 15883, + "id": 2357, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south" } }, { - "id": 15884, + "id": 2358, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west" } }, { - "id": 15885, + "id": 2359, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east" } - }, + } + ] + }, + "minecraft:warped_button": { + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15886, + "id": 19124, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "face": "floor", + "facing": "north", + "powered": "true" } }, { - "id": 15887, + "id": 19125, "properties": { - "east": "none", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "face": "floor", + "facing": "north", + "powered": "false" } }, { - "id": 15888, + "id": 19126, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "face": "floor", + "facing": "south", + "powered": "true" } }, { - "id": 15889, + "id": 19127, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "face": "floor", + "facing": "south", + "powered": "false" } }, { - "id": 15890, + "id": 19128, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "face": "floor", + "facing": "west", + "powered": "true" } }, { - "id": 15891, + "id": 19129, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "face": "floor", + "facing": "west", + "powered": "false" } }, { - "id": 15892, + "id": 19130, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "face": "floor", + "facing": "east", + "powered": "true" } }, { - "id": 15893, + "id": 19131, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "face": "floor", + "facing": "east", + "powered": "false" } }, { - "id": 15894, + "id": 19132, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "face": "wall", + "facing": "north", + "powered": "true" } }, { - "id": 15895, + "default": true, + "id": 19133, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "face": "wall", + "facing": "north", + "powered": "false" } }, { - "id": 15896, + "id": 19134, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "face": "wall", + "facing": "south", + "powered": "true" } }, { - "id": 15897, + "id": 19135, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "face": "wall", + "facing": "south", + "powered": "false" } }, { - "id": 15898, + "id": 19136, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "face": "wall", + "facing": "west", + "powered": "true" } }, { - "id": 15899, + "id": 19137, "properties": { - "east": "low", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "face": "wall", + "facing": "west", + "powered": "false" } }, { - "id": 15900, + "id": 19138, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "face": "wall", + "facing": "east", + "powered": "true" } }, { - "id": 15901, + "id": 19139, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "face": "wall", + "facing": "east", + "powered": "false" } }, { - "id": 15902, + "id": 19140, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "face": "ceiling", + "facing": "north", + "powered": "true" } }, { - "id": 15903, + "id": 19141, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "face": "ceiling", + "facing": "north", + "powered": "false" } }, { - "id": 15904, + "id": 19142, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "face": "ceiling", + "facing": "south", + "powered": "true" } }, { - "id": 15905, + "id": 19143, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "face": "ceiling", + "facing": "south", + "powered": "false" } }, { - "id": 15906, + "id": 19144, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "face": "ceiling", + "facing": "west", + "powered": "true" } }, { - "id": 15907, + "id": 19145, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "face": "ceiling", + "facing": "west", + "powered": "false" } }, { - "id": 15908, + "id": 19146, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "face": "ceiling", + "facing": "east", + "powered": "true" } }, { - "id": 15909, + "id": 19147, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "face": "ceiling", + "facing": "east", + "powered": "false" } - }, + } + ] + }, + "minecraft:warped_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15910, + "id": 19212, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15911, + "id": 19213, "properties": { - "east": "low", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15912, + "id": 19214, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15913, + "id": 19215, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15914, + "id": 19216, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15915, + "id": 19217, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15916, + "id": 19218, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15917, + "id": 19219, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15918, + "id": 19220, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15919, + "id": 19221, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15920, + "id": 19222, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15921, + "default": true, + "id": 19223, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15922, + "id": 19224, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15923, + "id": 19225, "properties": { - "east": "low", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15924, + "id": 19226, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15925, + "id": 19227, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15926, + "id": 19228, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15927, + "id": 19229, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15928, + "id": 19230, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15929, + "id": 19231, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15930, + "id": 19232, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15931, + "id": 19233, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15932, + "id": 19234, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15933, + "id": 19235, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15934, + "id": 19236, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15935, + "id": 19237, "properties": { - "east": "low", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15936, + "id": 19238, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15937, + "id": 19239, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15938, + "id": 19240, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15939, + "id": 19241, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15940, + "id": 19242, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15941, + "id": 19243, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15942, + "id": 19244, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15943, + "id": 19245, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15944, + "id": 19246, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15945, + "id": 19247, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15946, + "id": 19248, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15947, + "id": 19249, "properties": { - "east": "low", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15948, + "id": 19250, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15949, + "id": 19251, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15950, + "id": 19252, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15951, + "id": 19253, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15952, + "id": 19254, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15953, + "id": 19255, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15954, + "id": 19256, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15955, + "id": 19257, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15956, + "id": 19258, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15957, + "id": 19259, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15958, + "id": 19260, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15959, + "id": 19261, "properties": { - "east": "low", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15960, + "id": 19262, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15961, + "id": 19263, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15962, + "id": 19264, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15963, + "id": 19265, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15964, + "id": 19266, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15965, + "id": 19267, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 15966, + "id": 19268, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 15967, + "id": 19269, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 15968, + "id": 19270, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 15969, + "id": 19271, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 15970, + "id": 19272, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 15971, + "id": 19273, "properties": { - "east": "low", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 15972, + "id": 19274, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 15973, + "id": 19275, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:warped_fence": { + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ { - "id": 15974, + "id": 18716, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15975, + "id": 18717, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 15976, + "id": 18718, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15977, + "id": 18719, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "true", + "east": "true", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15978, + "id": 18720, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15979, + "id": 18721, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15980, + "id": 18722, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15981, + "id": 18723, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", + "east": "true", + "north": "true", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15982, + "id": 18724, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" } }, { - "id": 15983, + "id": 18725, "properties": { - "east": "low", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 15984, + "id": 18726, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 15985, + "id": 18727, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" } }, { - "id": 15986, + "id": 18728, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15987, + "id": 18729, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15988, + "id": 18730, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 15989, + "id": 18731, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "true", + "east": "true", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 15990, + "id": 18732, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 15991, + "id": 18733, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 15992, + "id": 18734, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" } }, { - "id": 15993, + "id": 18735, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", + "east": "false", + "north": "true", + "south": "true", "waterlogged": "false", - "west": "none" + "west": "false" } }, { - "id": 15994, + "id": 18736, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" } }, { - "id": 15995, + "id": 18737, "properties": { - "east": "low", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" } }, { - "id": 15996, + "id": 18738, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 15997, + "id": 18739, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" } }, { - "id": 15998, + "id": 18740, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "true", - "west": "tall" + "west": "true" } }, { - "id": 15999, + "id": 18741, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" } }, { - "id": 16000, + "id": 18742, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "low" + "west": "true" } }, { - "id": 16001, + "id": 18743, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "true", + "east": "false", + "north": "false", + "south": "true", "waterlogged": "false", - "west": "tall" + "west": "false" } }, { - "id": 16002, + "id": 18744, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "none" + "west": "true" } }, { - "id": 16003, + "id": 18745, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "true", - "west": "low" + "west": "false" } }, { - "id": 16004, + "id": 18746, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" } }, { - "id": 16005, + "default": true, + "id": 18747, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", + "east": "false", + "north": "false", + "south": "false", "waterlogged": "false", - "west": "none" + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18908, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 16006, + "id": 18909, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 16007, + "id": 18910, "properties": { - "east": "tall", - "north": "none", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 16008, + "id": 18911, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 16009, + "id": 18912, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 16010, + "id": 18913, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 16011, + "id": 18914, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 16012, + "default": true, + "id": 18915, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 16013, + "id": 18916, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 16014, + "id": 18917, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 16015, + "id": 18918, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 16016, + "id": 18919, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 16017, + "id": 18920, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 16018, + "id": 18921, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 16019, + "id": 18922, "properties": { - "east": "tall", - "north": "none", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 16020, + "id": 18923, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 16021, + "id": 18924, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 16022, + "id": 18925, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 16023, + "id": 18926, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 16024, + "id": 18927, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 16025, + "id": 18928, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 16026, + "id": 18929, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 16027, + "id": 18930, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" } }, { - "id": 16028, + "id": 18931, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" } }, { - "id": 16029, + "id": 18932, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" } }, { - "id": 16030, + "id": 18933, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" } }, { - "id": 16031, + "id": 18934, "properties": { - "east": "tall", - "north": "none", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" } }, { - "id": 16032, + "id": 18935, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" } }, { - "id": 16033, + "id": 18936, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" } }, { - "id": 16034, + "id": 18937, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" } }, { - "id": 16035, + "id": 18938, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18939, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "states": [ + { + "default": true, + "id": 18592 + } + ] + }, + "minecraft:warped_hanging_sign": { + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5346, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "0", + "waterlogged": "true" } }, { - "id": 16036, + "id": 5347, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "0", + "waterlogged": "false" } }, { - "id": 16037, + "id": 5348, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "true", + "rotation": "1", + "waterlogged": "true" } }, { - "id": 16038, + "id": 5349, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "true", + "rotation": "1", + "waterlogged": "false" } }, { - "id": 16039, + "id": 5350, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "attached": "true", + "rotation": "2", + "waterlogged": "true" } }, { - "id": 16040, + "id": 5351, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "attached": "true", + "rotation": "2", + "waterlogged": "false" } }, { - "id": 16041, + "id": 5352, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "3", + "waterlogged": "true" } }, { - "id": 16042, + "id": 5353, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "3", + "waterlogged": "false" } }, { - "id": 16043, + "id": 5354, "properties": { - "east": "tall", - "north": "low", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "attached": "true", + "rotation": "4", + "waterlogged": "true" } }, { - "id": 16044, + "id": 5355, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "attached": "true", + "rotation": "4", + "waterlogged": "false" } }, { - "id": 16045, + "id": 5356, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "attached": "true", + "rotation": "5", + "waterlogged": "true" } }, { - "id": 16046, + "id": 5357, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "attached": "true", + "rotation": "5", + "waterlogged": "false" } }, { - "id": 16047, + "id": 5358, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "6", + "waterlogged": "true" } }, { - "id": 16048, + "id": 5359, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "6", + "waterlogged": "false" } }, { - "id": 16049, + "id": 5360, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "true", + "rotation": "7", + "waterlogged": "true" } }, { - "id": 16050, + "id": 5361, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "true", + "rotation": "7", + "waterlogged": "false" } }, { - "id": 16051, + "id": 5362, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "attached": "true", + "rotation": "8", + "waterlogged": "true" } }, { - "id": 16052, + "id": 5363, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "attached": "true", + "rotation": "8", + "waterlogged": "false" } }, { - "id": 16053, + "id": 5364, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "9", + "waterlogged": "true" } }, { - "id": 16054, + "id": 5365, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "9", + "waterlogged": "false" } }, { - "id": 16055, + "id": 5366, "properties": { - "east": "tall", - "north": "low", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "attached": "true", + "rotation": "10", + "waterlogged": "true" } }, { - "id": 16056, + "id": 5367, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "attached": "true", + "rotation": "10", + "waterlogged": "false" } }, { - "id": 16057, + "id": 5368, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "attached": "true", + "rotation": "11", + "waterlogged": "true" } }, { - "id": 16058, + "id": 5369, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "attached": "true", + "rotation": "11", + "waterlogged": "false" } }, { - "id": 16059, + "id": 5370, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "12", + "waterlogged": "true" } }, { - "id": 16060, + "id": 5371, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "12", + "waterlogged": "false" } }, { - "id": 16061, + "id": 5372, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "true", + "rotation": "13", + "waterlogged": "true" } }, { - "id": 16062, + "id": 5373, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "true", + "rotation": "13", + "waterlogged": "false" } }, { - "id": 16063, + "id": 5374, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "attached": "true", + "rotation": "14", + "waterlogged": "true" } }, { - "id": 16064, + "id": 5375, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "attached": "true", + "rotation": "14", + "waterlogged": "false" } }, { - "id": 16065, + "id": 5376, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "attached": "true", + "rotation": "15", + "waterlogged": "true" } }, { - "id": 16066, + "id": 5377, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "attached": "true", + "rotation": "15", + "waterlogged": "false" } }, { - "id": 16067, + "id": 5378, "properties": { - "east": "tall", - "north": "low", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "0", + "waterlogged": "true" } }, { - "id": 16068, + "default": true, + "id": 5379, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "0", + "waterlogged": "false" } }, { - "id": 16069, + "id": 5380, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "low" + "attached": "false", + "rotation": "1", + "waterlogged": "true" } }, { - "id": 16070, + "id": 5381, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "true", - "west": "tall" + "attached": "false", + "rotation": "1", + "waterlogged": "false" } }, { - "id": 16071, + "id": 5382, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "false", + "rotation": "2", + "waterlogged": "true" } }, { - "id": 16072, + "id": 5383, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "false", + "rotation": "2", + "waterlogged": "false" } }, { - "id": 16073, + "id": 5384, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "3", + "waterlogged": "true" } }, { - "id": 16074, + "id": 5385, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "3", + "waterlogged": "false" } }, { - "id": 16075, + "id": 5386, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "low" + "attached": "false", + "rotation": "4", + "waterlogged": "true" } }, { - "id": 16076, + "id": 5387, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "true", - "west": "tall" + "attached": "false", + "rotation": "4", + "waterlogged": "false" } }, { - "id": 16077, + "id": 5388, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "none" + "attached": "false", + "rotation": "5", + "waterlogged": "true" } }, { - "id": 16078, + "id": 5389, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "low" + "attached": "false", + "rotation": "5", + "waterlogged": "false" } }, { - "id": 16079, + "id": 5390, "properties": { - "east": "tall", - "north": "tall", - "south": "none", - "up": "false", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "6", + "waterlogged": "true" } }, { - "id": 16080, + "id": 5391, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "6", + "waterlogged": "false" } }, { - "id": 16081, + "id": 5392, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "low" + "attached": "false", + "rotation": "7", + "waterlogged": "true" } }, { - "id": 16082, + "id": 5393, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "true", - "west": "tall" + "attached": "false", + "rotation": "7", + "waterlogged": "false" } }, { - "id": 16083, + "id": 5394, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "false", + "rotation": "8", + "waterlogged": "true" } }, { - "id": 16084, + "id": 5395, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "false", + "rotation": "8", + "waterlogged": "false" } }, { - "id": 16085, + "id": 5396, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "9", + "waterlogged": "true" } }, { - "id": 16086, + "id": 5397, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "9", + "waterlogged": "false" } }, { - "id": 16087, + "id": 5398, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "low" + "attached": "false", + "rotation": "10", + "waterlogged": "true" } }, { - "id": 16088, + "id": 5399, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "true", - "west": "tall" + "attached": "false", + "rotation": "10", + "waterlogged": "false" } }, { - "id": 16089, + "id": 5400, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "none" + "attached": "false", + "rotation": "11", + "waterlogged": "true" } }, { - "id": 16090, + "id": 5401, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "low" + "attached": "false", + "rotation": "11", + "waterlogged": "false" } }, { - "id": 16091, + "id": 5402, "properties": { - "east": "tall", - "north": "tall", - "south": "low", - "up": "false", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "12", + "waterlogged": "true" } }, { - "id": 16092, + "id": 5403, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "12", + "waterlogged": "false" } }, { - "id": 16093, + "id": 5404, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "low" + "attached": "false", + "rotation": "13", + "waterlogged": "true" } }, { - "id": 16094, + "id": 5405, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "true", - "west": "tall" + "attached": "false", + "rotation": "13", + "waterlogged": "false" } }, { - "id": 16095, + "id": 5406, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "none" + "attached": "false", + "rotation": "14", + "waterlogged": "true" } }, { - "id": 16096, + "id": 5407, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "low" + "attached": "false", + "rotation": "14", + "waterlogged": "false" } }, { - "id": 16097, + "id": 5408, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "true", - "waterlogged": "false", - "west": "tall" + "attached": "false", + "rotation": "15", + "waterlogged": "true" } }, { - "id": 16098, + "id": 5409, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "none" + "attached": "false", + "rotation": "15", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:warped_hyphae": { + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ { - "id": 16099, + "id": 18585, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "low" + "axis": "x" } }, { - "id": 16100, + "default": true, + "id": 18586, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "true", - "west": "tall" + "axis": "y" } }, { - "id": 16101, + "id": 18587, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "none" + "axis": "z" } - }, + } + ] + }, + "minecraft:warped_nylium": { + "states": [ { - "id": 16102, + "default": true, + "id": 18591 + } + ] + }, + "minecraft:warped_planks": { + "states": [ + { + "default": true, + "id": 18667 + } + ] + }, + "minecraft:warped_pressure_plate": { + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18682, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "low" + "powered": "true" } }, { - "id": 16103, + "default": true, + "id": 18683, "properties": { - "east": "tall", - "north": "tall", - "south": "tall", - "up": "false", - "waterlogged": "false", - "west": "tall" + "powered": "false" } } ] }, - "minecraft:stone_bricks": { + "minecraft:warped_roots": { "states": [ { "default": true, - "id": 6538 + "id": 18594 } ] }, - "minecraft:stone_button": { + "minecraft:warped_sign": { "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 5748, + "id": 19308, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" + "rotation": "0", + "waterlogged": "true" } }, { - "id": 5749, + "default": true, + "id": 19309, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" + "rotation": "0", + "waterlogged": "false" } }, { - "id": 5750, + "id": 19310, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" + "rotation": "1", + "waterlogged": "true" } }, { - "id": 5751, + "id": 19311, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" + "rotation": "1", + "waterlogged": "false" } }, { - "id": 5752, + "id": 19312, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" + "rotation": "2", + "waterlogged": "true" } }, { - "id": 5753, + "id": 19313, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" + "rotation": "2", + "waterlogged": "false" } }, { - "id": 5754, + "id": 19314, "properties": { - "face": "floor", - "facing": "east", - "powered": "true" + "rotation": "3", + "waterlogged": "true" } }, { - "id": 5755, + "id": 19315, "properties": { - "face": "floor", - "facing": "east", - "powered": "false" + "rotation": "3", + "waterlogged": "false" } }, { - "id": 5756, + "id": 19316, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" + "rotation": "4", + "waterlogged": "true" } }, { - "default": true, - "id": 5757, + "id": 19317, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" + "rotation": "4", + "waterlogged": "false" } }, { - "id": 5758, + "id": 19318, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" + "rotation": "5", + "waterlogged": "true" } }, { - "id": 5759, + "id": 19319, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" + "rotation": "5", + "waterlogged": "false" } }, { - "id": 5760, + "id": 19320, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" + "rotation": "6", + "waterlogged": "true" } }, { - "id": 5761, + "id": 19321, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" + "rotation": "6", + "waterlogged": "false" } }, { - "id": 5762, + "id": 19322, "properties": { - "face": "wall", - "facing": "east", - "powered": "true" + "rotation": "7", + "waterlogged": "true" } }, { - "id": 5763, + "id": 19323, "properties": { - "face": "wall", - "facing": "east", - "powered": "false" + "rotation": "7", + "waterlogged": "false" } }, { - "id": 5764, + "id": 19324, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" + "rotation": "8", + "waterlogged": "true" } }, { - "id": 5765, + "id": 19325, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" + "rotation": "8", + "waterlogged": "false" } }, { - "id": 5766, + "id": 19326, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "rotation": "9", + "waterlogged": "true" } }, { - "id": 5767, + "id": 19327, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" + "rotation": "9", + "waterlogged": "false" } }, { - "id": 5768, + "id": 19328, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "true" + "rotation": "10", + "waterlogged": "true" } }, { - "id": 5769, + "id": 19329, "properties": { - "face": "ceiling", - "facing": "west", - "powered": "false" + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19330, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19331, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19332, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19333, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19334, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19335, + "properties": { + "rotation": "13", + "waterlogged": "false" } }, { - "id": 5770, + "id": 19336, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "true" + "rotation": "14", + "waterlogged": "true" } }, { - "id": 5771, + "id": 19337, "properties": { - "face": "ceiling", - "facing": "east", - "powered": "false" + "rotation": "14", + "waterlogged": "false" } - } - ] - }, - "minecraft:stone_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5650, + "id": 19338, "properties": { - "powered": "true" + "rotation": "15", + "waterlogged": "true" } }, { - "default": true, - "id": 5651, + "id": 19339, "properties": { - "powered": "false" + "rotation": "15", + "waterlogged": "false" } } ] }, - "minecraft:stone_slab": { + "minecraft:warped_slab": { "properties": { "type": [ "top", @@ -226039,21 +251222,21 @@ }, "states": [ { - "id": 11222, + "id": 18674, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 11223, + "id": 18675, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 11224, + "id": 18676, "properties": { "type": "bottom", "waterlogged": "true" @@ -226061,21 +251244,21 @@ }, { "default": true, - "id": 11225, + "id": 18677, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 11226, + "id": 18678, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 11227, + "id": 18679, "properties": { "type": "double", "waterlogged": "false" @@ -226083,7 +251266,7 @@ } ] }, - "minecraft:stone_stairs": { + "minecraft:warped_stairs": { "properties": { "facing": [ "north", @@ -226109,7 +251292,7 @@ }, "states": [ { - "id": 13442, + "id": 19020, "properties": { "facing": "north", "half": "top", @@ -226118,7 +251301,7 @@ } }, { - "id": 13443, + "id": 19021, "properties": { "facing": "north", "half": "top", @@ -226127,7 +251310,7 @@ } }, { - "id": 13444, + "id": 19022, "properties": { "facing": "north", "half": "top", @@ -226136,7 +251319,7 @@ } }, { - "id": 13445, + "id": 19023, "properties": { "facing": "north", "half": "top", @@ -226145,7 +251328,7 @@ } }, { - "id": 13446, + "id": 19024, "properties": { "facing": "north", "half": "top", @@ -226154,7 +251337,7 @@ } }, { - "id": 13447, + "id": 19025, "properties": { "facing": "north", "half": "top", @@ -226163,7 +251346,7 @@ } }, { - "id": 13448, + "id": 19026, "properties": { "facing": "north", "half": "top", @@ -226172,7 +251355,7 @@ } }, { - "id": 13449, + "id": 19027, "properties": { "facing": "north", "half": "top", @@ -226181,7 +251364,7 @@ } }, { - "id": 13450, + "id": 19028, "properties": { "facing": "north", "half": "top", @@ -226190,7 +251373,7 @@ } }, { - "id": 13451, + "id": 19029, "properties": { "facing": "north", "half": "top", @@ -226199,7 +251382,7 @@ } }, { - "id": 13452, + "id": 19030, "properties": { "facing": "north", "half": "bottom", @@ -226209,7 +251392,7 @@ }, { "default": true, - "id": 13453, + "id": 19031, "properties": { "facing": "north", "half": "bottom", @@ -226218,7 +251401,7 @@ } }, { - "id": 13454, + "id": 19032, "properties": { "facing": "north", "half": "bottom", @@ -226227,7 +251410,7 @@ } }, { - "id": 13455, + "id": 19033, "properties": { "facing": "north", "half": "bottom", @@ -226236,7 +251419,7 @@ } }, { - "id": 13456, + "id": 19034, "properties": { "facing": "north", "half": "bottom", @@ -226245,7 +251428,7 @@ } }, { - "id": 13457, + "id": 19035, "properties": { "facing": "north", "half": "bottom", @@ -226254,7 +251437,7 @@ } }, { - "id": 13458, + "id": 19036, "properties": { "facing": "north", "half": "bottom", @@ -226263,7 +251446,7 @@ } }, { - "id": 13459, + "id": 19037, "properties": { "facing": "north", "half": "bottom", @@ -226272,7 +251455,7 @@ } }, { - "id": 13460, + "id": 19038, "properties": { "facing": "north", "half": "bottom", @@ -226281,7 +251464,7 @@ } }, { - "id": 13461, + "id": 19039, "properties": { "facing": "north", "half": "bottom", @@ -226290,7 +251473,7 @@ } }, { - "id": 13462, + "id": 19040, "properties": { "facing": "south", "half": "top", @@ -226299,7 +251482,7 @@ } }, { - "id": 13463, + "id": 19041, "properties": { "facing": "south", "half": "top", @@ -226308,7 +251491,7 @@ } }, { - "id": 13464, + "id": 19042, "properties": { "facing": "south", "half": "top", @@ -226317,7 +251500,7 @@ } }, { - "id": 13465, + "id": 19043, "properties": { "facing": "south", "half": "top", @@ -226326,7 +251509,7 @@ } }, { - "id": 13466, + "id": 19044, "properties": { "facing": "south", "half": "top", @@ -226335,7 +251518,7 @@ } }, { - "id": 13467, + "id": 19045, "properties": { "facing": "south", "half": "top", @@ -226344,7 +251527,7 @@ } }, { - "id": 13468, + "id": 19046, "properties": { "facing": "south", "half": "top", @@ -226353,7 +251536,7 @@ } }, { - "id": 13469, + "id": 19047, "properties": { "facing": "south", "half": "top", @@ -226362,7 +251545,7 @@ } }, { - "id": 13470, + "id": 19048, "properties": { "facing": "south", "half": "top", @@ -226371,7 +251554,7 @@ } }, { - "id": 13471, + "id": 19049, "properties": { "facing": "south", "half": "top", @@ -226380,7 +251563,7 @@ } }, { - "id": 13472, + "id": 19050, "properties": { "facing": "south", "half": "bottom", @@ -226389,7 +251572,7 @@ } }, { - "id": 13473, + "id": 19051, "properties": { "facing": "south", "half": "bottom", @@ -226398,7 +251581,7 @@ } }, { - "id": 13474, + "id": 19052, "properties": { "facing": "south", "half": "bottom", @@ -226407,7 +251590,7 @@ } }, { - "id": 13475, + "id": 19053, "properties": { "facing": "south", "half": "bottom", @@ -226416,7 +251599,7 @@ } }, { - "id": 13476, + "id": 19054, "properties": { "facing": "south", "half": "bottom", @@ -226425,7 +251608,7 @@ } }, { - "id": 13477, + "id": 19055, "properties": { "facing": "south", "half": "bottom", @@ -226434,7 +251617,7 @@ } }, { - "id": 13478, + "id": 19056, "properties": { "facing": "south", "half": "bottom", @@ -226443,7 +251626,7 @@ } }, { - "id": 13479, + "id": 19057, "properties": { "facing": "south", "half": "bottom", @@ -226452,7 +251635,7 @@ } }, { - "id": 13480, + "id": 19058, "properties": { "facing": "south", "half": "bottom", @@ -226461,7 +251644,7 @@ } }, { - "id": 13481, + "id": 19059, "properties": { "facing": "south", "half": "bottom", @@ -226470,7 +251653,7 @@ } }, { - "id": 13482, + "id": 19060, "properties": { "facing": "west", "half": "top", @@ -226479,7 +251662,7 @@ } }, { - "id": 13483, + "id": 19061, "properties": { "facing": "west", "half": "top", @@ -226488,7 +251671,7 @@ } }, { - "id": 13484, + "id": 19062, "properties": { "facing": "west", "half": "top", @@ -226497,7 +251680,7 @@ } }, { - "id": 13485, + "id": 19063, "properties": { "facing": "west", "half": "top", @@ -226506,7 +251689,7 @@ } }, { - "id": 13486, + "id": 19064, "properties": { "facing": "west", "half": "top", @@ -226515,7 +251698,7 @@ } }, { - "id": 13487, + "id": 19065, "properties": { "facing": "west", "half": "top", @@ -226524,7 +251707,7 @@ } }, { - "id": 13488, + "id": 19066, "properties": { "facing": "west", "half": "top", @@ -226533,7 +251716,7 @@ } }, { - "id": 13489, + "id": 19067, "properties": { "facing": "west", "half": "top", @@ -226542,7 +251725,7 @@ } }, { - "id": 13490, + "id": 19068, "properties": { "facing": "west", "half": "top", @@ -226551,7 +251734,7 @@ } }, { - "id": 13491, + "id": 19069, "properties": { "facing": "west", "half": "top", @@ -226560,7 +251743,7 @@ } }, { - "id": 13492, + "id": 19070, "properties": { "facing": "west", "half": "bottom", @@ -226569,7 +251752,7 @@ } }, { - "id": 13493, + "id": 19071, "properties": { "facing": "west", "half": "bottom", @@ -226578,7 +251761,7 @@ } }, { - "id": 13494, + "id": 19072, "properties": { "facing": "west", "half": "bottom", @@ -226587,7 +251770,7 @@ } }, { - "id": 13495, + "id": 19073, "properties": { "facing": "west", "half": "bottom", @@ -226596,7 +251779,7 @@ } }, { - "id": 13496, + "id": 19074, "properties": { "facing": "west", "half": "bottom", @@ -226605,7 +251788,7 @@ } }, { - "id": 13497, + "id": 19075, "properties": { "facing": "west", "half": "bottom", @@ -226614,4442 +251797,3521 @@ } }, { - "id": 13498, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13499, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13500, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13501, + "id": 19076, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13502, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13503, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13504, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13505, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13506, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13507, - "properties": { - "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13508, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13509, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13510, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 13511, - "properties": { - "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 13512, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 13513, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 13514, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 13515, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 13516, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 13517, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 13518, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 13519, - "properties": { - "facing": "east", - "half": "bottom", "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 13520, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", "waterlogged": "true" - } - }, - { - "id": 13521, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - } - ] - }, - "minecraft:stonecutter": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ - { - "default": true, - "id": 18467, - "properties": { - "facing": "north" - } - }, - { - "id": 18468, - "properties": { - "facing": "south" - } - }, - { - "id": 18469, - "properties": { - "facing": "west" - } - }, - { - "id": 18470, - "properties": { - "facing": "east" - } - } - ] - }, - "minecraft:stripped_acacia_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 171, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 172, - "properties": { - "axis": "y" - } - }, - { - "id": 173, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_acacia_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 225, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 226, - "properties": { - "axis": "y" - } - }, - { - "id": 227, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_bamboo_block": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 186, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 187, - "properties": { - "axis": "y" - } - }, - { - "id": 188, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_birch_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 165, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 166, - "properties": { - "axis": "y" - } - }, - { - "id": 167, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_birch_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 219, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 220, - "properties": { - "axis": "y" - } - }, - { - "id": 221, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_cherry_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 174, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 175, - "properties": { - "axis": "y" - } - }, - { - "id": 176, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_cherry_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 228, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 229, - "properties": { - "axis": "y" - } - }, - { - "id": 230, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_crimson_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18605, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18606, - "properties": { - "axis": "y" - } - }, - { - "id": 18607, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_crimson_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18599, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18600, - "properties": { - "axis": "y" - } - }, - { - "id": 18601, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_dark_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 177, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 178, - "properties": { - "axis": "y" - } - }, - { - "id": 179, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_dark_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 231, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 232, - "properties": { - "axis": "y" - } - }, - { - "id": 233, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_jungle_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 168, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 169, - "properties": { - "axis": "y" - } - }, - { - "id": 170, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_jungle_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 222, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 223, - "properties": { - "axis": "y" - } - }, - { - "id": 224, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_mangrove_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 183, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 184, - "properties": { - "axis": "y" - } - }, - { - "id": 185, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_mangrove_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 234, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 235, - "properties": { - "axis": "y" - } - }, - { - "id": 236, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_oak_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 180, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 181, - "properties": { - "axis": "y" - } - }, - { - "id": 182, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_oak_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 213, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 214, - "properties": { - "axis": "y" - } - }, - { - "id": 215, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_spruce_log": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 162, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 163, - "properties": { - "axis": "y" - } - }, - { - "id": 164, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_spruce_wood": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 216, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 217, - "properties": { - "axis": "y" - } - }, - { - "id": 218, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18588, - "properties": { - "axis": "x" - } - }, - { - "default": true, - "id": 18589, - "properties": { - "axis": "y" - } - }, - { - "id": 18590, - "properties": { - "axis": "z" - } - } - ] - }, - "minecraft:stripped_warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + } + }, { - "id": 18582, + "id": 19077, "properties": { - "axis": "x" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "default": true, - "id": 18583, + "id": 19078, "properties": { - "axis": "y" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18584, + "id": 19079, "properties": { - "axis": "z" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - } - ] - }, - "minecraft:structure_block": { - "properties": { - "mode": [ - "save", - "load", - "corner", - "data" - ] - }, - "states": [ + }, { - "id": 19356, + "id": 19080, "properties": { - "mode": "save" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "default": true, - "id": 19357, + "id": 19081, "properties": { - "mode": "load" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 19358, + "id": 19082, "properties": { - "mode": "corner" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 19359, + "id": 19083, "properties": { - "mode": "data" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:structure_void": { - "states": [ - { - "default": true, - "id": 12549 - } - ] - }, - "minecraft:sugar_cane": { - "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 5799, + "id": 19084, "properties": { - "age": "0" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 5800, + "id": 19085, "properties": { - "age": "1" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 5801, + "id": 19086, "properties": { - "age": "2" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 5802, + "id": 19087, "properties": { - "age": "3" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 5803, + "id": 19088, "properties": { - "age": "4" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 5804, + "id": 19089, "properties": { - "age": "5" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 5805, + "id": 19090, "properties": { - "age": "6" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 5806, + "id": 19091, "properties": { - "age": "7" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 5807, + "id": 19092, "properties": { - "age": "8" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 5808, + "id": 19093, "properties": { - "age": "9" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 5809, + "id": 19094, "properties": { - "age": "10" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 5810, + "id": 19095, "properties": { - "age": "11" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 5811, + "id": 19096, "properties": { - "age": "12" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 5812, + "id": 19097, "properties": { - "age": "13" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 5813, + "id": 19098, "properties": { - "age": "14" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 5814, + "id": 19099, "properties": { - "age": "15" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } } ] }, - "minecraft:sunflower": { + "minecraft:warped_stem": { "properties": { - "half": [ - "upper", - "lower" + "axis": [ + "x", + "y", + "z" ] }, "states": [ { - "id": 10747, + "id": 18579, "properties": { - "half": "upper" + "axis": "x" } }, { "default": true, - "id": 10748, + "id": 18580, "properties": { - "half": "lower" + "axis": "y" + } + }, + { + "id": 18581, + "properties": { + "axis": "z" } } ] }, - "minecraft:suspicious_gravel": { + "minecraft:warped_trapdoor": { "properties": { - "dusted": [ - "0", - "1", - "2", - "3" + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "default": true, - "id": 119, + "id": 18812, "properties": { - "dusted": "0" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 120, + "id": 18813, "properties": { - "dusted": "1" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 121, + "id": 18814, "properties": { - "dusted": "2" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 122, + "id": 18815, "properties": { - "dusted": "3" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:suspicious_sand": { - "properties": { - "dusted": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ + }, { - "default": true, - "id": 113, + "id": 18816, "properties": { - "dusted": "0" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 114, + "id": 18817, "properties": { - "dusted": "1" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 115, + "id": 18818, "properties": { - "dusted": "2" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 116, + "id": 18819, "properties": { - "dusted": "3" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:sweet_berry_bush": { - "properties": { - "age": [ - "0", - "1", - "2", - "3" - ] - }, - "states": [ + }, { - "default": true, - "id": 18575, + "id": 18820, "properties": { - "age": "0" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18576, + "id": 18821, "properties": { - "age": "1" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18577, + "id": 18822, "properties": { - "age": "2" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18578, + "id": 18823, "properties": { - "age": "3" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:tall_grass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + }, { - "id": 10755, + "id": 18824, "properties": { - "half": "upper" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "default": true, - "id": 10756, + "id": 18825, "properties": { - "half": "lower" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } - } - ] - }, - "minecraft:tall_seagrass": { - "properties": { - "half": [ - "upper", - "lower" - ] - }, - "states": [ + }, { - "id": 2009, + "id": 18826, "properties": { - "half": "upper" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { "default": true, - "id": 2010, + "id": 18827, "properties": { - "half": "lower" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:target": { - "properties": { - "power": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + }, { - "default": true, - "id": 19381, + "id": 18828, "properties": { - "power": "0" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 19382, + "id": 18829, "properties": { - "power": "1" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 19383, + "id": 18830, "properties": { - "power": "2" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 19384, + "id": 18831, "properties": { - "power": "3" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 19385, + "id": 18832, "properties": { - "power": "4" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 19386, + "id": 18833, "properties": { - "power": "5" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 19387, + "id": 18834, "properties": { - "power": "6" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 19388, + "id": 18835, "properties": { - "power": "7" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 19389, + "id": 18836, "properties": { - "power": "8" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 19390, + "id": 18837, "properties": { - "power": "9" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 19391, + "id": 18838, "properties": { - "power": "10" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 19392, + "id": 18839, "properties": { - "power": "11" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 19393, + "id": 18840, "properties": { - "power": "12" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 19394, + "id": 18841, "properties": { - "power": "13" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 19395, + "id": 18842, "properties": { - "power": "14" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 19396, + "id": 18843, "properties": { - "power": "15" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:terracotta": { - "states": [ + }, { - "default": true, - "id": 10744 - } - ] - }, - "minecraft:tinted_glass": { - "states": [ + "id": 18844, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, { - "default": true, - "id": 21083 - } - ] - }, - "minecraft:tnt": { - "properties": { - "unstable": [ - "true", - "false" - ] - }, - "states": [ + "id": 18845, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, { - "id": 2094, + "id": 18846, "properties": { - "unstable": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "default": true, - "id": 2095, + "id": 18847, "properties": { - "unstable": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:torch": { - "states": [ + }, { - "default": true, - "id": 2355 - } - ] - }, - "minecraft:torchflower": { - "states": [ + "id": 18848, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, { - "default": true, - "id": 2076 - } - ] - }, - "minecraft:torchflower_crop": { - "properties": { - "age": [ - "0", - "1" - ] - }, - "states": [ + "id": 18849, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, { - "default": true, - "id": 12495, + "id": 18850, "properties": { - "age": "0" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 12496, + "id": 18851, "properties": { - "age": "1" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:trapped_chest": { - "properties": { - "type": [ - "single", - "left", - "right" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 9119, + "id": 18852, "properties": { - "type": "single", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "default": true, - "id": 9120, + "id": 18853, "properties": { - "type": "single", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 9121, + "id": 18854, "properties": { - "type": "left", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 9122, + "id": 18855, "properties": { - "type": "left", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 9123, + "id": 18856, "properties": { - "type": "right", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 9124, + "id": 18857, "properties": { - "type": "right", - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 9125, + "id": 18858, "properties": { - "type": "single", - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 9126, + "id": 18859, "properties": { - "type": "single", - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 9127, + "id": 18860, "properties": { - "type": "left", - "facing": "south", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 9128, + "id": 18861, "properties": { - "type": "left", - "facing": "south", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 9129, + "id": 18862, "properties": { - "type": "right", - "facing": "south", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 9130, + "id": 18863, "properties": { - "type": "right", - "facing": "south", + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 9131, + "id": 18864, "properties": { - "type": "single", - "facing": "west", + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 9132, + "id": 18865, "properties": { - "type": "single", - "facing": "west", + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 9133, + "id": 18866, "properties": { - "type": "left", - "facing": "west", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 9134, + "id": 18867, "properties": { - "type": "left", - "facing": "west", + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 9135, + "id": 18868, "properties": { - "type": "right", - "facing": "west", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 9136, + "id": 18869, "properties": { - "type": "right", - "facing": "west", + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 9137, + "id": 18870, "properties": { - "type": "single", "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 9138, + "id": 18871, "properties": { - "type": "single", "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 9139, + "id": 18872, "properties": { - "type": "left", "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 9140, + "id": 18873, "properties": { - "type": "left", "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 9141, + "id": 18874, "properties": { - "type": "right", "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 9142, + "id": 18875, "properties": { - "type": "right", "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } } ] }, - "minecraft:tripwire": { + "minecraft:warped_wall_hanging_sign": { "properties": { - "attached": [ - "true", - "false" - ], - "disarmed": [ - "true", - "false" - ], - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "powered": [ - "true", - "false" - ], - "south": [ - "true", - "false" + "facing": [ + "north", + "south", + "west", + "east" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 7537, + "id": 5610, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "facing": "north", + "waterlogged": "true" } }, { - "id": 7538, + "default": true, + "id": 5611, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "facing": "north", + "waterlogged": "false" } }, { - "id": 7539, + "id": 5612, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "south", + "waterlogged": "true" } }, { - "id": 7540, + "id": 5613, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "south", + "waterlogged": "false" } }, { - "id": 7541, + "id": 5614, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5615, + "properties": { + "facing": "west", + "waterlogged": "false" } }, { - "id": 7542, + "id": 5616, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "east", + "waterlogged": "true" } }, { - "id": 7543, + "id": 5617, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:warped_wall_sign": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7544, + "id": 19348, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "facing": "north", + "waterlogged": "true" } }, { - "id": 7545, + "default": true, + "id": 19349, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "facing": "north", + "waterlogged": "false" } }, { - "id": 7546, + "id": 19350, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "facing": "south", + "waterlogged": "true" } }, { - "id": 7547, + "id": 19351, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "south", + "waterlogged": "false" } }, { - "id": 7548, + "id": 19352, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "west", + "waterlogged": "true" } }, { - "id": 7549, + "id": 19353, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "west", + "waterlogged": "false" } }, { - "id": 7550, + "id": 19354, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "east", + "waterlogged": "true" } }, { - "id": 7551, + "id": 19355, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "facing": "east", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:warped_wart_block": { + "states": [ { - "id": 7552, + "default": true, + "id": 18593 + } + ] + }, + "minecraft:water": { + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 80, "properties": { - "attached": "true", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "level": "0" } }, { - "id": 7553, + "id": 81, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "level": "1" } }, { - "id": 7554, + "id": 82, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "level": "2" } }, { - "id": 7555, + "id": 83, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "level": "3" } }, { - "id": 7556, + "id": 84, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "level": "4" } }, { - "id": 7557, + "id": 85, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "level": "5" } }, { - "id": 7558, + "id": 86, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "level": "6" } }, { - "id": 7559, + "id": 87, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "level": "7" } }, { - "id": 7560, + "id": 88, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "level": "8" } }, { - "id": 7561, + "id": 89, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "level": "9" } }, { - "id": 7562, + "id": 90, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "level": "10" } }, { - "id": 7563, + "id": 91, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "level": "11" } }, { - "id": 7564, + "id": 92, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "level": "12" } }, { - "id": 7565, + "id": 93, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "level": "13" } }, { - "id": 7566, + "id": 94, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "level": "14" } }, { - "id": 7567, + "id": 95, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "level": "15" } - }, + } + ] + }, + "minecraft:water_cauldron": { + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ { - "id": 7568, + "default": true, + "id": 7399, "properties": { - "attached": "true", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "level": "1" } }, { - "id": 7569, + "id": 7400, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "level": "2" } }, { - "id": 7570, + "id": 7401, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "level": "3" } - }, + } + ] + }, + "minecraft:waxed_chiseled_copper": { + "states": [ { - "id": 7571, + "default": true, + "id": 22955 + } + ] + }, + "minecraft:waxed_copper_block": { + "states": [ + { + "default": true, + "id": 23300 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24708, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "lit": "true", + "powered": "true" } }, { - "id": 7572, + "id": 24709, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "lit": "true", + "powered": "false" } }, { - "id": 7573, + "id": 24710, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "lit": "false", + "powered": "true" } }, { - "id": 7574, + "default": true, + "id": 24711, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "lit": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:waxed_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7575, + "id": 23908, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7576, + "id": 23909, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7577, + "id": 23910, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7578, + "id": 23911, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7579, + "id": 23912, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7580, + "id": 23913, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7581, + "id": 23914, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7582, + "id": 23915, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7583, + "id": 23916, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7584, + "id": 23917, "properties": { - "attached": "true", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7585, + "id": 23918, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7586, + "default": true, + "id": 23919, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7587, + "id": 23920, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7588, + "id": 23921, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7589, + "id": 23922, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7590, + "id": 23923, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7591, + "id": 23924, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7592, + "id": 23925, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7593, + "id": 23926, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7594, + "id": 23927, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7595, + "id": 23928, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7596, + "id": 23929, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7597, + "id": 23930, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7598, + "id": 23931, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7599, + "id": 23932, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7600, + "id": 23933, "properties": { - "attached": "true", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7601, + "id": 23934, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7602, + "id": 23935, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7603, + "id": 23936, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7604, + "id": 23937, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7605, + "id": 23938, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7606, + "id": 23939, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7607, + "id": 23940, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7608, + "id": 23941, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7609, + "id": 23942, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7610, + "id": 23943, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7611, + "id": 23944, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7612, + "id": 23945, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7613, + "id": 23946, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7614, + "id": 23947, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7615, + "id": 23948, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7616, + "id": 23949, "properties": { - "attached": "false", - "disarmed": "true", - "east": "true", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7617, + "id": 23950, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7618, + "id": 23951, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7619, + "id": 23952, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7620, + "id": 23953, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7621, + "id": 23954, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7622, + "id": 23955, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7623, + "id": 23956, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7624, + "id": 23957, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7625, + "id": 23958, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7626, + "id": 23959, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "true", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7627, + "id": 23960, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7628, + "id": 23961, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7629, + "id": 23962, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7630, + "id": 23963, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 7631, + "id": 23964, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 7632, + "id": 23965, "properties": { - "attached": "false", - "disarmed": "true", - "east": "false", - "north": "false", - "powered": "false", - "south": "false", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 7633, + "id": 23966, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 7634, + "id": 23967, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "true", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 7635, + "id": 23968, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 7636, + "id": 23969, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7637, + "id": 23970, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7638, + "id": 23971, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:waxed_copper_grate": { + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7639, + "id": 24684, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "true" + "waterlogged": "true" } }, { - "id": 7640, + "default": true, + "id": 24685, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "true", - "powered": "false", - "south": "false", - "west": "false" + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 7641, + "id": 24420, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", + "facing": "north", + "half": "top", + "open": "true", "powered": "true", - "south": "true", - "west": "true" + "waterlogged": "true" } }, { - "id": 7642, + "id": 24421, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", + "facing": "north", + "half": "top", + "open": "true", "powered": "true", - "south": "true", - "west": "false" + "waterlogged": "false" } }, { - "id": 7643, + "id": 24422, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7644, + "id": 24423, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7645, + "id": 24424, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7646, + "id": 24425, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7647, + "id": 24426, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", + "facing": "north", + "half": "top", + "open": "false", "powered": "false", - "south": "false", - "west": "true" + "waterlogged": "true" } }, { - "id": 7648, + "id": 24427, "properties": { - "attached": "false", - "disarmed": "false", - "east": "true", - "north": "false", + "facing": "north", + "half": "top", + "open": "false", "powered": "false", - "south": "false", - "west": "false" + "waterlogged": "false" } }, { - "id": 7649, + "id": 24428, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", + "facing": "north", + "half": "bottom", + "open": "true", "powered": "true", - "south": "true", - "west": "true" + "waterlogged": "true" } }, { - "id": 7650, + "id": 24429, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", + "facing": "north", + "half": "bottom", + "open": "true", "powered": "true", - "south": "true", - "west": "false" + "waterlogged": "false" } }, { - "id": 7651, + "id": 24430, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7652, + "id": 24431, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "true", - "south": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7653, + "id": 24432, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7654, + "id": 24433, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", - "powered": "false", - "south": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7655, + "id": 24434, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", + "facing": "north", + "half": "bottom", + "open": "false", "powered": "false", - "south": "false", - "west": "true" + "waterlogged": "true" } }, { - "id": 7656, + "default": true, + "id": 24435, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "true", + "facing": "north", + "half": "bottom", + "open": "false", "powered": "false", - "south": "false", - "west": "false" + "waterlogged": "false" } }, { - "id": 7657, + "id": 24436, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", + "facing": "south", + "half": "top", + "open": "true", "powered": "true", - "south": "true", - "west": "true" + "waterlogged": "true" } }, { - "id": 7658, + "id": 24437, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", + "facing": "south", + "half": "top", + "open": "true", "powered": "true", - "south": "true", - "west": "false" + "waterlogged": "false" } }, { - "id": 7659, + "id": 24438, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7660, + "id": 24439, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "true", - "south": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7661, + "id": 24440, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7662, + "id": 24441, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", - "powered": "false", - "south": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7663, + "id": 24442, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", + "facing": "south", + "half": "top", + "open": "false", "powered": "false", - "south": "false", - "west": "true" + "waterlogged": "true" } }, { - "default": true, - "id": 7664, + "id": 24443, "properties": { - "attached": "false", - "disarmed": "false", - "east": "false", - "north": "false", + "facing": "south", + "half": "top", + "open": "false", "powered": "false", - "south": "false", - "west": "false" + "waterlogged": "false" } - } - ] - }, - "minecraft:tripwire_hook": { - "properties": { - "attached": [ - "true", - "false" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 7521, + "id": 24444, "properties": { - "attached": "true", - "facing": "north", - "powered": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7522, + "id": 24445, "properties": { - "attached": "true", - "facing": "north", - "powered": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7523, + "id": 24446, "properties": { - "attached": "true", "facing": "south", - "powered": "true" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7524, + "id": 24447, "properties": { - "attached": "true", "facing": "south", - "powered": "false" + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7525, + "id": 24448, "properties": { - "attached": "true", - "facing": "west", - "powered": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7526, + "id": 24449, "properties": { - "attached": "true", - "facing": "west", - "powered": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7527, + "id": 24450, "properties": { - "attached": "true", - "facing": "east", - "powered": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7528, + "id": 24451, "properties": { - "attached": "true", - "facing": "east", - "powered": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7529, + "id": 24452, "properties": { - "attached": "false", - "facing": "north", - "powered": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "default": true, - "id": 7530, + "id": 24453, "properties": { - "attached": "false", - "facing": "north", - "powered": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7531, + "id": 24454, "properties": { - "attached": "false", - "facing": "south", - "powered": "true" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7532, + "id": 24455, "properties": { - "attached": "false", - "facing": "south", - "powered": "false" + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 7533, + "id": 24456, "properties": { - "attached": "false", "facing": "west", - "powered": "true" + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 7534, + "id": 24457, "properties": { - "attached": "false", "facing": "west", - "powered": "false" + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 7535, + "id": 24458, "properties": { - "attached": "false", - "facing": "east", - "powered": "true" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 7536, + "id": 24459, "properties": { - "attached": "false", - "facing": "east", - "powered": "false" + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } - } - ] - }, - "minecraft:tube_coral": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12823, + "id": 24460, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12824, + "id": 24461, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } - } - ] - }, - "minecraft:tube_coral_block": { - "states": [ - { - "default": true, - "id": 12808 - } - ] - }, - "minecraft:tube_coral_fan": { - "properties": { - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12843, + "id": 24462, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12844, + "id": 24463, "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:tube_coral_wall_fan": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "default": true, - "id": 12893, + "id": 24464, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 12894, + "id": 24465, "properties": { - "facing": "north", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 12895, + "id": 24466, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 12896, + "id": 24467, "properties": { - "facing": "south", + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 12897, + "id": 24468, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 12898, + "id": 24469, "properties": { - "facing": "west", + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 12899, + "id": 24470, "properties": { "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 12900, + "id": 24471, "properties": { "facing": "east", + "half": "top", + "open": "true", + "powered": "false", "waterlogged": "false" } - } - ] - }, - "minecraft:tuff": { - "states": [ - { - "default": true, - "id": 21081 - } - ] - }, - "minecraft:turtle_egg": { - "properties": { - "eggs": [ - "1", - "2", - "3", - "4" - ], - "hatch": [ - "0", - "1", - "2" - ] - }, - "states": [ + }, { - "default": true, - "id": 12788, + "id": 24472, "properties": { - "eggs": "1", - "hatch": "0" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 12789, + "id": 24473, "properties": { - "eggs": "1", - "hatch": "1" + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 12790, + "id": 24474, "properties": { - "eggs": "1", - "hatch": "2" + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 12791, + "id": 24475, "properties": { - "eggs": "2", - "hatch": "0" + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 12792, + "id": 24476, "properties": { - "eggs": "2", - "hatch": "1" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 12793, + "id": 24477, "properties": { - "eggs": "2", - "hatch": "2" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 12794, + "id": 24478, "properties": { - "eggs": "3", - "hatch": "0" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 12795, + "id": 24479, "properties": { - "eggs": "3", - "hatch": "1" + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 12796, + "id": 24480, "properties": { - "eggs": "3", - "hatch": "2" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 12797, + "id": 24481, "properties": { - "eggs": "4", - "hatch": "0" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 12798, + "id": 24482, "properties": { - "eggs": "4", - "hatch": "1" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 12799, + "id": 24483, "properties": { - "eggs": "4", - "hatch": "2" + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } } ] }, - "minecraft:twisting_vines": { + "minecraft:waxed_cut_copper": { + "states": [ + { + "default": true, + "id": 23307 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { "properties": { - "age": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" ] }, "states": [ { - "default": true, - "id": 18638, + "id": 23646, "properties": { - "age": "0" + "type": "top", + "waterlogged": "true" } }, { - "id": 18639, + "id": 23647, "properties": { - "age": "1" + "type": "top", + "waterlogged": "false" } }, { - "id": 18640, + "id": 23648, "properties": { - "age": "2" + "type": "bottom", + "waterlogged": "true" } }, { - "id": 18641, + "default": true, + "id": 23649, "properties": { - "age": "3" + "type": "bottom", + "waterlogged": "false" } }, { - "id": 18642, + "id": 23650, "properties": { - "age": "4" + "type": "double", + "waterlogged": "true" } }, { - "id": 18643, + "id": 23651, "properties": { - "age": "5" + "type": "double", + "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 18644, + "id": 23548, "properties": { - "age": "6" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18645, + "id": 23549, "properties": { - "age": "7" + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18646, + "id": 23550, "properties": { - "age": "8" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18647, + "id": 23551, "properties": { - "age": "9" + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18648, + "id": 23552, "properties": { - "age": "10" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18649, + "id": 23553, "properties": { - "age": "11" + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18650, + "id": 23554, "properties": { - "age": "12" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18651, + "id": 23555, "properties": { - "age": "13" + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18652, + "id": 23556, "properties": { - "age": "14" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18653, + "id": 23557, "properties": { - "age": "15" + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18654, + "id": 23558, "properties": { - "age": "16" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18655, + "default": true, + "id": 23559, "properties": { - "age": "17" + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18656, + "id": 23560, "properties": { - "age": "18" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18657, + "id": 23561, "properties": { - "age": "19" + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18658, + "id": 23562, "properties": { - "age": "20" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18659, + "id": 23563, "properties": { - "age": "21" + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18660, + "id": 23564, "properties": { - "age": "22" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18661, + "id": 23565, "properties": { - "age": "23" + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18662, + "id": 23566, "properties": { - "age": "24" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18663, + "id": 23567, "properties": { - "age": "25" + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } - } - ] - }, - "minecraft:twisting_vines_plant": { - "states": [ - { - "default": true, - "id": 18664 - } - ] - }, - "minecraft:verdant_froglight": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 24252, + "id": 23568, "properties": { - "axis": "x" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "default": true, - "id": 24253, + "id": 23569, "properties": { - "axis": "y" + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 24254, + "id": 23570, "properties": { - "axis": "z" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } - } - ] - }, - "minecraft:vine": { - "properties": { - "east": [ - "true", - "false" - ], - "north": [ - "true", - "false" - ], - "south": [ - "true", - "false" - ], - "up": [ - "true", - "false" - ], - "west": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 6837, + "id": 23571, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 6838, + "id": 23572, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 6839, + "id": 23573, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 6840, + "id": 23574, "properties": { - "east": "true", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 6841, + "id": 23575, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 6842, + "id": 23576, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 6843, + "id": 23577, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 6844, + "id": 23578, "properties": { - "east": "true", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 6845, + "id": 23579, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 6846, + "id": 23580, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 6847, + "id": 23581, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 6848, + "id": 23582, "properties": { - "east": "true", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 6849, + "id": 23583, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 6850, + "id": 23584, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 6851, + "id": 23585, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 6852, + "id": 23586, "properties": { - "east": "true", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 6853, + "id": 23587, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 6854, + "id": 23588, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 6855, + "id": 23589, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 6856, + "id": 23590, "properties": { - "east": "false", - "north": "true", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 6857, + "id": 23591, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 6858, + "id": 23592, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 6859, + "id": 23593, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 6860, + "id": 23594, "properties": { - "east": "false", - "north": "true", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 6861, + "id": 23595, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "true" + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 6862, + "id": 23596, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "true", - "west": "false" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 6863, + "id": 23597, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "true" + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 6864, + "id": 23598, "properties": { - "east": "false", - "north": "false", - "south": "true", - "up": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 6865, + "id": 23599, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 6866, + "id": 23600, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "true", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 6867, + "id": 23601, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "true" + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "default": true, - "id": 6868, + "id": 23602, "properties": { - "east": "false", - "north": "false", - "south": "false", - "up": "false", - "west": "false" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } - } - ] - }, - "minecraft:void_air": { - "states": [ - { - "default": true, - "id": 12958 - } - ] - }, - "minecraft:wall_torch": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ] - }, - "states": [ + }, { - "default": true, - "id": 2356, + "id": 23603, "properties": { - "facing": "north" + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 2357, + "id": 23604, "properties": { - "facing": "south" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 2358, + "id": 23605, "properties": { - "facing": "west" + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 2359, + "id": 23606, "properties": { - "facing": "east" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } - } - ] - }, - "minecraft:warped_button": { - "properties": { - "face": [ - "floor", - "wall", - "ceiling" - ], - "facing": [ - "north", - "south", - "west", - "east" - ], - "powered": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 19124, + "id": 23607, "properties": { - "face": "floor", - "facing": "north", - "powered": "true" + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 19125, + "id": 23608, "properties": { - "face": "floor", - "facing": "north", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 19126, + "id": 23609, "properties": { - "face": "floor", - "facing": "south", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 19127, + "id": 23610, "properties": { - "face": "floor", - "facing": "south", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 19128, + "id": 23611, "properties": { - "face": "floor", - "facing": "west", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 19129, + "id": 23612, "properties": { - "face": "floor", - "facing": "west", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 19130, + "id": 23613, "properties": { - "face": "floor", "facing": "east", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 19131, + "id": 23614, "properties": { - "face": "floor", "facing": "east", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 19132, + "id": 23615, "properties": { - "face": "wall", - "facing": "north", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "default": true, - "id": 19133, + "id": 23616, "properties": { - "face": "wall", - "facing": "north", - "powered": "false" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 19134, + "id": 23617, "properties": { - "face": "wall", - "facing": "south", - "powered": "true" + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 19135, + "id": 23618, "properties": { - "face": "wall", - "facing": "south", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 19136, + "id": 23619, "properties": { - "face": "wall", - "facing": "west", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 19137, + "id": 23620, "properties": { - "face": "wall", - "facing": "west", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 19138, + "id": 23621, "properties": { - "face": "wall", "facing": "east", - "powered": "true" + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 19139, + "id": 23622, "properties": { - "face": "wall", "facing": "east", - "powered": "false" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 19140, + "id": 23623, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 19141, + "id": 23624, "properties": { - "face": "ceiling", - "facing": "north", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 19142, + "id": 23625, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "true" + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 19143, + "id": 23626, "properties": { - "face": "ceiling", - "facing": "south", - "powered": "false" + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 19144, + "id": 23627, "properties": { - "face": "ceiling", - "facing": "west", + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22954 + } + ] + }, + "minecraft:waxed_exposed_copper": { + "states": [ + { + "default": true, + "id": 23302 + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24712, + "properties": { + "lit": "true", "powered": "true" } }, { - "id": 19145, + "id": 24713, "properties": { - "face": "ceiling", - "facing": "west", + "lit": "true", "powered": "false" } }, { - "id": 19146, + "id": 24714, "properties": { - "face": "ceiling", - "facing": "east", + "lit": "false", "powered": "true" } }, { - "id": 19147, + "default": true, + "id": 24715, "properties": { - "face": "ceiling", - "facing": "east", + "lit": "false", "powered": "false" } } ] }, - "minecraft:warped_door": { + "minecraft:waxed_exposed_copper_door": { "properties": { "facing": [ "north", @@ -231076,7 +255338,7 @@ }, "states": [ { - "id": 19212, + "id": 23972, "properties": { "facing": "north", "half": "upper", @@ -231086,7 +255348,7 @@ } }, { - "id": 19213, + "id": 23973, "properties": { "facing": "north", "half": "upper", @@ -231096,7 +255358,7 @@ } }, { - "id": 19214, + "id": 23974, "properties": { "facing": "north", "half": "upper", @@ -231106,7 +255368,7 @@ } }, { - "id": 19215, + "id": 23975, "properties": { "facing": "north", "half": "upper", @@ -231116,7 +255378,7 @@ } }, { - "id": 19216, + "id": 23976, "properties": { "facing": "north", "half": "upper", @@ -231126,7 +255388,7 @@ } }, { - "id": 19217, + "id": 23977, "properties": { "facing": "north", "half": "upper", @@ -231136,7 +255398,7 @@ } }, { - "id": 19218, + "id": 23978, "properties": { "facing": "north", "half": "upper", @@ -231146,7 +255408,7 @@ } }, { - "id": 19219, + "id": 23979, "properties": { "facing": "north", "half": "upper", @@ -231156,7 +255418,7 @@ } }, { - "id": 19220, + "id": 23980, "properties": { "facing": "north", "half": "lower", @@ -231166,7 +255428,7 @@ } }, { - "id": 19221, + "id": 23981, "properties": { "facing": "north", "half": "lower", @@ -231176,7 +255438,7 @@ } }, { - "id": 19222, + "id": 23982, "properties": { "facing": "north", "half": "lower", @@ -231187,7 +255449,7 @@ }, { "default": true, - "id": 19223, + "id": 23983, "properties": { "facing": "north", "half": "lower", @@ -231197,7 +255459,7 @@ } }, { - "id": 19224, + "id": 23984, "properties": { "facing": "north", "half": "lower", @@ -231207,7 +255469,7 @@ } }, { - "id": 19225, + "id": 23985, "properties": { "facing": "north", "half": "lower", @@ -231217,7 +255479,7 @@ } }, { - "id": 19226, + "id": 23986, "properties": { "facing": "north", "half": "lower", @@ -231227,7 +255489,7 @@ } }, { - "id": 19227, + "id": 23987, "properties": { "facing": "north", "half": "lower", @@ -231237,7 +255499,7 @@ } }, { - "id": 19228, + "id": 23988, "properties": { "facing": "south", "half": "upper", @@ -231247,7 +255509,7 @@ } }, { - "id": 19229, + "id": 23989, "properties": { "facing": "south", "half": "upper", @@ -231257,7 +255519,7 @@ } }, { - "id": 19230, + "id": 23990, "properties": { "facing": "south", "half": "upper", @@ -231267,7 +255529,7 @@ } }, { - "id": 19231, + "id": 23991, "properties": { "facing": "south", "half": "upper", @@ -231277,7 +255539,7 @@ } }, { - "id": 19232, + "id": 23992, "properties": { "facing": "south", "half": "upper", @@ -231287,7 +255549,7 @@ } }, { - "id": 19233, + "id": 23993, "properties": { "facing": "south", "half": "upper", @@ -231297,7 +255559,7 @@ } }, { - "id": 19234, + "id": 23994, "properties": { "facing": "south", "half": "upper", @@ -231307,7 +255569,7 @@ } }, { - "id": 19235, + "id": 23995, "properties": { "facing": "south", "half": "upper", @@ -231317,7 +255579,7 @@ } }, { - "id": 19236, + "id": 23996, "properties": { "facing": "south", "half": "lower", @@ -231327,7 +255589,7 @@ } }, { - "id": 19237, + "id": 23997, "properties": { "facing": "south", "half": "lower", @@ -231337,7 +255599,7 @@ } }, { - "id": 19238, + "id": 23998, "properties": { "facing": "south", "half": "lower", @@ -231347,7 +255609,7 @@ } }, { - "id": 19239, + "id": 23999, "properties": { "facing": "south", "half": "lower", @@ -231357,7 +255619,7 @@ } }, { - "id": 19240, + "id": 24000, "properties": { "facing": "south", "half": "lower", @@ -231367,7 +255629,7 @@ } }, { - "id": 19241, + "id": 24001, "properties": { "facing": "south", "half": "lower", @@ -231377,7 +255639,7 @@ } }, { - "id": 19242, + "id": 24002, "properties": { "facing": "south", "half": "lower", @@ -231387,7 +255649,7 @@ } }, { - "id": 19243, + "id": 24003, "properties": { "facing": "south", "half": "lower", @@ -231397,7 +255659,7 @@ } }, { - "id": 19244, + "id": 24004, "properties": { "facing": "west", "half": "upper", @@ -231407,7 +255669,7 @@ } }, { - "id": 19245, + "id": 24005, "properties": { "facing": "west", "half": "upper", @@ -231417,7 +255679,7 @@ } }, { - "id": 19246, + "id": 24006, "properties": { "facing": "west", "half": "upper", @@ -231427,7 +255689,7 @@ } }, { - "id": 19247, + "id": 24007, "properties": { "facing": "west", "half": "upper", @@ -231437,7 +255699,7 @@ } }, { - "id": 19248, + "id": 24008, "properties": { "facing": "west", "half": "upper", @@ -231447,7 +255709,7 @@ } }, { - "id": 19249, + "id": 24009, "properties": { "facing": "west", "half": "upper", @@ -231457,7 +255719,7 @@ } }, { - "id": 19250, + "id": 24010, "properties": { "facing": "west", "half": "upper", @@ -231467,7 +255729,7 @@ } }, { - "id": 19251, + "id": 24011, "properties": { "facing": "west", "half": "upper", @@ -231477,7 +255739,7 @@ } }, { - "id": 19252, + "id": 24012, "properties": { "facing": "west", "half": "lower", @@ -231487,7 +255749,7 @@ } }, { - "id": 19253, + "id": 24013, "properties": { "facing": "west", "half": "lower", @@ -231497,7 +255759,7 @@ } }, { - "id": 19254, + "id": 24014, "properties": { "facing": "west", "half": "lower", @@ -231507,7 +255769,7 @@ } }, { - "id": 19255, + "id": 24015, "properties": { "facing": "west", "half": "lower", @@ -231517,7 +255779,7 @@ } }, { - "id": 19256, + "id": 24016, "properties": { "facing": "west", "half": "lower", @@ -231527,7 +255789,7 @@ } }, { - "id": 19257, + "id": 24017, "properties": { "facing": "west", "half": "lower", @@ -231537,7 +255799,7 @@ } }, { - "id": 19258, + "id": 24018, "properties": { "facing": "west", "half": "lower", @@ -231547,7 +255809,7 @@ } }, { - "id": 19259, + "id": 24019, "properties": { "facing": "west", "half": "lower", @@ -231557,7 +255819,7 @@ } }, { - "id": 19260, + "id": 24020, "properties": { "facing": "east", "half": "upper", @@ -231567,7 +255829,7 @@ } }, { - "id": 19261, + "id": 24021, "properties": { "facing": "east", "half": "upper", @@ -231577,7 +255839,7 @@ } }, { - "id": 19262, + "id": 24022, "properties": { "facing": "east", "half": "upper", @@ -231587,7 +255849,7 @@ } }, { - "id": 19263, + "id": 24023, "properties": { "facing": "east", "half": "upper", @@ -231597,7 +255859,7 @@ } }, { - "id": 19264, + "id": 24024, "properties": { "facing": "east", "half": "upper", @@ -231607,7 +255869,7 @@ } }, { - "id": 19265, + "id": 24025, "properties": { "facing": "east", "half": "upper", @@ -231617,7 +255879,7 @@ } }, { - "id": 19266, + "id": 24026, "properties": { "facing": "east", "half": "upper", @@ -231627,7 +255889,7 @@ } }, { - "id": 19267, + "id": 24027, "properties": { "facing": "east", "half": "upper", @@ -231637,7 +255899,7 @@ } }, { - "id": 19268, + "id": 24028, "properties": { "facing": "east", "half": "lower", @@ -231647,7 +255909,7 @@ } }, { - "id": 19269, + "id": 24029, "properties": { "facing": "east", "half": "lower", @@ -231657,7 +255919,7 @@ } }, { - "id": 19270, + "id": 24030, "properties": { "facing": "east", "half": "lower", @@ -231667,7 +255929,7 @@ } }, { - "id": 19271, + "id": 24031, "properties": { "facing": "east", "half": "lower", @@ -231677,7 +255939,7 @@ } }, { - "id": 19272, + "id": 24032, "properties": { "facing": "east", "half": "lower", @@ -231687,7 +255949,7 @@ } }, { - "id": 19273, + "id": 24033, "properties": { "facing": "east", "half": "lower", @@ -231697,7 +255959,7 @@ } }, { - "id": 19274, + "id": 24034, "properties": { "facing": "east", "half": "lower", @@ -231707,7 +255969,7 @@ } }, { - "id": 19275, + "id": 24035, "properties": { "facing": "east", "half": "lower", @@ -231718,354 +255980,765 @@ } ] }, - "minecraft:warped_fence": { + "minecraft:waxed_exposed_copper_grate": { "properties": { - "east": [ + "waterlogged": [ "true", "false" + ] + }, + "states": [ + { + "id": 24686, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24687, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" ], - "north": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "south": [ + "open": [ "true", "false" ], - "waterlogged": [ + "powered": [ "true", "false" ], - "west": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 18716, + "id": 24484, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18717, + "id": 24485, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18718, + "id": 24486, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18719, + "id": 24487, "properties": { - "east": "true", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18720, + "id": 24488, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18721, + "id": 24489, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18722, + "id": 24490, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18723, + "id": 24491, "properties": { - "east": "true", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18724, + "id": 24492, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18725, + "id": 24493, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18726, + "id": 24494, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18727, + "id": 24495, "properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18728, + "id": 24496, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18729, + "id": 24497, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18730, + "id": 24498, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18731, + "default": true, + "id": 24499, "properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18732, + "id": 24500, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18733, + "id": 24501, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18734, + "id": 24502, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18735, + "id": 24503, "properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18736, + "id": 24504, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18737, + "id": 24505, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18738, + "id": 24506, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18739, + "id": 24507, "properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18740, + "id": 24508, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18741, + "id": 24509, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18742, + "id": 24510, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" } }, { - "id": 18743, + "id": 24511, "properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" } }, { - "id": 18744, + "id": 24512, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" } }, { - "id": 18745, + "id": 24513, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "true", - "west": "false" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" } }, { - "id": 18746, + "id": 24514, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24515, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24516, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24517, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24518, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24519, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24520, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24521, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24522, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24523, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24524, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24525, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24526, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24527, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24528, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24529, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24530, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24531, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24532, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24533, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24534, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24535, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24536, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24537, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24538, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24539, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24540, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24541, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24542, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24543, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24544, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24545, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24546, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" } }, + { + "id": 24547, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "states": [ { "default": true, - "id": 18747, + "id": 23306 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23640, "properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23641, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23642, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23643, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23644, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23645, + "properties": { + "type": "double", + "waterlogged": "false" } } ] }, - "minecraft:warped_fence_gate": { + "minecraft:waxed_exposed_cut_copper_stairs": { "properties": { "facing": [ "north", @@ -232073,1201 +256746,1476 @@ "west", "east" ], - "in_wall": [ - "true", - "false" + "half": [ + "top", + "bottom" ], - "open": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], - "powered": [ + "waterlogged": [ "true", "false" ] }, "states": [ { - "id": 18908, + "id": 23468, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18909, + "id": 23469, "properties": { "facing": "north", - "in_wall": "true", - "open": "true", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23472, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23473, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23476, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23477, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18910, + "id": 23482, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18911, + "id": 23483, "properties": { "facing": "north", - "in_wall": "true", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18912, + "id": 23484, "properties": { "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "true" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18913, + "id": 23485, "properties": { "facing": "north", - "in_wall": "false", - "open": "true", - "powered": "false" + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18914, + "id": 23486, "properties": { "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "true" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "default": true, - "id": 18915, + "id": 23487, "properties": { "facing": "north", - "in_wall": "false", - "open": "false", - "powered": "false" + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18916, + "id": 23488, "properties": { "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "true" + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18917, + "id": 23489, "properties": { "facing": "south", - "in_wall": "true", - "open": "true", - "powered": "false" + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18918, + "id": 23490, "properties": { "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "true" + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18919, + "id": 23491, "properties": { "facing": "south", - "in_wall": "true", - "open": "false", - "powered": "false" + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18920, + "id": 23492, "properties": { "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "true" + "half": "top", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18921, + "id": 23493, "properties": { "facing": "south", - "in_wall": "false", - "open": "true", - "powered": "false" + "half": "top", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18922, + "id": 23494, "properties": { "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "true" + "half": "top", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18923, + "id": 23495, "properties": { "facing": "south", - "in_wall": "false", - "open": "false", - "powered": "false" + "half": "top", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18924, + "id": 23496, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "true" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18925, + "id": 23497, "properties": { - "facing": "west", - "in_wall": "true", - "open": "true", - "powered": "false" + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18926, + "id": 23498, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18927, + "id": 23499, "properties": { - "facing": "west", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18928, + "id": 23500, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18929, + "id": 23501, "properties": { - "facing": "west", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" } }, { - "id": 18930, + "id": 23502, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" } }, { - "id": 18931, + "id": 23503, "properties": { - "facing": "west", - "in_wall": "false", - "open": "false", - "powered": "false" + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" } }, { - "id": 18932, + "id": 23504, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" } }, { - "id": 18933, + "id": 23505, "properties": { - "facing": "east", - "in_wall": "true", - "open": "true", - "powered": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" } }, { - "id": 18934, + "id": 23506, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "true" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" } }, { - "id": 18935, + "id": 23507, "properties": { - "facing": "east", - "in_wall": "true", - "open": "false", - "powered": "false" + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" } }, { - "id": 18936, + "id": 23508, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "true" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" } }, { - "id": 18937, + "id": 23509, "properties": { - "facing": "east", - "in_wall": "false", - "open": "true", - "powered": "false" + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" } }, { - "id": 18938, + "id": 23510, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "true" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" } }, { - "id": 18939, + "id": 23511, "properties": { - "facing": "east", - "in_wall": "false", - "open": "false", - "powered": "false" + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" } - } - ] - }, - "minecraft:warped_fungus": { - "states": [ - { - "default": true, - "id": 18592 - } - ] - }, - "minecraft:warped_hanging_sign": { - "properties": { - "attached": [ - "true", - "false" - ], - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 5346, + "id": 23512, "properties": { - "attached": "true", - "rotation": "0", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 5347, + "id": 23513, "properties": { - "attached": "true", - "rotation": "0", + "facing": "west", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 5348, + "id": 23514, "properties": { - "attached": "true", - "rotation": "1", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 5349, + "id": 23515, "properties": { - "attached": "true", - "rotation": "1", + "facing": "west", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 5350, + "id": 23516, "properties": { - "attached": "true", - "rotation": "2", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 5351, + "id": 23517, "properties": { - "attached": "true", - "rotation": "2", + "facing": "west", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 5352, + "id": 23518, "properties": { - "attached": "true", - "rotation": "3", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { - "id": 5353, + "id": 23519, "properties": { - "attached": "true", - "rotation": "3", + "facing": "west", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { - "id": 5354, + "id": 23520, "properties": { - "attached": "true", - "rotation": "4", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 5355, + "id": 23521, "properties": { - "attached": "true", - "rotation": "4", + "facing": "west", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 5356, + "id": 23522, "properties": { - "attached": "true", - "rotation": "5", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 5357, + "id": 23523, "properties": { - "attached": "true", - "rotation": "5", + "facing": "west", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 5358, + "id": 23524, "properties": { - "attached": "true", - "rotation": "6", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 5359, + "id": 23525, "properties": { - "attached": "true", - "rotation": "6", + "facing": "west", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 5360, + "id": 23526, "properties": { - "attached": "true", - "rotation": "7", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 5361, + "id": 23527, "properties": { - "attached": "true", - "rotation": "7", + "facing": "west", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 5362, + "id": 23528, "properties": { - "attached": "true", - "rotation": "8", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, { - "id": 5363, + "id": 23529, "properties": { - "attached": "true", - "rotation": "8", + "facing": "east", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { - "id": 5364, + "id": 23530, "properties": { - "attached": "true", - "rotation": "9", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 5365, + "id": 23531, "properties": { - "attached": "true", - "rotation": "9", + "facing": "east", + "half": "top", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 5366, + "id": 23532, "properties": { - "attached": "true", - "rotation": "10", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 5367, + "id": 23533, "properties": { - "attached": "true", - "rotation": "10", + "facing": "east", + "half": "top", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 5368, + "id": 23534, "properties": { - "attached": "true", - "rotation": "11", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 5369, + "id": 23535, "properties": { - "attached": "true", - "rotation": "11", + "facing": "east", + "half": "top", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 5370, + "id": 23536, "properties": { - "attached": "true", - "rotation": "12", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 5371, + "id": 23537, "properties": { - "attached": "true", - "rotation": "12", + "facing": "east", + "half": "top", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 5372, + "id": 23538, "properties": { - "attached": "true", - "rotation": "13", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "true" } }, { - "id": 5373, + "id": 23539, "properties": { - "attached": "true", - "rotation": "13", + "facing": "east", + "half": "bottom", + "shape": "straight", "waterlogged": "false" } }, { - "id": 5374, + "id": 23540, "properties": { - "attached": "true", - "rotation": "14", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 5375, + "id": 23541, "properties": { - "attached": "true", - "rotation": "14", + "facing": "east", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 5376, + "id": 23542, "properties": { - "attached": "true", - "rotation": "15", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 5377, + "id": 23543, "properties": { - "attached": "true", - "rotation": "15", + "facing": "east", + "half": "bottom", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 5378, + "id": 23544, "properties": { - "attached": "false", - "rotation": "0", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "true" } }, { - "default": true, - "id": 5379, + "id": 23545, "properties": { - "attached": "false", - "rotation": "0", + "facing": "east", + "half": "bottom", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 5380, + "id": 23546, "properties": { - "attached": "false", - "rotation": "1", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 5381, + "id": 23547, "properties": { - "attached": "false", - "rotation": "1", + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "states": [ { - "id": 5382, + "default": true, + "id": 22952 + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "states": [ + { + "default": true, + "id": 23303 + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24720, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "true" + "lit": "true", + "powered": "true" } }, { - "id": 5383, + "id": 24721, "properties": { - "attached": "false", - "rotation": "2", - "waterlogged": "false" + "lit": "true", + "powered": "false" } }, { - "id": 5384, + "id": 24722, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "true" + "lit": "false", + "powered": "true" } }, { - "id": 5385, + "default": true, + "id": 24723, "properties": { - "attached": "false", - "rotation": "3", - "waterlogged": "false" + "lit": "false", + "powered": "false" } - }, + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ { - "id": 5386, + "id": 24036, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5387, + "id": 24037, "properties": { - "attached": "false", - "rotation": "4", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5388, + "id": 24038, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5389, + "id": 24039, "properties": { - "attached": "false", - "rotation": "5", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5390, + "id": 24040, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5391, + "id": 24041, "properties": { - "attached": "false", - "rotation": "6", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5392, + "id": 24042, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5393, + "id": 24043, "properties": { - "attached": "false", - "rotation": "7", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 5394, + "id": 24044, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5395, + "id": 24045, "properties": { - "attached": "false", - "rotation": "8", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5396, + "id": 24046, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5397, + "default": true, + "id": 24047, "properties": { - "attached": "false", - "rotation": "9", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5398, + "id": 24048, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5399, + "id": 24049, "properties": { - "attached": "false", - "rotation": "10", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5400, + "id": 24050, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "true" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5401, + "id": 24051, "properties": { - "attached": "false", - "rotation": "11", - "waterlogged": "false" + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 5402, + "id": 24052, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 5403, + "id": 24053, "properties": { - "attached": "false", - "rotation": "12", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5404, + "id": 24054, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5405, + "id": 24055, "properties": { - "attached": "false", - "rotation": "13", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5406, + "id": 24056, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5407, + "id": 24057, "properties": { - "attached": "false", - "rotation": "14", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5408, + "id": 24058, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "true" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5409, + "id": 24059, "properties": { - "attached": "false", - "rotation": "15", - "waterlogged": "false" + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:warped_hyphae": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ + }, { - "id": 18585, + "id": 24060, "properties": { - "axis": "x" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "default": true, - "id": 18586, + "id": 24061, "properties": { - "axis": "y" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 18587, + "id": 24062, "properties": { - "axis": "z" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } - } - ] - }, - "minecraft:warped_nylium": { - "states": [ - { - "default": true, - "id": 18591 - } - ] - }, - "minecraft:warped_planks": { - "states": [ + }, { - "default": true, - "id": 18667 - } - ] - }, - "minecraft:warped_pressure_plate": { - "properties": { - "powered": [ - "true", - "false" - ] - }, - "states": [ + "id": 24063, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, { - "id": 18682, + "id": 24064, "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", "powered": "true" } }, { - "default": true, - "id": 18683, + "id": 24065, "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", "powered": "false" } - } - ] - }, - "minecraft:warped_roots": { - "states": [ + }, { - "default": true, - "id": 18594 - } - ] - }, - "minecraft:warped_sign": { - "properties": { - "rotation": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 24066, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, { - "id": 19308, + "id": 24067, "properties": { - "rotation": "0", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "default": true, - "id": 19309, + "id": 24068, "properties": { - "rotation": "0", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19310, + "id": 24069, "properties": { - "rotation": "1", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19311, + "id": 24070, "properties": { - "rotation": "1", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 19312, + "id": 24071, "properties": { - "rotation": "2", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19313, + "id": 24072, "properties": { - "rotation": "2", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 19314, + "id": 24073, "properties": { - "rotation": "3", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 19315, + "id": 24074, "properties": { - "rotation": "3", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 19316, + "id": 24075, "properties": { - "rotation": "4", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 19317, + "id": 24076, "properties": { - "rotation": "4", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19318, + "id": 24077, "properties": { - "rotation": "5", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19319, + "id": 24078, "properties": { - "rotation": "5", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 19320, + "id": 24079, "properties": { - "rotation": "6", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19321, + "id": 24080, "properties": { - "rotation": "6", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 19322, + "id": 24081, "properties": { - "rotation": "7", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 19323, + "id": 24082, "properties": { - "rotation": "7", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 19324, + "id": 24083, "properties": { - "rotation": "8", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 19325, + "id": 24084, "properties": { - "rotation": "8", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19326, + "id": 24085, "properties": { - "rotation": "9", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19327, + "id": 24086, "properties": { - "rotation": "9", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 19328, + "id": 24087, "properties": { - "rotation": "10", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19329, + "id": 24088, "properties": { - "rotation": "10", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 19330, + "id": 24089, "properties": { - "rotation": "11", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 19331, + "id": 24090, "properties": { - "rotation": "11", - "waterlogged": "false" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 19332, + "id": 24091, "properties": { - "rotation": "12", - "waterlogged": "true" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 19333, + "id": 24092, "properties": { - "rotation": "12", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19334, + "id": 24093, "properties": { - "rotation": "13", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19335, + "id": 24094, "properties": { - "rotation": "13", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 19336, + "id": 24095, "properties": { - "rotation": "14", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19337, + "id": 24096, "properties": { - "rotation": "14", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 19338, + "id": 24097, "properties": { - "rotation": "15", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 19339, + "id": 24098, "properties": { - "rotation": "15", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24099, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } } ] }, - "minecraft:warped_slab": { + "minecraft:waxed_oxidized_copper_grate": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], "waterlogged": [ "true", "false" @@ -233275,51 +258223,21 @@ }, "states": [ { - "id": 18674, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 18675, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 18676, + "id": 24690, "properties": { - "type": "bottom", "waterlogged": "true" } }, { "default": true, - "id": 18677, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 18678, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 18679, + "id": 24691, "properties": { - "type": "double", "waterlogged": "false" } } ] }, - "minecraft:warped_stairs": { + "minecraft:waxed_oxidized_copper_trapdoor": { "properties": { "facing": [ "north", @@ -233331,12 +258249,13 @@ "top", "bottom" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -233345,759 +258264,715 @@ }, "states": [ { - "id": 19020, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19021, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 19022, + "id": 24548, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19023, + "id": 24549, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19024, + "id": 24550, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19025, + "id": 24551, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19026, + "id": 24552, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19027, + "id": 24553, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19028, + "id": 24554, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19029, + "id": 24555, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19030, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 19031, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19032, + "id": 24556, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19033, + "id": 24557, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19034, + "id": 24558, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19035, + "id": 24559, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19036, + "id": 24560, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19037, + "id": 24561, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19038, + "id": 24562, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19039, + "default": true, + "id": 24563, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19040, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19041, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19042, + "id": 24564, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19043, + "id": 24565, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19044, + "id": 24566, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19045, + "id": 24567, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19046, + "id": 24568, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19047, + "id": 24569, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19048, + "id": 24570, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19049, + "id": 24571, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19050, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19051, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19052, + "id": 24572, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19053, + "id": 24573, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19054, + "id": 24574, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19055, + "id": 24575, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19056, + "id": 24576, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19057, + "id": 24577, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19058, + "id": 24578, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19059, + "id": 24579, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19060, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19061, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19062, + "id": 24580, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19063, + "id": 24581, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19064, + "id": 24582, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19065, + "id": 24583, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19066, + "id": 24584, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19067, + "id": 24585, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19068, + "id": 24586, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19069, + "id": 24587, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 19070, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 19071, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19072, + "id": 24588, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19073, + "id": 24589, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19074, + "id": 24590, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19075, + "id": 24591, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19076, + "id": 24592, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19077, + "id": 24593, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19078, + "id": 24594, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19079, + "id": 24595, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19080, + "id": 24596, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19081, + "id": 24597, "properties": { "facing": "east", "half": "top", - "shape": "straight", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19082, + "id": 24598, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19083, + "id": 24599, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19084, + "id": 24600, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19085, + "id": 24601, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19086, + "id": 24602, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19087, + "id": 24603, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 19088, + "id": 24604, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 19089, + "id": 24605, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", + "half": "bottom", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 19090, + "id": 24606, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 19091, + "id": 24607, "properties": { "facing": "east", "half": "bottom", - "shape": "straight", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 19092, + "id": 24608, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 19093, + "id": 24609, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 19094, + "id": 24610, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 19095, + "id": 24611, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "false", + "powered": "false", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "states": [ { - "id": 19096, + "default": true, + "id": 23304 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23628, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "top", "waterlogged": "true" } }, { - "id": 19097, + "id": 23629, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_left", + "type": "top", "waterlogged": "false" } }, { - "id": 19098, + "id": 23630, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "bottom", "waterlogged": "true" } }, { - "id": 19099, + "default": true, + "id": 23631, "properties": { - "facing": "east", - "half": "bottom", - "shape": "outer_right", + "type": "bottom", "waterlogged": "false" } - } - ] - }, - "minecraft:warped_stem": { - "properties": { - "axis": [ - "x", - "y", - "z" - ] - }, - "states": [ - { - "id": 18579, - "properties": { - "axis": "x" - } }, { - "default": true, - "id": 18580, + "id": 23632, "properties": { - "axis": "y" + "type": "double", + "waterlogged": "true" } }, { - "id": 18581, + "id": 23633, "properties": { - "axis": "z" + "type": "double", + "waterlogged": "false" } } ] }, - "minecraft:warped_trapdoor": { + "minecraft:waxed_oxidized_cut_copper_stairs": { "properties": { "facing": [ "north", @@ -234109,13 +258984,12 @@ "top", "bottom" ], - "open": [ - "true", - "false" - ], - "powered": [ - "true", - "false" + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ], "waterlogged": [ "true", @@ -234124,649 +258998,788 @@ }, "states": [ { - "id": 18812, + "id": 23308, "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18813, + "id": 23309, "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18814, + "id": 23310, "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18815, + "id": 23311, "properties": { "facing": "north", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18816, + "id": 23312, "properties": { "facing": "north", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18817, + "id": 23313, "properties": { "facing": "north", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18818, + "id": 23314, "properties": { "facing": "north", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18819, + "id": 23315, "properties": { "facing": "north", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18820, + "id": 23316, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23317, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23318, "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18821, + "default": true, + "id": 23319, "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18822, + "id": 23320, "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18823, + "id": 23321, "properties": { "facing": "north", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18824, + "id": 23322, "properties": { "facing": "north", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18825, + "id": 23323, "properties": { "facing": "north", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18826, + "id": 23324, "properties": { "facing": "north", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "default": true, - "id": 18827, + "id": 23325, "properties": { "facing": "north", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18828, + "id": 23326, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23327, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23328, "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18829, + "id": 23329, "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18830, + "id": 23330, "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18831, + "id": 23331, "properties": { "facing": "south", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18832, + "id": 23332, "properties": { "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18833, + "id": 23333, "properties": { "facing": "south", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18834, + "id": 23334, "properties": { "facing": "south", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18835, + "id": 23335, "properties": { "facing": "south", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23336, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23337, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18836, + "id": 23342, "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18837, + "id": 23343, "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18838, + "id": 23344, "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18839, + "id": 23345, "properties": { "facing": "south", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18840, + "id": 23346, "properties": { "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 18841, + "id": 23347, "properties": { "facing": "south", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 18842, + "id": 23348, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18843, + "id": 23349, "properties": { - "facing": "south", - "half": "bottom", - "open": "false", - "powered": "false", + "facing": "west", + "half": "top", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18844, + "id": 23350, "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18845, + "id": 23351, "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "true", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18846, + "id": 23352, "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18847, + "id": 23353, "properties": { "facing": "west", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18848, + "id": 23354, "properties": { "facing": "west", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18849, + "id": 23355, "properties": { "facing": "west", "half": "top", - "open": "false", - "powered": "true", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18850, + "id": 23356, "properties": { "facing": "west", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "true" } }, { - "id": 18851, + "id": 23357, "properties": { "facing": "west", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_right", "waterlogged": "false" } }, { - "id": 18852, + "id": 23358, "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18853, + "id": 23359, "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18854, + "id": 23360, "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18855, + "id": 23361, "properties": { "facing": "west", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18856, + "id": 23362, "properties": { "facing": "west", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18857, + "id": 23363, "properties": { "facing": "west", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18858, + "id": 23364, "properties": { "facing": "west", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18859, + "id": 23365, "properties": { "facing": "west", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18860, + "id": 23366, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23367, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23368, "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18861, + "id": 23369, "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18862, + "id": 23370, "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18863, + "id": 23371, "properties": { "facing": "east", "half": "top", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18864, + "id": 23372, "properties": { "facing": "east", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18865, + "id": 23373, "properties": { "facing": "east", "half": "top", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18866, + "id": 23374, "properties": { "facing": "east", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18867, + "id": 23375, "properties": { "facing": "east", "half": "top", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "false" } }, { - "id": 18868, + "id": 23376, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23377, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23378, "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "true" } }, { - "id": 18869, + "id": 23379, "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "true", + "shape": "straight", "waterlogged": "false" } }, { - "id": 18870, + "id": 23380, "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "true" } }, { - "id": 18871, + "id": 23381, "properties": { "facing": "east", "half": "bottom", - "open": "true", - "powered": "false", + "shape": "inner_left", "waterlogged": "false" } }, { - "id": 18872, + "id": 23382, "properties": { "facing": "east", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "true" } }, { - "id": 18873, + "id": 23383, "properties": { "facing": "east", "half": "bottom", - "open": "false", - "powered": "true", + "shape": "inner_right", "waterlogged": "false" } }, { - "id": 18874, + "id": 23384, "properties": { "facing": "east", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", "waterlogged": "true" } }, { - "id": 18875, + "id": 23385, "properties": { "facing": "east", "half": "bottom", - "open": "false", - "powered": "false", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23386, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23387, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", "waterlogged": "false" } } ] }, - "minecraft:warped_wall_hanging_sign": { + "minecraft:waxed_weathered_chiseled_copper": { + "states": [ + { + "default": true, + "id": 22953 + } + ] + }, + "minecraft:waxed_weathered_copper": { + "states": [ + { + "default": true, + "id": 23301 + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24716, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24717, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24718, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24719, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { "properties": { "facing": [ "north", @@ -234774,1142 +259787,1368 @@ "west", "east" ], - "waterlogged": [ + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { - "id": 5610, + "id": 24100, "properties": { "facing": "north", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "default": true, - "id": 5611, + "id": 24101, "properties": { "facing": "north", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 5612, + "id": 24102, "properties": { - "facing": "south", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 5613, + "id": 24103, "properties": { - "facing": "south", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 5614, + "id": 24104, "properties": { - "facing": "west", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 5615, + "id": 24105, "properties": { - "facing": "west", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 5616, + "id": 24106, "properties": { - "facing": "east", - "waterlogged": "true" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 5617, + "id": 24107, "properties": { - "facing": "east", - "waterlogged": "false" + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:warped_wall_sign": { - "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + }, { - "id": 19348, + "id": 24108, "properties": { "facing": "north", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24109, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24110, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { "default": true, - "id": 19349, + "id": 24111, "properties": { "facing": "north", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 19350, + "id": 24112, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24113, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24114, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24115, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24116, "properties": { "facing": "south", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19351, + "id": 24117, "properties": { "facing": "south", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19352, + "id": 24118, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24119, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24120, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24121, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24122, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24123, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24124, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24125, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24126, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24127, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24128, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24129, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24130, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24131, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24132, "properties": { "facing": "west", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 19353, + "id": 24133, "properties": { "facing": "west", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 19354, + "id": 24134, "properties": { - "facing": "east", - "waterlogged": "true" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 19355, + "id": 24135, "properties": { - "facing": "east", - "waterlogged": "false" + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:warped_wart_block": { - "states": [ + }, { - "default": true, - "id": 18593 - } - ] - }, - "minecraft:water": { - "properties": { - "level": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - }, - "states": [ + "id": 24136, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, { - "default": true, - "id": 80, + "id": 24137, "properties": { - "level": "0" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 81, + "id": 24138, "properties": { - "level": "1" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 82, + "id": 24139, "properties": { - "level": "2" + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 83, + "id": 24140, "properties": { - "level": "3" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 84, + "id": 24141, "properties": { - "level": "4" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 85, + "id": 24142, "properties": { - "level": "5" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 86, + "id": 24143, "properties": { - "level": "6" + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 87, + "id": 24144, "properties": { - "level": "7" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 88, + "id": 24145, "properties": { - "level": "8" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 89, + "id": 24146, "properties": { - "level": "9" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 90, + "id": 24147, "properties": { - "level": "10" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 91, + "id": 24148, "properties": { - "level": "11" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 92, + "id": 24149, "properties": { - "level": "12" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 93, + "id": 24150, "properties": { - "level": "13" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 94, + "id": 24151, "properties": { - "level": "14" + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 95, + "id": 24152, "properties": { - "level": "15" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } - } - ] - }, - "minecraft:water_cauldron": { - "properties": { - "level": [ - "1", - "2", - "3" - ] - }, - "states": [ + }, { - "default": true, - "id": 7399, + "id": 24153, "properties": { - "level": "1" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 7400, + "id": 24154, "properties": { - "level": "2" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 7401, + "id": 24155, "properties": { - "level": "3" + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } - } - ] - }, - "minecraft:waxed_copper_block": { - "states": [ + }, { - "default": true, - "id": 22058 - } - ] - }, - "minecraft:waxed_cut_copper": { - "states": [ + "id": 24156, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, { - "default": true, - "id": 22065 - } - ] - }, - "minecraft:waxed_cut_copper_slab": { - "properties": { - "type": [ - "top", - "bottom", - "double" - ], - "waterlogged": [ - "true", - "false" - ] - }, - "states": [ + "id": 24157, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, { - "id": 22404, + "id": 24158, "properties": { - "type": "top", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22405, + "id": 24159, "properties": { - "type": "top", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22406, + "id": 24160, "properties": { - "type": "bottom", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "default": true, - "id": 22407, + "id": 24161, "properties": { - "type": "bottom", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22408, + "id": 24162, "properties": { - "type": "double", - "waterlogged": "true" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22409, + "id": 24163, "properties": { - "type": "double", - "waterlogged": "false" + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } } ] }, - "minecraft:waxed_cut_copper_stairs": { + "minecraft:waxed_weathered_copper_grate": { "properties": { - "facing": [ - "north", - "south", - "west", - "east" - ], - "half": [ - "top", - "bottom" - ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ], "waterlogged": [ "true", "false" ] }, - "states": [ - { - "id": 22306, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22307, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, + "states": [ { - "id": 22308, + "id": 24688, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", "waterlogged": "true" } }, { - "id": 22309, + "default": true, + "id": 24689, "properties": { - "facing": "north", - "half": "top", - "shape": "inner_left", "waterlogged": "false" } - }, + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ { - "id": 22310, + "id": 24612, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22311, + "id": 24613, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22312, + "id": 24614, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22313, + "id": 24615, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22314, + "id": 24616, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22315, + "id": 24617, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22316, + "id": 24618, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "default": true, - "id": 22317, + "id": 24619, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", + "half": "top", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22318, + "id": 24620, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22319, + "id": 24621, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22320, + "id": 24622, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22321, + "id": 24623, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22322, + "id": 24624, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22323, + "id": 24625, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22324, + "id": 24626, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22325, + "default": true, + "id": 24627, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22326, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22327, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22328, + "id": 24628, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22329, + "id": 24629, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22330, + "id": 24630, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22331, + "id": 24631, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22332, + "id": 24632, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22333, + "id": 24633, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22334, + "id": 24634, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22335, + "id": 24635, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22336, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22337, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22338, + "id": 24636, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22339, + "id": 24637, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22340, + "id": 24638, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22341, + "id": 24639, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22342, + "id": 24640, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22343, + "id": 24641, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22344, + "id": 24642, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22345, + "id": 24643, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22346, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22347, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22348, + "id": 24644, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22349, + "id": 24645, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22350, + "id": 24646, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22351, + "id": 24647, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22352, + "id": 24648, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22353, + "id": 24649, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22354, + "id": 24650, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22355, + "id": 24651, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22356, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22357, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22358, + "id": 24652, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22359, + "id": 24653, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22360, + "id": 24654, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22361, + "id": 24655, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22362, + "id": 24656, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22363, + "id": 24657, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22364, + "id": 24658, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22365, + "id": 24659, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22366, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22367, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22368, + "id": 24660, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22369, + "id": 24661, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22370, + "id": 24662, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22371, + "id": 24663, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22372, + "id": 24664, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22373, + "id": 24665, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22374, + "id": 24666, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22375, + "id": 24667, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22376, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22377, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22378, + "id": 24668, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22379, + "id": 24669, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22380, + "id": 24670, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22381, + "id": 24671, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22382, + "id": 24672, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22383, + "id": 24673, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22384, + "id": 24674, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22385, + "id": 24675, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" } } ] }, - "minecraft:waxed_exposed_copper": { - "states": [ - { - "default": true, - "id": 22060 - } - ] - }, - "minecraft:waxed_exposed_cut_copper": { + "minecraft:waxed_weathered_cut_copper": { "states": [ { "default": true, - "id": 22064 + "id": 23305 } ] }, - "minecraft:waxed_exposed_cut_copper_slab": { + "minecraft:waxed_weathered_cut_copper_slab": { "properties": { "type": [ "top", @@ -235923,21 +261162,21 @@ }, "states": [ { - "id": 22398, + "id": 23634, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22399, + "id": 23635, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22400, + "id": 23636, "properties": { "type": "bottom", "waterlogged": "true" @@ -235945,21 +261184,21 @@ }, { "default": true, - "id": 22401, + "id": 23637, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22402, + "id": 23638, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22403, + "id": 23639, "properties": { "type": "double", "waterlogged": "false" @@ -235967,7 +261206,7 @@ } ] }, - "minecraft:waxed_exposed_cut_copper_stairs": { + "minecraft:waxed_weathered_cut_copper_stairs": { "properties": { "facing": [ "north", @@ -235993,7 +261232,7 @@ }, "states": [ { - "id": 22226, + "id": 23388, "properties": { "facing": "north", "half": "top", @@ -236002,7 +261241,7 @@ } }, { - "id": 22227, + "id": 23389, "properties": { "facing": "north", "half": "top", @@ -236011,7 +261250,7 @@ } }, { - "id": 22228, + "id": 23390, "properties": { "facing": "north", "half": "top", @@ -236020,7 +261259,7 @@ } }, { - "id": 22229, + "id": 23391, "properties": { "facing": "north", "half": "top", @@ -236029,7 +261268,7 @@ } }, { - "id": 22230, + "id": 23392, "properties": { "facing": "north", "half": "top", @@ -236038,7 +261277,7 @@ } }, { - "id": 22231, + "id": 23393, "properties": { "facing": "north", "half": "top", @@ -236047,7 +261286,7 @@ } }, { - "id": 22232, + "id": 23394, "properties": { "facing": "north", "half": "top", @@ -236056,7 +261295,7 @@ } }, { - "id": 22233, + "id": 23395, "properties": { "facing": "north", "half": "top", @@ -236065,7 +261304,7 @@ } }, { - "id": 22234, + "id": 23396, "properties": { "facing": "north", "half": "top", @@ -236074,7 +261313,7 @@ } }, { - "id": 22235, + "id": 23397, "properties": { "facing": "north", "half": "top", @@ -236083,7 +261322,7 @@ } }, { - "id": 22236, + "id": 23398, "properties": { "facing": "north", "half": "bottom", @@ -236093,7 +261332,7 @@ }, { "default": true, - "id": 22237, + "id": 23399, "properties": { "facing": "north", "half": "bottom", @@ -236102,7 +261341,7 @@ } }, { - "id": 22238, + "id": 23400, "properties": { "facing": "north", "half": "bottom", @@ -236111,7 +261350,7 @@ } }, { - "id": 22239, + "id": 23401, "properties": { "facing": "north", "half": "bottom", @@ -236120,7 +261359,7 @@ } }, { - "id": 22240, + "id": 23402, "properties": { "facing": "north", "half": "bottom", @@ -236129,7 +261368,7 @@ } }, { - "id": 22241, + "id": 23403, "properties": { "facing": "north", "half": "bottom", @@ -236138,7 +261377,7 @@ } }, { - "id": 22242, + "id": 23404, "properties": { "facing": "north", "half": "bottom", @@ -236147,7 +261386,7 @@ } }, { - "id": 22243, + "id": 23405, "properties": { "facing": "north", "half": "bottom", @@ -236156,7 +261395,7 @@ } }, { - "id": 22244, + "id": 23406, "properties": { "facing": "north", "half": "bottom", @@ -236165,7 +261404,7 @@ } }, { - "id": 22245, + "id": 23407, "properties": { "facing": "north", "half": "bottom", @@ -236174,7 +261413,7 @@ } }, { - "id": 22246, + "id": 23408, "properties": { "facing": "south", "half": "top", @@ -236183,7 +261422,7 @@ } }, { - "id": 22247, + "id": 23409, "properties": { "facing": "south", "half": "top", @@ -236192,7 +261431,7 @@ } }, { - "id": 22248, + "id": 23410, "properties": { "facing": "south", "half": "top", @@ -236201,7 +261440,7 @@ } }, { - "id": 22249, + "id": 23411, "properties": { "facing": "south", "half": "top", @@ -236210,7 +261449,7 @@ } }, { - "id": 22250, + "id": 23412, "properties": { "facing": "south", "half": "top", @@ -236219,7 +261458,7 @@ } }, { - "id": 22251, + "id": 23413, "properties": { "facing": "south", "half": "top", @@ -236228,7 +261467,7 @@ } }, { - "id": 22252, + "id": 23414, "properties": { "facing": "south", "half": "top", @@ -236237,7 +261476,7 @@ } }, { - "id": 22253, + "id": 23415, "properties": { "facing": "south", "half": "top", @@ -236246,7 +261485,7 @@ } }, { - "id": 22254, + "id": 23416, "properties": { "facing": "south", "half": "top", @@ -236255,7 +261494,7 @@ } }, { - "id": 22255, + "id": 23417, "properties": { "facing": "south", "half": "top", @@ -236264,7 +261503,7 @@ } }, { - "id": 22256, + "id": 23418, "properties": { "facing": "south", "half": "bottom", @@ -236273,7 +261512,7 @@ } }, { - "id": 22257, + "id": 23419, "properties": { "facing": "south", "half": "bottom", @@ -236282,7 +261521,7 @@ } }, { - "id": 22258, + "id": 23420, "properties": { "facing": "south", "half": "bottom", @@ -236291,7 +261530,7 @@ } }, { - "id": 22259, + "id": 23421, "properties": { "facing": "south", "half": "bottom", @@ -236300,7 +261539,7 @@ } }, { - "id": 22260, + "id": 23422, "properties": { "facing": "south", "half": "bottom", @@ -236309,7 +261548,7 @@ } }, { - "id": 22261, + "id": 23423, "properties": { "facing": "south", "half": "bottom", @@ -236318,7 +261557,7 @@ } }, { - "id": 22262, + "id": 23424, "properties": { "facing": "south", "half": "bottom", @@ -236327,7 +261566,7 @@ } }, { - "id": 22263, + "id": 23425, "properties": { "facing": "south", "half": "bottom", @@ -236336,7 +261575,7 @@ } }, { - "id": 22264, + "id": 23426, "properties": { "facing": "south", "half": "bottom", @@ -236345,7 +261584,7 @@ } }, { - "id": 22265, + "id": 23427, "properties": { "facing": "south", "half": "bottom", @@ -236354,7 +261593,7 @@ } }, { - "id": 22266, + "id": 23428, "properties": { "facing": "west", "half": "top", @@ -236363,7 +261602,7 @@ } }, { - "id": 22267, + "id": 23429, "properties": { "facing": "west", "half": "top", @@ -236372,7 +261611,7 @@ } }, { - "id": 22268, + "id": 23430, "properties": { "facing": "west", "half": "top", @@ -236381,7 +261620,7 @@ } }, { - "id": 22269, + "id": 23431, "properties": { "facing": "west", "half": "top", @@ -236390,7 +261629,7 @@ } }, { - "id": 22270, + "id": 23432, "properties": { "facing": "west", "half": "top", @@ -236399,7 +261638,7 @@ } }, { - "id": 22271, + "id": 23433, "properties": { "facing": "west", "half": "top", @@ -236408,7 +261647,7 @@ } }, { - "id": 22272, + "id": 23434, "properties": { "facing": "west", "half": "top", @@ -236417,7 +261656,7 @@ } }, { - "id": 22273, + "id": 23435, "properties": { "facing": "west", "half": "top", @@ -236426,7 +261665,7 @@ } }, { - "id": 22274, + "id": 23436, "properties": { "facing": "west", "half": "top", @@ -236435,7 +261674,7 @@ } }, { - "id": 22275, + "id": 23437, "properties": { "facing": "west", "half": "top", @@ -236444,7 +261683,7 @@ } }, { - "id": 22276, + "id": 23438, "properties": { "facing": "west", "half": "bottom", @@ -236453,7 +261692,7 @@ } }, { - "id": 22277, + "id": 23439, "properties": { "facing": "west", "half": "bottom", @@ -236462,7 +261701,7 @@ } }, { - "id": 22278, + "id": 23440, "properties": { "facing": "west", "half": "bottom", @@ -236471,7 +261710,7 @@ } }, { - "id": 22279, + "id": 23441, "properties": { "facing": "west", "half": "bottom", @@ -236480,7 +261719,7 @@ } }, { - "id": 22280, + "id": 23442, "properties": { "facing": "west", "half": "bottom", @@ -236489,7 +261728,7 @@ } }, { - "id": 22281, + "id": 23443, "properties": { "facing": "west", "half": "bottom", @@ -236498,7 +261737,7 @@ } }, { - "id": 22282, + "id": 23444, "properties": { "facing": "west", "half": "bottom", @@ -236507,7 +261746,7 @@ } }, { - "id": 22283, + "id": 23445, "properties": { "facing": "west", "half": "bottom", @@ -236516,7 +261755,7 @@ } }, { - "id": 22284, + "id": 23446, "properties": { "facing": "west", "half": "bottom", @@ -236525,7 +261764,7 @@ } }, { - "id": 22285, + "id": 23447, "properties": { "facing": "west", "half": "bottom", @@ -236534,7 +261773,7 @@ } }, { - "id": 22286, + "id": 23448, "properties": { "facing": "east", "half": "top", @@ -236543,7 +261782,7 @@ } }, { - "id": 22287, + "id": 23449, "properties": { "facing": "east", "half": "top", @@ -236552,7 +261791,7 @@ } }, { - "id": 22288, + "id": 23450, "properties": { "facing": "east", "half": "top", @@ -236561,7 +261800,7 @@ } }, { - "id": 22289, + "id": 23451, "properties": { "facing": "east", "half": "top", @@ -236570,7 +261809,7 @@ } }, { - "id": 22290, + "id": 23452, "properties": { "facing": "east", "half": "top", @@ -236579,7 +261818,7 @@ } }, { - "id": 22291, + "id": 23453, "properties": { "facing": "east", "half": "top", @@ -236588,7 +261827,7 @@ } }, { - "id": 22292, + "id": 23454, "properties": { "facing": "east", "half": "top", @@ -236597,7 +261836,7 @@ } }, { - "id": 22293, + "id": 23455, "properties": { "facing": "east", "half": "top", @@ -236606,7 +261845,7 @@ } }, { - "id": 22294, + "id": 23456, "properties": { "facing": "east", "half": "top", @@ -236615,7 +261854,7 @@ } }, { - "id": 22295, + "id": 23457, "properties": { "facing": "east", "half": "top", @@ -236624,7 +261863,7 @@ } }, { - "id": 22296, + "id": 23458, "properties": { "facing": "east", "half": "bottom", @@ -236633,7 +261872,7 @@ } }, { - "id": 22297, + "id": 23459, "properties": { "facing": "east", "half": "bottom", @@ -236642,7 +261881,7 @@ } }, { - "id": 22298, + "id": 23460, "properties": { "facing": "east", "half": "bottom", @@ -236651,7 +261890,7 @@ } }, { - "id": 22299, + "id": 23461, "properties": { "facing": "east", "half": "bottom", @@ -236660,7 +261899,7 @@ } }, { - "id": 22300, + "id": 23462, "properties": { "facing": "east", "half": "bottom", @@ -236669,7 +261908,7 @@ } }, { - "id": 22301, + "id": 23463, "properties": { "facing": "east", "half": "bottom", @@ -236678,7 +261917,7 @@ } }, { - "id": 22302, + "id": 23464, "properties": { "facing": "east", "half": "bottom", @@ -236687,7 +261926,7 @@ } }, { - "id": 22303, + "id": 23465, "properties": { "facing": "east", "half": "bottom", @@ -236696,7 +261935,7 @@ } }, { - "id": 22304, + "id": 23466, "properties": { "facing": "east", "half": "bottom", @@ -236705,7 +261944,7 @@ } }, { - "id": 22305, + "id": 23467, "properties": { "facing": "east", "half": "bottom", @@ -236715,81 +261954,66 @@ } ] }, - "minecraft:waxed_oxidized_copper": { + "minecraft:weathered_chiseled_copper": { "states": [ { "default": true, - "id": 22061 + "id": 22949 } ] }, - "minecraft:waxed_oxidized_cut_copper": { + "minecraft:weathered_copper": { "states": [ { "default": true, - "id": 22062 + "id": 22940 } ] }, - "minecraft:waxed_oxidized_cut_copper_slab": { + "minecraft:weathered_copper_bulb": { "properties": { - "type": [ - "top", - "bottom", - "double" + "lit": [ + "true", + "false" ], - "waterlogged": [ + "powered": [ "true", "false" ] }, "states": [ { - "id": 22386, + "id": 24700, "properties": { - "type": "top", - "waterlogged": "true" + "lit": "true", + "powered": "true" } }, { - "id": 22387, + "id": 24701, "properties": { - "type": "top", - "waterlogged": "false" + "lit": "true", + "powered": "false" } }, { - "id": 22388, + "id": 24702, "properties": { - "type": "bottom", - "waterlogged": "true" + "lit": "false", + "powered": "true" } }, { "default": true, - "id": 22389, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22390, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22391, + "id": 24703, "properties": { - "type": "double", - "waterlogged": "false" + "lit": "false", + "powered": "false" } } ] }, - "minecraft:waxed_oxidized_cut_copper_stairs": { + "minecraft:weathered_copper_door": { "properties": { "facing": [ "north", @@ -236798,768 +262022,668 @@ "east" ], "half": [ - "top", - "bottom" + "upper", + "lower" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "hinge": [ + "left", + "right" ], - "waterlogged": [ + "open": [ + "true", + "false" + ], + "powered": [ "true", "false" ] }, "states": [ { - "id": 22066, + "id": 23844, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22067, + "id": 23845, "properties": { "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22068, + "id": 23846, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22069, + "id": 23847, "properties": { "facing": "north", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22070, + "id": 23848, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22071, + "id": 23849, "properties": { "facing": "north", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22072, + "id": 23850, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22073, + "id": 23851, "properties": { "facing": "north", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22074, + "id": 23852, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22075, + "id": 23853, "properties": { "facing": "north", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22076, + "id": 23854, "properties": { "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { "default": true, - "id": 22077, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22078, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22079, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22080, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22081, + "id": 23855, "properties": { "facing": "north", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22082, + "id": 23856, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22083, + "id": 23857, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22084, + "id": 23858, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22085, + "id": 23859, "properties": { "facing": "north", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22086, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22087, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22088, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" - } - }, - { - "id": 22089, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" - } - }, - { - "id": 22090, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" - } - }, - { - "id": 22091, - "properties": { - "facing": "south", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" - } - }, - { - "id": 22092, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" - } - }, - { - "id": 22093, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" - } - }, - { - "id": 22094, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" - } - }, - { - "id": 22095, - "properties": { - "facing": "south", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22096, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22097, + "id": 23860, "properties": { "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22098, + "id": 23861, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22099, + "id": 23862, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22100, + "id": 23863, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22101, + "id": 23864, "properties": { "facing": "south", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22102, + "id": 23865, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22103, + "id": 23866, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22104, + "id": 23867, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22105, + "id": 23868, "properties": { "facing": "south", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22106, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22107, + "id": 23869, "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22108, + "id": 23870, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22109, + "id": 23871, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22110, + "id": 23872, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22111, + "id": 23873, "properties": { - "facing": "west", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22112, + "id": 23874, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22113, + "id": 23875, "properties": { - "facing": "west", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22114, + "id": 23876, "properties": { "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22115, + "id": 23877, "properties": { "facing": "west", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22116, + "id": 23878, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22117, + "id": 23879, "properties": { "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22118, + "id": 23880, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22119, + "id": 23881, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22120, + "id": 23882, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22121, + "id": 23883, "properties": { "facing": "west", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22122, + "id": 23884, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22123, + "id": 23885, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22124, + "id": 23886, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22125, + "id": 23887, "properties": { "facing": "west", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22126, + "id": 23888, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22127, + "id": 23889, "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22128, + "id": 23890, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "true" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22129, + "id": 23891, "properties": { - "facing": "east", - "half": "top", - "shape": "inner_left", - "waterlogged": "false" + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22130, + "id": 23892, "properties": { "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22131, + "id": 23893, "properties": { "facing": "east", - "half": "top", - "shape": "inner_right", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22132, + "id": 23894, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "true" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22133, + "id": 23895, "properties": { "facing": "east", - "half": "top", - "shape": "outer_left", - "waterlogged": "false" + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22134, + "id": 23896, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22135, + "id": 23897, "properties": { "facing": "east", - "half": "top", - "shape": "outer_right", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22136, + "id": 23898, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22137, + "id": 23899, "properties": { "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "false" + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" } }, { - "id": 22138, + "id": 23900, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" } }, { - "id": 22139, + "id": 23901, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_left", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" } }, { - "id": 22140, + "id": 23902, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "true" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" } }, { - "id": 22141, + "id": 23903, "properties": { "facing": "east", - "half": "bottom", - "shape": "inner_right", - "waterlogged": "false" + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" } }, { - "id": 22142, + "id": 23904, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" } }, { - "id": 22143, + "id": 23905, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_left", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" } }, { - "id": 22144, + "id": 23906, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "true" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" } }, { - "id": 22145, + "id": 23907, "properties": { "facing": "east", - "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" } } ] }, - "minecraft:waxed_weathered_copper": { - "states": [ - { - "default": true, - "id": 22059 - } - ] - }, - "minecraft:waxed_weathered_cut_copper": { - "states": [ - { - "default": true, - "id": 22063 - } - ] - }, - "minecraft:waxed_weathered_cut_copper_slab": { + "minecraft:weathered_copper_grate": { "properties": { - "type": [ - "top", - "bottom", - "double" - ], "waterlogged": [ "true", "false" @@ -237567,51 +262691,21 @@ }, "states": [ { - "id": 22392, - "properties": { - "type": "top", - "waterlogged": "true" - } - }, - { - "id": 22393, - "properties": { - "type": "top", - "waterlogged": "false" - } - }, - { - "id": 22394, + "id": 24680, "properties": { - "type": "bottom", "waterlogged": "true" } }, { "default": true, - "id": 22395, - "properties": { - "type": "bottom", - "waterlogged": "false" - } - }, - { - "id": 22396, - "properties": { - "type": "double", - "waterlogged": "true" - } - }, - { - "id": 22397, + "id": 24681, "properties": { - "type": "double", "waterlogged": "false" } } ] }, - "minecraft:waxed_weathered_cut_copper_stairs": { + "minecraft:weathered_copper_trapdoor": { "properties": { "facing": [ "north", @@ -237623,12 +262717,13 @@ "top", "bottom" ], - "shape": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" ], "waterlogged": [ "true", @@ -237637,741 +262732,653 @@ }, "states": [ { - "id": 22146, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22147, - "properties": { - "facing": "north", - "half": "top", - "shape": "straight", - "waterlogged": "false" - } - }, - { - "id": 22148, + "id": 24356, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22149, + "id": 24357, "properties": { "facing": "north", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22150, + "id": 24358, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22151, + "id": 24359, "properties": { "facing": "north", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22152, + "id": 24360, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22153, + "id": 24361, "properties": { "facing": "north", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22154, + "id": 24362, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22155, + "id": 24363, "properties": { "facing": "north", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22156, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "default": true, - "id": 22157, - "properties": { - "facing": "north", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22158, + "id": 24364, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22159, + "id": 24365, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22160, + "id": 24366, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22161, + "id": 24367, "properties": { "facing": "north", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22162, + "id": 24368, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22163, + "id": 24369, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22164, + "id": 24370, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22165, + "default": true, + "id": 24371, "properties": { "facing": "north", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22166, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22167, - "properties": { - "facing": "south", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22168, + "id": 24372, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22169, + "id": 24373, "properties": { "facing": "south", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22170, + "id": 24374, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22171, + "id": 24375, "properties": { "facing": "south", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22172, + "id": 24376, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22173, + "id": 24377, "properties": { "facing": "south", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22174, + "id": 24378, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22175, + "id": 24379, "properties": { "facing": "south", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22176, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22177, - "properties": { - "facing": "south", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22178, + "id": 24380, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22179, + "id": 24381, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22180, + "id": 24382, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22181, + "id": 24383, "properties": { "facing": "south", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22182, + "id": 24384, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22183, + "id": 24385, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22184, + "id": 24386, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22185, + "id": 24387, "properties": { "facing": "south", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22186, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22187, - "properties": { - "facing": "west", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22188, + "id": 24388, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22189, + "id": 24389, "properties": { "facing": "west", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22190, + "id": 24390, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22191, + "id": 24391, "properties": { "facing": "west", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22192, + "id": 24392, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22193, + "id": 24393, "properties": { "facing": "west", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22194, + "id": 24394, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22195, + "id": 24395, "properties": { "facing": "west", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22196, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22197, - "properties": { - "facing": "west", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22198, + "id": 24396, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22199, + "id": 24397, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22200, + "id": 24398, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22201, + "id": 24399, "properties": { "facing": "west", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22202, + "id": 24400, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22203, + "id": 24401, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22204, + "id": 24402, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22205, + "id": 24403, "properties": { "facing": "west", "half": "bottom", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22206, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22207, - "properties": { - "facing": "east", - "half": "top", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22208, + "id": 24404, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22209, + "id": 24405, "properties": { "facing": "east", "half": "top", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22210, + "id": 24406, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22211, + "id": 24407, "properties": { "facing": "east", "half": "top", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22212, + "id": 24408, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22213, + "id": 24409, "properties": { "facing": "east", "half": "top", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22214, + "id": 24410, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22215, + "id": 24411, "properties": { "facing": "east", "half": "top", - "shape": "outer_right", - "waterlogged": "false" - } - }, - { - "id": 22216, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", - "waterlogged": "true" - } - }, - { - "id": 22217, - "properties": { - "facing": "east", - "half": "bottom", - "shape": "straight", + "open": "false", + "powered": "false", "waterlogged": "false" } }, { - "id": 22218, + "id": 24412, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "true" } }, { - "id": 22219, + "id": 24413, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_left", + "open": "true", + "powered": "true", "waterlogged": "false" } }, { - "id": 22220, + "id": 24414, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "true" } }, { - "id": 22221, + "id": 24415, "properties": { "facing": "east", "half": "bottom", - "shape": "inner_right", + "open": "true", + "powered": "false", "waterlogged": "false" } }, { - "id": 22222, + "id": 24416, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "true" } }, { - "id": 22223, + "id": 24417, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_left", + "open": "false", + "powered": "true", "waterlogged": "false" } }, { - "id": 22224, + "id": 24418, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "true" } }, { - "id": 22225, + "id": 24419, "properties": { "facing": "east", "half": "bottom", - "shape": "outer_right", + "open": "false", + "powered": "false", "waterlogged": "false" } } ] }, - "minecraft:weathered_copper": { - "states": [ - { - "default": true, - "id": 21705 - } - ] - }, "minecraft:weathered_cut_copper": { "states": [ { "default": true, - "id": 21711 + "id": 22945 } ] }, @@ -238389,21 +263396,21 @@ }, "states": [ { - "id": 22040, + "id": 23282, "properties": { "type": "top", "waterlogged": "true" } }, { - "id": 22041, + "id": 23283, "properties": { "type": "top", "waterlogged": "false" } }, { - "id": 22042, + "id": 23284, "properties": { "type": "bottom", "waterlogged": "true" @@ -238411,21 +263418,21 @@ }, { "default": true, - "id": 22043, + "id": 23285, "properties": { "type": "bottom", "waterlogged": "false" } }, { - "id": 22044, + "id": 23286, "properties": { "type": "double", "waterlogged": "true" } }, { - "id": 22045, + "id": 23287, "properties": { "type": "double", "waterlogged": "false" @@ -238459,7 +263466,7 @@ }, "states": [ { - "id": 21794, + "id": 23036, "properties": { "facing": "north", "half": "top", @@ -238468,7 +263475,7 @@ } }, { - "id": 21795, + "id": 23037, "properties": { "facing": "north", "half": "top", @@ -238477,7 +263484,7 @@ } }, { - "id": 21796, + "id": 23038, "properties": { "facing": "north", "half": "top", @@ -238486,7 +263493,7 @@ } }, { - "id": 21797, + "id": 23039, "properties": { "facing": "north", "half": "top", @@ -238495,7 +263502,7 @@ } }, { - "id": 21798, + "id": 23040, "properties": { "facing": "north", "half": "top", @@ -238504,7 +263511,7 @@ } }, { - "id": 21799, + "id": 23041, "properties": { "facing": "north", "half": "top", @@ -238513,7 +263520,7 @@ } }, { - "id": 21800, + "id": 23042, "properties": { "facing": "north", "half": "top", @@ -238522,7 +263529,7 @@ } }, { - "id": 21801, + "id": 23043, "properties": { "facing": "north", "half": "top", @@ -238531,7 +263538,7 @@ } }, { - "id": 21802, + "id": 23044, "properties": { "facing": "north", "half": "top", @@ -238540,7 +263547,7 @@ } }, { - "id": 21803, + "id": 23045, "properties": { "facing": "north", "half": "top", @@ -238549,7 +263556,7 @@ } }, { - "id": 21804, + "id": 23046, "properties": { "facing": "north", "half": "bottom", @@ -238559,7 +263566,7 @@ }, { "default": true, - "id": 21805, + "id": 23047, "properties": { "facing": "north", "half": "bottom", @@ -238568,7 +263575,7 @@ } }, { - "id": 21806, + "id": 23048, "properties": { "facing": "north", "half": "bottom", @@ -238577,7 +263584,7 @@ } }, { - "id": 21807, + "id": 23049, "properties": { "facing": "north", "half": "bottom", @@ -238586,7 +263593,7 @@ } }, { - "id": 21808, + "id": 23050, "properties": { "facing": "north", "half": "bottom", @@ -238595,7 +263602,7 @@ } }, { - "id": 21809, + "id": 23051, "properties": { "facing": "north", "half": "bottom", @@ -238604,7 +263611,7 @@ } }, { - "id": 21810, + "id": 23052, "properties": { "facing": "north", "half": "bottom", @@ -238613,7 +263620,7 @@ } }, { - "id": 21811, + "id": 23053, "properties": { "facing": "north", "half": "bottom", @@ -238622,7 +263629,7 @@ } }, { - "id": 21812, + "id": 23054, "properties": { "facing": "north", "half": "bottom", @@ -238631,7 +263638,7 @@ } }, { - "id": 21813, + "id": 23055, "properties": { "facing": "north", "half": "bottom", @@ -238640,7 +263647,7 @@ } }, { - "id": 21814, + "id": 23056, "properties": { "facing": "south", "half": "top", @@ -238649,7 +263656,7 @@ } }, { - "id": 21815, + "id": 23057, "properties": { "facing": "south", "half": "top", @@ -238658,7 +263665,7 @@ } }, { - "id": 21816, + "id": 23058, "properties": { "facing": "south", "half": "top", @@ -238667,7 +263674,7 @@ } }, { - "id": 21817, + "id": 23059, "properties": { "facing": "south", "half": "top", @@ -238676,7 +263683,7 @@ } }, { - "id": 21818, + "id": 23060, "properties": { "facing": "south", "half": "top", @@ -238685,7 +263692,7 @@ } }, { - "id": 21819, + "id": 23061, "properties": { "facing": "south", "half": "top", @@ -238694,7 +263701,7 @@ } }, { - "id": 21820, + "id": 23062, "properties": { "facing": "south", "half": "top", @@ -238703,7 +263710,7 @@ } }, { - "id": 21821, + "id": 23063, "properties": { "facing": "south", "half": "top", @@ -238712,7 +263719,7 @@ } }, { - "id": 21822, + "id": 23064, "properties": { "facing": "south", "half": "top", @@ -238721,7 +263728,7 @@ } }, { - "id": 21823, + "id": 23065, "properties": { "facing": "south", "half": "top", @@ -238730,7 +263737,7 @@ } }, { - "id": 21824, + "id": 23066, "properties": { "facing": "south", "half": "bottom", @@ -238739,7 +263746,7 @@ } }, { - "id": 21825, + "id": 23067, "properties": { "facing": "south", "half": "bottom", @@ -238748,7 +263755,7 @@ } }, { - "id": 21826, + "id": 23068, "properties": { "facing": "south", "half": "bottom", @@ -238757,7 +263764,7 @@ } }, { - "id": 21827, + "id": 23069, "properties": { "facing": "south", "half": "bottom", @@ -238766,7 +263773,7 @@ } }, { - "id": 21828, + "id": 23070, "properties": { "facing": "south", "half": "bottom", @@ -238775,7 +263782,7 @@ } }, { - "id": 21829, + "id": 23071, "properties": { "facing": "south", "half": "bottom", @@ -238784,7 +263791,7 @@ } }, { - "id": 21830, + "id": 23072, "properties": { "facing": "south", "half": "bottom", @@ -238793,7 +263800,7 @@ } }, { - "id": 21831, + "id": 23073, "properties": { "facing": "south", "half": "bottom", @@ -238802,7 +263809,7 @@ } }, { - "id": 21832, + "id": 23074, "properties": { "facing": "south", "half": "bottom", @@ -238811,7 +263818,7 @@ } }, { - "id": 21833, + "id": 23075, "properties": { "facing": "south", "half": "bottom", @@ -238820,7 +263827,7 @@ } }, { - "id": 21834, + "id": 23076, "properties": { "facing": "west", "half": "top", @@ -238829,7 +263836,7 @@ } }, { - "id": 21835, + "id": 23077, "properties": { "facing": "west", "half": "top", @@ -238838,7 +263845,7 @@ } }, { - "id": 21836, + "id": 23078, "properties": { "facing": "west", "half": "top", @@ -238847,7 +263854,7 @@ } }, { - "id": 21837, + "id": 23079, "properties": { "facing": "west", "half": "top", @@ -238856,7 +263863,7 @@ } }, { - "id": 21838, + "id": 23080, "properties": { "facing": "west", "half": "top", @@ -238865,7 +263872,7 @@ } }, { - "id": 21839, + "id": 23081, "properties": { "facing": "west", "half": "top", @@ -238874,7 +263881,7 @@ } }, { - "id": 21840, + "id": 23082, "properties": { "facing": "west", "half": "top", @@ -238883,7 +263890,7 @@ } }, { - "id": 21841, + "id": 23083, "properties": { "facing": "west", "half": "top", @@ -238892,7 +263899,7 @@ } }, { - "id": 21842, + "id": 23084, "properties": { "facing": "west", "half": "top", @@ -238901,7 +263908,7 @@ } }, { - "id": 21843, + "id": 23085, "properties": { "facing": "west", "half": "top", @@ -238910,7 +263917,7 @@ } }, { - "id": 21844, + "id": 23086, "properties": { "facing": "west", "half": "bottom", @@ -238919,7 +263926,7 @@ } }, { - "id": 21845, + "id": 23087, "properties": { "facing": "west", "half": "bottom", @@ -238928,7 +263935,7 @@ } }, { - "id": 21846, + "id": 23088, "properties": { "facing": "west", "half": "bottom", @@ -238937,7 +263944,7 @@ } }, { - "id": 21847, + "id": 23089, "properties": { "facing": "west", "half": "bottom", @@ -238946,7 +263953,7 @@ } }, { - "id": 21848, + "id": 23090, "properties": { "facing": "west", "half": "bottom", @@ -238955,7 +263962,7 @@ } }, { - "id": 21849, + "id": 23091, "properties": { "facing": "west", "half": "bottom", @@ -238964,7 +263971,7 @@ } }, { - "id": 21850, + "id": 23092, "properties": { "facing": "west", "half": "bottom", @@ -238973,7 +263980,7 @@ } }, { - "id": 21851, + "id": 23093, "properties": { "facing": "west", "half": "bottom", @@ -238982,7 +263989,7 @@ } }, { - "id": 21852, + "id": 23094, "properties": { "facing": "west", "half": "bottom", @@ -238991,7 +263998,7 @@ } }, { - "id": 21853, + "id": 23095, "properties": { "facing": "west", "half": "bottom", @@ -239000,7 +264007,7 @@ } }, { - "id": 21854, + "id": 23096, "properties": { "facing": "east", "half": "top", @@ -239009,7 +264016,7 @@ } }, { - "id": 21855, + "id": 23097, "properties": { "facing": "east", "half": "top", @@ -239018,7 +264025,7 @@ } }, { - "id": 21856, + "id": 23098, "properties": { "facing": "east", "half": "top", @@ -239027,7 +264034,7 @@ } }, { - "id": 21857, + "id": 23099, "properties": { "facing": "east", "half": "top", @@ -239036,7 +264043,7 @@ } }, { - "id": 21858, + "id": 23100, "properties": { "facing": "east", "half": "top", @@ -239045,7 +264052,7 @@ } }, { - "id": 21859, + "id": 23101, "properties": { "facing": "east", "half": "top", @@ -239054,7 +264061,7 @@ } }, { - "id": 21860, + "id": 23102, "properties": { "facing": "east", "half": "top", @@ -239063,7 +264070,7 @@ } }, { - "id": 21861, + "id": 23103, "properties": { "facing": "east", "half": "top", @@ -239072,7 +264079,7 @@ } }, { - "id": 21862, + "id": 23104, "properties": { "facing": "east", "half": "top", @@ -239081,7 +264088,7 @@ } }, { - "id": 21863, + "id": 23105, "properties": { "facing": "east", "half": "top", @@ -239090,7 +264097,7 @@ } }, { - "id": 21864, + "id": 23106, "properties": { "facing": "east", "half": "bottom", @@ -239099,7 +264106,7 @@ } }, { - "id": 21865, + "id": 23107, "properties": { "facing": "east", "half": "bottom", @@ -239108,7 +264115,7 @@ } }, { - "id": 21866, + "id": 23108, "properties": { "facing": "east", "half": "bottom", @@ -239117,7 +264124,7 @@ } }, { - "id": 21867, + "id": 23109, "properties": { "facing": "east", "half": "bottom", @@ -239126,7 +264133,7 @@ } }, { - "id": 21868, + "id": 23110, "properties": { "facing": "east", "half": "bottom", @@ -239135,7 +264142,7 @@ } }, { - "id": 21869, + "id": 23111, "properties": { "facing": "east", "half": "bottom", @@ -239144,7 +264151,7 @@ } }, { - "id": 21870, + "id": 23112, "properties": { "facing": "east", "half": "bottom", @@ -239153,7 +264160,7 @@ } }, { - "id": 21871, + "id": 23113, "properties": { "facing": "east", "half": "bottom", @@ -239162,7 +264169,7 @@ } }, { - "id": 21872, + "id": 23114, "properties": { "facing": "east", "half": "bottom", @@ -239171,7 +264178,7 @@ } }, { - "id": 21873, + "id": 23115, "properties": { "facing": "east", "half": "bottom", @@ -240011,7 +265018,7 @@ "states": [ { "default": true, - "id": 5946 + "id": 5945 } ] }, @@ -241315,7 +266322,7 @@ "states": [ { "default": true, - "id": 5950 + "id": 5949 } ] }, diff --git a/Obsidian/Assets/damage_type.json b/Obsidian/Assets/damage_type.json index e04718a78..bd4c5111f 100644 --- a/Obsidian/Assets/damage_type.json +++ b/Obsidian/Assets/damage_type.json @@ -2,411 +2,411 @@ "type": "minecraft:damage_type", "value": [ { - "name": "minecraft:arrow", "id": 0, + "name": "minecraft:arrow", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "arrow" + "message_id": "arrow", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:bad_respawn_point", "id": 1, + "name": "minecraft:bad_respawn_point", "element": { - "scaling": "always", + "death_message_type": "intentional_game_design", "exhaustion": 0.1, "message_id": "badRespawnPoint", - "death_message_type": "intentional_game_design" + "scaling": "always" } }, { - "name": "minecraft:cactus", "id": 2, + "name": "minecraft:cactus", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "cactus" + "message_id": "cactus", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:cramming", "id": 3, + "name": "minecraft:cramming", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "cramming" + "exhaustion": 0, + "message_id": "cramming", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:dragon_breath", "id": 4, + "name": "minecraft:dragon_breath", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "dragonBreath" + "exhaustion": 0, + "message_id": "dragonBreath", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:drown", "id": 5, + "name": "minecraft:drown", "element": { - "effects": "drowning", + "exhaustion": 0, + "message_id": "drown", "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "drown" + "effects": "drowning" } }, { - "name": "minecraft:dry_out", "id": 6, + "name": "minecraft:dry_out", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "dryout" + "message_id": "dryout", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:explosion", "id": 7, + "name": "minecraft:explosion", "element": { - "scaling": "always", "exhaustion": 0.1, - "message_id": "explosion" + "message_id": "explosion", + "scaling": "always" } }, { - "name": "minecraft:fall", "id": 8, + "name": "minecraft:fall", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, + "death_message_type": "fall_variants", + "exhaustion": 0, "message_id": "fall", - "death_message_type": "fall_variants" + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:falling_anvil", "id": 9, + "name": "minecraft:falling_anvil", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "anvil" + "message_id": "anvil", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:falling_block", "id": 10, + "name": "minecraft:falling_block", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "fallingBlock" + "message_id": "fallingBlock", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:falling_stalactite", "id": 11, + "name": "minecraft:falling_stalactite", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "fallingStalactite" + "message_id": "fallingStalactite", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:fireball", "id": 12, + "name": "minecraft:fireball", "element": { - "effects": "burning", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "fireball" + "message_id": "fireball", + "scaling": "when_caused_by_living_non_player", + "effects": "burning" } }, { - "name": "minecraft:fireworks", "id": 13, + "name": "minecraft:fireworks", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "fireworks" + "message_id": "fireworks", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:fly_into_wall", "id": 14, + "name": "minecraft:fly_into_wall", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "flyIntoWall" + "exhaustion": 0, + "message_id": "flyIntoWall", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:freeze", "id": 15, + "name": "minecraft:freeze", "element": { - "effects": "freezing", + "exhaustion": 0, + "message_id": "freeze", "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "freeze" + "effects": "freezing" } }, { - "name": "minecraft:generic", "id": 16, + "name": "minecraft:generic", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "generic" + "exhaustion": 0, + "message_id": "generic", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:generic_kill", "id": 17, + "name": "minecraft:generic_kill", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "genericKill" + "exhaustion": 0, + "message_id": "genericKill", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:hot_floor", "id": 18, + "name": "minecraft:hot_floor", "element": { - "effects": "burning", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "hotFloor" + "message_id": "hotFloor", + "scaling": "when_caused_by_living_non_player", + "effects": "burning" } }, { - "name": "minecraft:in_fire", "id": 19, + "name": "minecraft:indirect_magic", "element": { - "effects": "burning", - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.1, - "message_id": "inFire" + "exhaustion": 0, + "message_id": "indirectMagic", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:in_wall", "id": 20, + "name": "minecraft:in_fire", "element": { + "exhaustion": 0.1, + "message_id": "inFire", "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "inWall" + "effects": "burning" } }, { - "name": "minecraft:indirect_magic", "id": 21, + "name": "minecraft:in_wall", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "indirectMagic" + "exhaustion": 0, + "message_id": "inWall", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:lava", "id": 22, + "name": "minecraft:lava", "element": { - "effects": "burning", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "lava" + "message_id": "lava", + "scaling": "when_caused_by_living_non_player", + "effects": "burning" } }, { - "name": "minecraft:lightning_bolt", "id": 23, + "name": "minecraft:lightning_bolt", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "lightningBolt" + "message_id": "lightningBolt", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:magic", "id": 24, + "name": "minecraft:magic", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "magic" + "exhaustion": 0, + "message_id": "magic", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:mob_attack", "id": 25, + "name": "minecraft:mob_attack", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "mob" + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:mob_attack_no_aggro", "id": 26, + "name": "minecraft:mob_attack_no_aggro", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "mob" + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:mob_projectile", "id": 27, + "name": "minecraft:mob_projectile", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "mob" + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:on_fire", "id": 28, + "name": "minecraft:on_fire", "element": { - "effects": "burning", + "exhaustion": 0, + "message_id": "onFire", "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "onFire" + "effects": "burning" } }, { - "name": "minecraft:out_of_world", "id": 29, + "name": "minecraft:outside_border", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "outOfWorld" + "exhaustion": 0, + "message_id": "outsideBorder", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:outside_border", "id": 30, + "name": "minecraft:out_of_world", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "outsideBorder" + "exhaustion": 0, + "message_id": "outOfWorld", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:player_attack", "id": 31, + "name": "minecraft:player_attack", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "player" + "message_id": "player", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:player_explosion", "id": 32, + "name": "minecraft:player_explosion", "element": { - "scaling": "always", "exhaustion": 0.1, - "message_id": "explosion.player" + "message_id": "explosion.player", + "scaling": "always" } }, { - "name": "minecraft:sonic_boom", "id": 33, + "name": "minecraft:sonic_boom", "element": { - "scaling": "always", - "exhaustion": 0.0, - "message_id": "sonic_boom" + "exhaustion": 0, + "message_id": "sonic_boom", + "scaling": "always" } }, { - "name": "minecraft:stalagmite", "id": 34, + "name": "minecraft:stalagmite", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "stalagmite" + "exhaustion": 0, + "message_id": "stalagmite", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:starve", "id": 35, + "name": "minecraft:starve", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "starve" + "exhaustion": 0, + "message_id": "starve", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:sting", "id": 36, + "name": "minecraft:sting", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "sting" + "message_id": "sting", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:sweet_berry_bush", "id": 37, + "name": "minecraft:sweet_berry_bush", "element": { - "effects": "poking", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "sweetBerryBush" + "message_id": "sweetBerryBush", + "scaling": "when_caused_by_living_non_player", + "effects": "poking" } }, { - "name": "minecraft:thorns", "id": 38, + "name": "minecraft:thorns", "element": { - "effects": "thorns", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "thorns" + "message_id": "thorns", + "scaling": "when_caused_by_living_non_player", + "effects": "thorns" } }, { - "name": "minecraft:thrown", "id": 39, + "name": "minecraft:thrown", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "thrown" + "message_id": "thrown", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:trident", "id": 40, + "name": "minecraft:trident", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "trident" + "message_id": "trident", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:unattributed_fireball", "id": 41, + "name": "minecraft:unattributed_fireball", "element": { - "effects": "burning", - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "onFire" + "message_id": "onFire", + "scaling": "when_caused_by_living_non_player", + "effects": "burning" } }, { - "name": "minecraft:wither", "id": 42, + "name": "minecraft:wither", "element": { - "scaling": "when_caused_by_living_non_player", - "exhaustion": 0.0, - "message_id": "wither" + "exhaustion": 0, + "message_id": "wither", + "scaling": "when_caused_by_living_non_player" } }, { - "name": "minecraft:wither_skull", "id": 43, + "name": "minecraft:wither_skull", "element": { - "scaling": "when_caused_by_living_non_player", "exhaustion": 0.1, - "message_id": "witherSkull" + "message_id": "witherSkull", + "scaling": "when_caused_by_living_non_player" } } ] diff --git a/Obsidian/Assets/items.json b/Obsidian/Assets/items.json index 2bb0fc8ca..2eabd7b30 100644 --- a/Obsidian/Assets/items.json +++ b/Obsidian/Assets/items.json @@ -1,3767 +1,3938 @@ { "minecraft:acacia_boat": { - "protocol_id": 744 + "protocol_id": 781 }, "minecraft:acacia_button": { - "protocol_id": 666 + "protocol_id": 687 }, "minecraft:acacia_chest_boat": { - "protocol_id": 745 + "protocol_id": 782 }, "minecraft:acacia_door": { - "protocol_id": 693 + "protocol_id": 714 }, "minecraft:acacia_fence": { - "protocol_id": 293 + "protocol_id": 314 }, "minecraft:acacia_fence_gate": { - "protocol_id": 716 + "protocol_id": 753 }, "minecraft:acacia_hanging_sign": { - "protocol_id": 861 + "protocol_id": 898 }, "minecraft:acacia_leaves": { - "protocol_id": 158 + "protocol_id": 179 }, "minecraft:acacia_log": { - "protocol_id": 114 + "protocol_id": 135 }, "minecraft:acacia_planks": { - "protocol_id": 27 + "protocol_id": 40 }, "minecraft:acacia_pressure_plate": { - "protocol_id": 681 + "protocol_id": 702 }, "minecraft:acacia_sapling": { - "protocol_id": 39 + "protocol_id": 52 }, "minecraft:acacia_sign": { - "protocol_id": 850 + "protocol_id": 887 }, "minecraft:acacia_slab": { - "protocol_id": 234 + "protocol_id": 255 }, "minecraft:acacia_stairs": { - "protocol_id": 365 + "protocol_id": 386 }, "minecraft:acacia_trapdoor": { - "protocol_id": 705 + "protocol_id": 734 }, "minecraft:acacia_wood": { - "protocol_id": 148 + "protocol_id": 169 }, "minecraft:activator_rail": { - "protocol_id": 726 + "protocol_id": 763 }, "minecraft:air": { "protocol_id": 0 }, "minecraft:allay_spawn_egg": { - "protocol_id": 967 + "protocol_id": 1005 }, "minecraft:allium": { - "protocol_id": 199 + "protocol_id": 220 }, "minecraft:amethyst_block": { - "protocol_id": 72 + "protocol_id": 85 }, "minecraft:amethyst_cluster": { - "protocol_id": 1210 + "protocol_id": 1249 }, "minecraft:amethyst_shard": { - "protocol_id": 768 + "protocol_id": 805 }, "minecraft:ancient_debris": { - "protocol_id": 67 + "protocol_id": 80 }, "minecraft:andesite": { "protocol_id": 6 }, "minecraft:andesite_slab": { - "protocol_id": 626 + "protocol_id": 647 }, "minecraft:andesite_stairs": { - "protocol_id": 609 + "protocol_id": 630 }, "minecraft:andesite_wall": { - "protocol_id": 385 + "protocol_id": 406 }, "minecraft:angler_pottery_sherd": { - "protocol_id": 1235 + "protocol_id": 1274 }, "minecraft:anvil": { - "protocol_id": 397 + "protocol_id": 418 }, "minecraft:apple": { - "protocol_id": 759 + "protocol_id": 796 }, "minecraft:archer_pottery_sherd": { - "protocol_id": 1236 + "protocol_id": 1275 }, "minecraft:armor_stand": { - "protocol_id": 1077 + "protocol_id": 1116 }, "minecraft:arms_up_pottery_sherd": { - "protocol_id": 1237 + "protocol_id": 1276 }, "minecraft:arrow": { - "protocol_id": 761 + "protocol_id": 798 }, "minecraft:axolotl_bucket": { - "protocol_id": 879 + "protocol_id": 916 }, "minecraft:axolotl_spawn_egg": { - "protocol_id": 968 + "protocol_id": 1006 }, "minecraft:azalea": { - "protocol_id": 175 + "protocol_id": 196 }, "minecraft:azalea_leaves": { - "protocol_id": 162 + "protocol_id": 183 }, "minecraft:azure_bluet": { - "protocol_id": 200 + "protocol_id": 221 }, "minecraft:baked_potato": { - "protocol_id": 1053 + "protocol_id": 1092 }, "minecraft:bamboo": { - "protocol_id": 229 + "protocol_id": 250 }, "minecraft:bamboo_block": { - "protocol_id": 122 + "protocol_id": 143 }, "minecraft:bamboo_button": { - "protocol_id": 670 + "protocol_id": 691 }, "minecraft:bamboo_chest_raft": { - "protocol_id": 753 + "protocol_id": 790 }, "minecraft:bamboo_door": { - "protocol_id": 697 + "protocol_id": 718 }, "minecraft:bamboo_fence": { - "protocol_id": 297 + "protocol_id": 318 }, "minecraft:bamboo_fence_gate": { - "protocol_id": 720 + "protocol_id": 757 }, "minecraft:bamboo_hanging_sign": { - "protocol_id": 865 + "protocol_id": 902 }, "minecraft:bamboo_mosaic": { - "protocol_id": 34 + "protocol_id": 47 }, "minecraft:bamboo_mosaic_slab": { - "protocol_id": 239 + "protocol_id": 260 }, "minecraft:bamboo_mosaic_stairs": { - "protocol_id": 370 + "protocol_id": 391 }, "minecraft:bamboo_planks": { - "protocol_id": 31 + "protocol_id": 44 }, "minecraft:bamboo_pressure_plate": { - "protocol_id": 685 + "protocol_id": 706 }, "minecraft:bamboo_raft": { - "protocol_id": 752 + "protocol_id": 789 }, "minecraft:bamboo_sign": { - "protocol_id": 854 + "protocol_id": 891 }, "minecraft:bamboo_slab": { - "protocol_id": 238 + "protocol_id": 259 }, "minecraft:bamboo_stairs": { - "protocol_id": 369 + "protocol_id": 390 }, "minecraft:bamboo_trapdoor": { - "protocol_id": 709 + "protocol_id": 738 }, "minecraft:barrel": { - "protocol_id": 1154 + "protocol_id": 1193 }, "minecraft:barrier": { - "protocol_id": 421 + "protocol_id": 442 }, "minecraft:basalt": { - "protocol_id": 306 + "protocol_id": 327 }, "minecraft:bat_spawn_egg": { - "protocol_id": 969 + "protocol_id": 1007 }, "minecraft:beacon": { - "protocol_id": 374 + "protocol_id": 395 }, "minecraft:bedrock": { - "protocol_id": 43 + "protocol_id": 56 }, "minecraft:bee_nest": { - "protocol_id": 1171 + "protocol_id": 1210 }, "minecraft:bee_spawn_egg": { - "protocol_id": 970 + "protocol_id": 1008 }, "minecraft:beef": { - "protocol_id": 947 + "protocol_id": 985 }, "minecraft:beehive": { - "protocol_id": 1172 + "protocol_id": 1211 }, "minecraft:beetroot": { - "protocol_id": 1108 + "protocol_id": 1147 }, "minecraft:beetroot_seeds": { - "protocol_id": 1109 + "protocol_id": 1148 }, "minecraft:beetroot_soup": { - "protocol_id": 1110 + "protocol_id": 1149 }, "minecraft:bell": { - "protocol_id": 1162 + "protocol_id": 1201 }, "minecraft:big_dripleaf": { - "protocol_id": 227 + "protocol_id": 248 }, "minecraft:birch_boat": { - "protocol_id": 740 + "protocol_id": 777 }, "minecraft:birch_button": { - "protocol_id": 664 + "protocol_id": 685 }, "minecraft:birch_chest_boat": { - "protocol_id": 741 + "protocol_id": 778 }, "minecraft:birch_door": { - "protocol_id": 691 + "protocol_id": 712 }, "minecraft:birch_fence": { - "protocol_id": 291 + "protocol_id": 312 }, "minecraft:birch_fence_gate": { - "protocol_id": 714 + "protocol_id": 751 }, "minecraft:birch_hanging_sign": { - "protocol_id": 859 + "protocol_id": 896 }, "minecraft:birch_leaves": { - "protocol_id": 156 + "protocol_id": 177 }, "minecraft:birch_log": { - "protocol_id": 112 + "protocol_id": 133 }, "minecraft:birch_planks": { - "protocol_id": 25 + "protocol_id": 38 }, "minecraft:birch_pressure_plate": { - "protocol_id": 679 + "protocol_id": 700 }, "minecraft:birch_sapling": { - "protocol_id": 37 + "protocol_id": 50 }, "minecraft:birch_sign": { - "protocol_id": 848 + "protocol_id": 885 }, "minecraft:birch_slab": { - "protocol_id": 232 + "protocol_id": 253 }, "minecraft:birch_stairs": { - "protocol_id": 363 + "protocol_id": 384 }, "minecraft:birch_trapdoor": { - "protocol_id": 703 + "protocol_id": 732 }, "minecraft:birch_wood": { - "protocol_id": 146 + "protocol_id": 167 }, "minecraft:black_banner": { - "protocol_id": 1102 + "protocol_id": 1141 }, "minecraft:black_bed": { - "protocol_id": 939 + "protocol_id": 976 }, "minecraft:black_candle": { - "protocol_id": 1206 + "protocol_id": 1245 }, "minecraft:black_carpet": { - "protocol_id": 439 + "protocol_id": 460 }, "minecraft:black_concrete": { - "protocol_id": 548 + "protocol_id": 569 }, "minecraft:black_concrete_powder": { - "protocol_id": 564 + "protocol_id": 585 }, "minecraft:black_dye": { - "protocol_id": 919 + "protocol_id": 956 }, "minecraft:black_glazed_terracotta": { - "protocol_id": 532 + "protocol_id": 553 }, "minecraft:black_shulker_box": { - "protocol_id": 516 + "protocol_id": 537 }, "minecraft:black_stained_glass": { - "protocol_id": 464 + "protocol_id": 485 }, "minecraft:black_stained_glass_pane": { - "protocol_id": 480 + "protocol_id": 501 }, "minecraft:black_terracotta": { - "protocol_id": 420 + "protocol_id": 441 }, "minecraft:black_wool": { - "protocol_id": 195 + "protocol_id": 216 }, "minecraft:blackstone": { - "protocol_id": 1177 + "protocol_id": 1216 }, "minecraft:blackstone_slab": { - "protocol_id": 1178 + "protocol_id": 1217 }, "minecraft:blackstone_stairs": { - "protocol_id": 1179 + "protocol_id": 1218 }, "minecraft:blackstone_wall": { - "protocol_id": 390 + "protocol_id": 411 }, "minecraft:blade_pottery_sherd": { - "protocol_id": 1238 + "protocol_id": 1277 }, "minecraft:blast_furnace": { - "protocol_id": 1156 + "protocol_id": 1195 }, "minecraft:blaze_powder": { - "protocol_id": 961 + "protocol_id": 999 }, "minecraft:blaze_rod": { - "protocol_id": 953 + "protocol_id": 991 }, "minecraft:blaze_spawn_egg": { - "protocol_id": 971 + "protocol_id": 1009 }, "minecraft:blue_banner": { - "protocol_id": 1098 + "protocol_id": 1137 }, "minecraft:blue_bed": { - "protocol_id": 935 + "protocol_id": 972 }, "minecraft:blue_candle": { - "protocol_id": 1202 + "protocol_id": 1241 }, "minecraft:blue_carpet": { - "protocol_id": 435 + "protocol_id": 456 }, "minecraft:blue_concrete": { - "protocol_id": 544 + "protocol_id": 565 }, "minecraft:blue_concrete_powder": { - "protocol_id": 560 + "protocol_id": 581 }, "minecraft:blue_dye": { - "protocol_id": 915 + "protocol_id": 952 }, "minecraft:blue_glazed_terracotta": { - "protocol_id": 528 + "protocol_id": 549 }, "minecraft:blue_ice": { - "protocol_id": 597 + "protocol_id": 618 }, "minecraft:blue_orchid": { - "protocol_id": 198 + "protocol_id": 219 }, "minecraft:blue_shulker_box": { - "protocol_id": 512 + "protocol_id": 533 }, "minecraft:blue_stained_glass": { - "protocol_id": 460 + "protocol_id": 481 }, "minecraft:blue_stained_glass_pane": { - "protocol_id": 476 + "protocol_id": 497 }, "minecraft:blue_terracotta": { - "protocol_id": 416 + "protocol_id": 437 }, "minecraft:blue_wool": { - "protocol_id": 191 + "protocol_id": 212 }, "minecraft:bone": { - "protocol_id": 921 + "protocol_id": 958 }, "minecraft:bone_block": { - "protocol_id": 498 + "protocol_id": 519 }, "minecraft:bone_meal": { - "protocol_id": 920 + "protocol_id": 957 }, "minecraft:book": { - "protocol_id": 885 + "protocol_id": 922 }, "minecraft:bookshelf": { - "protocol_id": 264 + "protocol_id": 285 }, "minecraft:bow": { - "protocol_id": 760 + "protocol_id": 797 }, "minecraft:bowl": { - "protocol_id": 808 + "protocol_id": 845 }, "minecraft:brain_coral": { - "protocol_id": 578 + "protocol_id": 599 }, "minecraft:brain_coral_block": { - "protocol_id": 573 + "protocol_id": 594 }, "minecraft:brain_coral_fan": { - "protocol_id": 588 + "protocol_id": 609 }, "minecraft:bread": { - "protocol_id": 815 + "protocol_id": 852 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1010 }, "minecraft:brewer_pottery_sherd": { - "protocol_id": 1239 + "protocol_id": 1278 }, "minecraft:brewing_stand": { - "protocol_id": 963 + "protocol_id": 1001 }, "minecraft:brick": { - "protocol_id": 881 + "protocol_id": 918 }, "minecraft:brick_slab": { - "protocol_id": 248 + "protocol_id": 269 }, "minecraft:brick_stairs": { - "protocol_id": 339 + "protocol_id": 360 }, "minecraft:brick_wall": { - "protocol_id": 377 + "protocol_id": 398 }, "minecraft:bricks": { - "protocol_id": 263 + "protocol_id": 284 }, "minecraft:brown_banner": { - "protocol_id": 1099 + "protocol_id": 1138 }, "minecraft:brown_bed": { - "protocol_id": 936 + "protocol_id": 973 }, "minecraft:brown_candle": { - "protocol_id": 1203 + "protocol_id": 1242 }, "minecraft:brown_carpet": { - "protocol_id": 436 + "protocol_id": 457 }, "minecraft:brown_concrete": { - "protocol_id": 545 + "protocol_id": 566 }, "minecraft:brown_concrete_powder": { - "protocol_id": 561 + "protocol_id": 582 }, "minecraft:brown_dye": { - "protocol_id": 916 + "protocol_id": 953 }, "minecraft:brown_glazed_terracotta": { - "protocol_id": 529 + "protocol_id": 550 }, "minecraft:brown_mushroom": { - "protocol_id": 212 + "protocol_id": 233 }, "minecraft:brown_mushroom_block": { - "protocol_id": 330 + "protocol_id": 351 }, "minecraft:brown_shulker_box": { - "protocol_id": 513 + "protocol_id": 534 }, "minecraft:brown_stained_glass": { - "protocol_id": 461 + "protocol_id": 482 }, "minecraft:brown_stained_glass_pane": { - "protocol_id": 477 + "protocol_id": 498 }, "minecraft:brown_terracotta": { - "protocol_id": 417 + "protocol_id": 438 }, "minecraft:brown_wool": { - "protocol_id": 192 + "protocol_id": 213 }, "minecraft:brush": { - "protocol_id": 1217 + "protocol_id": 1256 }, "minecraft:bubble_coral": { - "protocol_id": 579 + "protocol_id": 600 }, "minecraft:bubble_coral_block": { - "protocol_id": 574 + "protocol_id": 595 }, "minecraft:bubble_coral_fan": { - "protocol_id": 589 + "protocol_id": 610 }, "minecraft:bucket": { - "protocol_id": 868 + "protocol_id": 905 }, "minecraft:budding_amethyst": { - "protocol_id": 73 + "protocol_id": 86 }, "minecraft:bundle": { - "protocol_id": 890 + "protocol_id": 927 }, "minecraft:burn_pottery_sherd": { - "protocol_id": 1240 + "protocol_id": 1279 }, "minecraft:cactus": { - "protocol_id": 286 + "protocol_id": 307 }, "minecraft:cake": { - "protocol_id": 923 + "protocol_id": 960 }, "minecraft:calcite": { "protocol_id": 11 }, "minecraft:calibrated_sculk_sensor": { - "protocol_id": 654 + "protocol_id": 675 }, "minecraft:camel_spawn_egg": { - "protocol_id": 973 + "protocol_id": 1012 }, "minecraft:campfire": { - "protocol_id": 1167 + "protocol_id": 1206 }, "minecraft:candle": { - "protocol_id": 1190 + "protocol_id": 1229 }, "minecraft:carrot": { - "protocol_id": 1051 + "protocol_id": 1090 }, "minecraft:carrot_on_a_stick": { - "protocol_id": 733 + "protocol_id": 770 }, "minecraft:cartography_table": { - "protocol_id": 1157 + "protocol_id": 1196 }, "minecraft:carved_pumpkin": { - "protocol_id": 301 + "protocol_id": 322 }, "minecraft:cat_spawn_egg": { - "protocol_id": 972 + "protocol_id": 1011 }, "minecraft:cauldron": { - "protocol_id": 964 + "protocol_id": 1002 }, "minecraft:cave_spider_spawn_egg": { - "protocol_id": 974 + "protocol_id": 1013 }, "minecraft:chain": { - "protocol_id": 334 + "protocol_id": 355 }, "minecraft:chain_command_block": { - "protocol_id": 493 + "protocol_id": 514 }, "minecraft:chainmail_boots": { - "protocol_id": 823 + "protocol_id": 860 }, "minecraft:chainmail_chestplate": { - "protocol_id": 821 + "protocol_id": 858 }, "minecraft:chainmail_helmet": { - "protocol_id": 820 + "protocol_id": 857 }, "minecraft:chainmail_leggings": { - "protocol_id": 822 + "protocol_id": 859 }, "minecraft:charcoal": { - "protocol_id": 763 + "protocol_id": 800 }, "minecraft:cherry_boat": { - "protocol_id": 746 + "protocol_id": 783 }, "minecraft:cherry_button": { - "protocol_id": 667 + "protocol_id": 688 }, "minecraft:cherry_chest_boat": { - "protocol_id": 747 + "protocol_id": 784 }, "minecraft:cherry_door": { - "protocol_id": 694 + "protocol_id": 715 }, "minecraft:cherry_fence": { - "protocol_id": 294 + "protocol_id": 315 }, "minecraft:cherry_fence_gate": { - "protocol_id": 717 + "protocol_id": 754 }, "minecraft:cherry_hanging_sign": { - "protocol_id": 862 + "protocol_id": 899 }, "minecraft:cherry_leaves": { - "protocol_id": 159 + "protocol_id": 180 }, "minecraft:cherry_log": { - "protocol_id": 115 + "protocol_id": 136 }, "minecraft:cherry_planks": { - "protocol_id": 28 + "protocol_id": 41 }, "minecraft:cherry_pressure_plate": { - "protocol_id": 682 + "protocol_id": 703 }, "minecraft:cherry_sapling": { - "protocol_id": 40 + "protocol_id": 53 }, "minecraft:cherry_sign": { - "protocol_id": 851 + "protocol_id": 888 }, "minecraft:cherry_slab": { - "protocol_id": 235 + "protocol_id": 256 }, "minecraft:cherry_stairs": { - "protocol_id": 366 + "protocol_id": 387 }, "minecraft:cherry_trapdoor": { - "protocol_id": 706 + "protocol_id": 735 }, "minecraft:cherry_wood": { - "protocol_id": 149 + "protocol_id": 170 }, "minecraft:chest": { - "protocol_id": 277 + "protocol_id": 298 }, "minecraft:chest_minecart": { - "protocol_id": 729 + "protocol_id": 766 }, "minecraft:chicken": { - "protocol_id": 949 + "protocol_id": 987 }, "minecraft:chicken_spawn_egg": { - "protocol_id": 975 + "protocol_id": 1014 }, "minecraft:chipped_anvil": { - "protocol_id": 398 + "protocol_id": 419 }, "minecraft:chiseled_bookshelf": { - "protocol_id": 265 + "protocol_id": 286 + }, + "minecraft:chiseled_copper": { + "protocol_id": 95 }, "minecraft:chiseled_deepslate": { - "protocol_id": 328 + "protocol_id": 349 }, "minecraft:chiseled_nether_bricks": { - "protocol_id": 346 + "protocol_id": 367 }, "minecraft:chiseled_polished_blackstone": { - "protocol_id": 1184 + "protocol_id": 1223 }, "minecraft:chiseled_quartz_block": { - "protocol_id": 400 + "protocol_id": 421 }, "minecraft:chiseled_red_sandstone": { - "protocol_id": 489 + "protocol_id": 510 }, "minecraft:chiseled_sandstone": { - "protocol_id": 170 + "protocol_id": 191 }, "minecraft:chiseled_stone_bricks": { - "protocol_id": 321 + "protocol_id": 342 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 16 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 25 }, "minecraft:chorus_flower": { - "protocol_id": 272 + "protocol_id": 293 }, "minecraft:chorus_fruit": { - "protocol_id": 1104 + "protocol_id": 1143 }, "minecraft:chorus_plant": { - "protocol_id": 271 + "protocol_id": 292 }, "minecraft:clay": { - "protocol_id": 287 + "protocol_id": 308 }, "minecraft:clay_ball": { - "protocol_id": 882 + "protocol_id": 919 }, "minecraft:clock": { - "protocol_id": 892 + "protocol_id": 929 }, "minecraft:coal": { - "protocol_id": 762 + "protocol_id": 799 }, "minecraft:coal_block": { - "protocol_id": 68 + "protocol_id": 81 }, "minecraft:coal_ore": { - "protocol_id": 49 + "protocol_id": 62 }, "minecraft:coarse_dirt": { - "protocol_id": 16 + "protocol_id": 29 }, "minecraft:coast_armor_trim_smithing_template": { - "protocol_id": 1221 + "protocol_id": 1260 }, "minecraft:cobbled_deepslate": { "protocol_id": 9 }, "minecraft:cobbled_deepslate_slab": { - "protocol_id": 630 + "protocol_id": 651 }, "minecraft:cobbled_deepslate_stairs": { - "protocol_id": 613 + "protocol_id": 634 }, "minecraft:cobbled_deepslate_wall": { - "protocol_id": 393 + "protocol_id": 414 }, "minecraft:cobblestone": { - "protocol_id": 22 + "protocol_id": 35 }, "minecraft:cobblestone_slab": { - "protocol_id": 247 + "protocol_id": 268 }, "minecraft:cobblestone_stairs": { - "protocol_id": 282 + "protocol_id": 303 }, "minecraft:cobblestone_wall": { - "protocol_id": 375 + "protocol_id": 396 }, "minecraft:cobweb": { - "protocol_id": 172 + "protocol_id": 193 }, "minecraft:cocoa_beans": { - "protocol_id": 903 + "protocol_id": 940 }, "minecraft:cod": { - "protocol_id": 895 + "protocol_id": 932 }, "minecraft:cod_bucket": { - "protocol_id": 877 + "protocol_id": 914 }, "minecraft:cod_spawn_egg": { - "protocol_id": 976 + "protocol_id": 1015 }, "minecraft:command_block": { - "protocol_id": 373 + "protocol_id": 394 }, "minecraft:command_block_minecart": { - "protocol_id": 1084 + "protocol_id": 1123 }, "minecraft:comparator": { - "protocol_id": 639 + "protocol_id": 660 }, "minecraft:compass": { - "protocol_id": 888 + "protocol_id": 925 }, "minecraft:composter": { - "protocol_id": 1153 + "protocol_id": 1192 }, "minecraft:conduit": { - "protocol_id": 598 + "protocol_id": 619 }, "minecraft:cooked_beef": { - "protocol_id": 948 + "protocol_id": 986 }, "minecraft:cooked_chicken": { - "protocol_id": 950 + "protocol_id": 988 }, "minecraft:cooked_cod": { - "protocol_id": 899 + "protocol_id": 936 }, "minecraft:cooked_mutton": { - "protocol_id": 1086 + "protocol_id": 1125 }, "minecraft:cooked_porkchop": { - "protocol_id": 842 + "protocol_id": 879 }, "minecraft:cooked_rabbit": { - "protocol_id": 1073 + "protocol_id": 1112 }, "minecraft:cooked_salmon": { - "protocol_id": 900 + "protocol_id": 937 }, "minecraft:cookie": { - "protocol_id": 940 + "protocol_id": 977 }, "minecraft:copper_block": { - "protocol_id": 75 + "protocol_id": 88 + }, + "minecraft:copper_bulb": { + "protocol_id": 1302 + }, + "minecraft:copper_door": { + "protocol_id": 721 + }, + "minecraft:copper_grate": { + "protocol_id": 1294 }, "minecraft:copper_ingot": { - "protocol_id": 772 + "protocol_id": 809 }, "minecraft:copper_ore": { - "protocol_id": 53 + "protocol_id": 66 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 741 }, "minecraft:cornflower": { - "protocol_id": 206 + "protocol_id": 227 }, "minecraft:cow_spawn_egg": { - "protocol_id": 977 + "protocol_id": 1016 }, "minecraft:cracked_deepslate_bricks": { - "protocol_id": 325 + "protocol_id": 346 }, "minecraft:cracked_deepslate_tiles": { - "protocol_id": 327 + "protocol_id": 348 }, "minecraft:cracked_nether_bricks": { - "protocol_id": 345 + "protocol_id": 366 }, "minecraft:cracked_polished_blackstone_bricks": { - "protocol_id": 1188 + "protocol_id": 1227 }, "minecraft:cracked_stone_bricks": { - "protocol_id": 320 + "protocol_id": 341 + }, + "minecraft:crafter": { + "protocol_id": 978 }, "minecraft:crafting_table": { - "protocol_id": 278 + "protocol_id": 299 }, "minecraft:creeper_banner_pattern": { - "protocol_id": 1147 + "protocol_id": 1186 }, "minecraft:creeper_head": { - "protocol_id": 1061 + "protocol_id": 1100 }, "minecraft:creeper_spawn_egg": { - "protocol_id": 978 + "protocol_id": 1017 }, "minecraft:crimson_button": { - "protocol_id": 671 + "protocol_id": 692 }, "minecraft:crimson_door": { - "protocol_id": 698 + "protocol_id": 719 }, "minecraft:crimson_fence": { - "protocol_id": 298 + "protocol_id": 319 }, "minecraft:crimson_fence_gate": { - "protocol_id": 721 + "protocol_id": 758 }, "minecraft:crimson_fungus": { - "protocol_id": 214 + "protocol_id": 235 }, "minecraft:crimson_hanging_sign": { - "protocol_id": 866 + "protocol_id": 903 }, "minecraft:crimson_hyphae": { - "protocol_id": 152 + "protocol_id": 173 }, "minecraft:crimson_nylium": { - "protocol_id": 20 + "protocol_id": 33 }, "minecraft:crimson_planks": { - "protocol_id": 32 + "protocol_id": 45 }, "minecraft:crimson_pressure_plate": { - "protocol_id": 686 + "protocol_id": 707 }, "minecraft:crimson_roots": { - "protocol_id": 216 + "protocol_id": 237 }, "minecraft:crimson_sign": { - "protocol_id": 855 + "protocol_id": 892 }, "minecraft:crimson_slab": { - "protocol_id": 240 + "protocol_id": 261 }, "minecraft:crimson_stairs": { - "protocol_id": 371 + "protocol_id": 392 }, "minecraft:crimson_stem": { - "protocol_id": 120 + "protocol_id": 141 }, "minecraft:crimson_trapdoor": { - "protocol_id": 710 + "protocol_id": 739 }, "minecraft:crossbow": { - "protocol_id": 1143 + "protocol_id": 1182 }, "minecraft:crying_obsidian": { - "protocol_id": 1176 + "protocol_id": 1215 }, "minecraft:cut_copper": { - "protocol_id": 82 + "protocol_id": 99 }, "minecraft:cut_copper_slab": { - "protocol_id": 90 + "protocol_id": 107 }, "minecraft:cut_copper_stairs": { - "protocol_id": 86 + "protocol_id": 103 }, "minecraft:cut_red_sandstone": { - "protocol_id": 490 + "protocol_id": 511 }, "minecraft:cut_red_sandstone_slab": { - "protocol_id": 254 + "protocol_id": 275 }, "minecraft:cut_sandstone": { - "protocol_id": 171 + "protocol_id": 192 }, "minecraft:cut_sandstone_slab": { - "protocol_id": 245 + "protocol_id": 266 }, "minecraft:cyan_banner": { - "protocol_id": 1096 + "protocol_id": 1135 }, "minecraft:cyan_bed": { - "protocol_id": 933 + "protocol_id": 970 }, "minecraft:cyan_candle": { - "protocol_id": 1200 + "protocol_id": 1239 }, "minecraft:cyan_carpet": { - "protocol_id": 433 + "protocol_id": 454 }, "minecraft:cyan_concrete": { - "protocol_id": 542 + "protocol_id": 563 }, "minecraft:cyan_concrete_powder": { - "protocol_id": 558 + "protocol_id": 579 }, "minecraft:cyan_dye": { - "protocol_id": 913 + "protocol_id": 950 }, "minecraft:cyan_glazed_terracotta": { - "protocol_id": 526 + "protocol_id": 547 }, "minecraft:cyan_shulker_box": { - "protocol_id": 510 + "protocol_id": 531 }, "minecraft:cyan_stained_glass": { - "protocol_id": 458 + "protocol_id": 479 }, "minecraft:cyan_stained_glass_pane": { - "protocol_id": 474 + "protocol_id": 495 }, "minecraft:cyan_terracotta": { - "protocol_id": 414 + "protocol_id": 435 }, "minecraft:cyan_wool": { - "protocol_id": 189 + "protocol_id": 210 }, "minecraft:damaged_anvil": { - "protocol_id": 399 + "protocol_id": 420 }, "minecraft:dandelion": { - "protocol_id": 196 + "protocol_id": 217 }, "minecraft:danger_pottery_sherd": { - "protocol_id": 1241 + "protocol_id": 1280 }, "minecraft:dark_oak_boat": { - "protocol_id": 748 + "protocol_id": 785 }, "minecraft:dark_oak_button": { - "protocol_id": 668 + "protocol_id": 689 }, "minecraft:dark_oak_chest_boat": { - "protocol_id": 749 + "protocol_id": 786 }, "minecraft:dark_oak_door": { - "protocol_id": 695 + "protocol_id": 716 }, "minecraft:dark_oak_fence": { - "protocol_id": 295 + "protocol_id": 316 }, "minecraft:dark_oak_fence_gate": { - "protocol_id": 718 + "protocol_id": 755 }, "minecraft:dark_oak_hanging_sign": { - "protocol_id": 863 + "protocol_id": 900 }, "minecraft:dark_oak_leaves": { - "protocol_id": 160 + "protocol_id": 181 }, "minecraft:dark_oak_log": { - "protocol_id": 116 + "protocol_id": 137 }, "minecraft:dark_oak_planks": { - "protocol_id": 29 + "protocol_id": 42 }, "minecraft:dark_oak_pressure_plate": { - "protocol_id": 683 + "protocol_id": 704 }, "minecraft:dark_oak_sapling": { - "protocol_id": 41 + "protocol_id": 54 }, "minecraft:dark_oak_sign": { - "protocol_id": 852 + "protocol_id": 889 }, "minecraft:dark_oak_slab": { - "protocol_id": 236 + "protocol_id": 257 }, "minecraft:dark_oak_stairs": { - "protocol_id": 367 + "protocol_id": 388 }, "minecraft:dark_oak_trapdoor": { - "protocol_id": 707 + "protocol_id": 736 }, "minecraft:dark_oak_wood": { - "protocol_id": 150 + "protocol_id": 171 }, "minecraft:dark_prismarine": { - "protocol_id": 483 + "protocol_id": 504 }, "minecraft:dark_prismarine_slab": { - "protocol_id": 258 + "protocol_id": 279 }, "minecraft:dark_prismarine_stairs": { - "protocol_id": 486 + "protocol_id": 507 }, "minecraft:daylight_detector": { - "protocol_id": 652 + "protocol_id": 673 }, "minecraft:dead_brain_coral": { - "protocol_id": 582 + "protocol_id": 603 }, "minecraft:dead_brain_coral_block": { - "protocol_id": 568 + "protocol_id": 589 }, "minecraft:dead_brain_coral_fan": { - "protocol_id": 593 + "protocol_id": 614 }, "minecraft:dead_bubble_coral": { - "protocol_id": 583 + "protocol_id": 604 }, "minecraft:dead_bubble_coral_block": { - "protocol_id": 569 + "protocol_id": 590 }, "minecraft:dead_bubble_coral_fan": { - "protocol_id": 594 + "protocol_id": 615 }, "minecraft:dead_bush": { - "protocol_id": 177 + "protocol_id": 198 }, "minecraft:dead_fire_coral": { - "protocol_id": 584 + "protocol_id": 605 }, "minecraft:dead_fire_coral_block": { - "protocol_id": 570 + "protocol_id": 591 }, "minecraft:dead_fire_coral_fan": { - "protocol_id": 595 + "protocol_id": 616 }, "minecraft:dead_horn_coral": { - "protocol_id": 585 + "protocol_id": 606 }, "minecraft:dead_horn_coral_block": { - "protocol_id": 571 + "protocol_id": 592 }, "minecraft:dead_horn_coral_fan": { - "protocol_id": 596 + "protocol_id": 617 }, "minecraft:dead_tube_coral": { - "protocol_id": 586 + "protocol_id": 607 }, "minecraft:dead_tube_coral_block": { - "protocol_id": 567 + "protocol_id": 588 }, "minecraft:dead_tube_coral_fan": { - "protocol_id": 592 + "protocol_id": 613 }, "minecraft:debug_stick": { - "protocol_id": 1121 + "protocol_id": 1160 }, "minecraft:decorated_pot": { - "protocol_id": 266 + "protocol_id": 287 }, "minecraft:deepslate": { "protocol_id": 8 }, "minecraft:deepslate_brick_slab": { - "protocol_id": 632 + "protocol_id": 653 }, "minecraft:deepslate_brick_stairs": { - "protocol_id": 615 + "protocol_id": 636 }, "minecraft:deepslate_brick_wall": { - "protocol_id": 395 + "protocol_id": 416 }, "minecraft:deepslate_bricks": { - "protocol_id": 324 + "protocol_id": 345 }, "minecraft:deepslate_coal_ore": { - "protocol_id": 50 + "protocol_id": 63 }, "minecraft:deepslate_copper_ore": { - "protocol_id": 54 + "protocol_id": 67 }, "minecraft:deepslate_diamond_ore": { - "protocol_id": 64 + "protocol_id": 77 }, "minecraft:deepslate_emerald_ore": { - "protocol_id": 60 + "protocol_id": 73 }, "minecraft:deepslate_gold_ore": { - "protocol_id": 56 + "protocol_id": 69 }, "minecraft:deepslate_iron_ore": { - "protocol_id": 52 + "protocol_id": 65 }, "minecraft:deepslate_lapis_ore": { - "protocol_id": 62 + "protocol_id": 75 }, "minecraft:deepslate_redstone_ore": { - "protocol_id": 58 + "protocol_id": 71 }, "minecraft:deepslate_tile_slab": { - "protocol_id": 633 + "protocol_id": 654 }, "minecraft:deepslate_tile_stairs": { - "protocol_id": 616 + "protocol_id": 637 }, "minecraft:deepslate_tile_wall": { - "protocol_id": 396 + "protocol_id": 417 }, "minecraft:deepslate_tiles": { - "protocol_id": 326 + "protocol_id": 347 }, "minecraft:detector_rail": { - "protocol_id": 724 + "protocol_id": 761 }, "minecraft:diamond": { - "protocol_id": 764 + "protocol_id": 801 }, "minecraft:diamond_axe": { - "protocol_id": 800 + "protocol_id": 837 }, "minecraft:diamond_block": { - "protocol_id": 77 + "protocol_id": 90 }, "minecraft:diamond_boots": { - "protocol_id": 831 + "protocol_id": 868 }, "minecraft:diamond_chestplate": { - "protocol_id": 829 + "protocol_id": 866 }, "minecraft:diamond_helmet": { - "protocol_id": 828 + "protocol_id": 865 }, "minecraft:diamond_hoe": { - "protocol_id": 801 + "protocol_id": 838 }, "minecraft:diamond_horse_armor": { - "protocol_id": 1080 + "protocol_id": 1119 }, "minecraft:diamond_leggings": { - "protocol_id": 830 + "protocol_id": 867 }, "minecraft:diamond_ore": { - "protocol_id": 63 + "protocol_id": 76 }, "minecraft:diamond_pickaxe": { - "protocol_id": 799 + "protocol_id": 836 }, "minecraft:diamond_shovel": { - "protocol_id": 798 + "protocol_id": 835 }, "minecraft:diamond_sword": { - "protocol_id": 797 + "protocol_id": 834 }, "minecraft:diorite": { "protocol_id": 4 }, "minecraft:diorite_slab": { - "protocol_id": 629 + "protocol_id": 650 }, "minecraft:diorite_stairs": { - "protocol_id": 612 + "protocol_id": 633 }, "minecraft:diorite_wall": { - "protocol_id": 389 + "protocol_id": 410 }, "minecraft:dirt": { - "protocol_id": 15 + "protocol_id": 28 }, "minecraft:dirt_path": { - "protocol_id": 442 + "protocol_id": 463 }, "minecraft:disc_fragment_5": { - "protocol_id": 1138 + "protocol_id": 1177 }, "minecraft:dispenser": { - "protocol_id": 646 + "protocol_id": 667 }, "minecraft:dolphin_spawn_egg": { - "protocol_id": 979 + "protocol_id": 1018 }, "minecraft:donkey_spawn_egg": { - "protocol_id": 980 + "protocol_id": 1019 }, "minecraft:dragon_breath": { - "protocol_id": 1111 + "protocol_id": 1150 }, "minecraft:dragon_egg": { - "protocol_id": 357 + "protocol_id": 378 }, "minecraft:dragon_head": { - "protocol_id": 1062 + "protocol_id": 1101 }, "minecraft:dried_kelp": { - "protocol_id": 944 + "protocol_id": 982 }, "minecraft:dried_kelp_block": { - "protocol_id": 883 + "protocol_id": 920 }, "minecraft:dripstone_block": { - "protocol_id": 13 + "protocol_id": 26 }, "minecraft:dropper": { - "protocol_id": 647 + "protocol_id": 668 }, "minecraft:drowned_spawn_egg": { - "protocol_id": 981 + "protocol_id": 1020 }, "minecraft:dune_armor_trim_smithing_template": { - "protocol_id": 1220 + "protocol_id": 1259 }, "minecraft:echo_shard": { - "protocol_id": 1216 + "protocol_id": 1255 }, "minecraft:egg": { - "protocol_id": 887 + "protocol_id": 924 }, "minecraft:elder_guardian_spawn_egg": { - "protocol_id": 982 + "protocol_id": 1021 }, "minecraft:elytra": { - "protocol_id": 735 + "protocol_id": 772 }, "minecraft:emerald": { - "protocol_id": 765 + "protocol_id": 802 }, "minecraft:emerald_block": { - "protocol_id": 360 + "protocol_id": 381 }, "minecraft:emerald_ore": { - "protocol_id": 59 + "protocol_id": 72 }, "minecraft:enchanted_book": { - "protocol_id": 1068 + "protocol_id": 1107 }, "minecraft:enchanted_golden_apple": { - "protocol_id": 845 + "protocol_id": 882 }, "minecraft:enchanting_table": { - "protocol_id": 353 + "protocol_id": 374 }, "minecraft:end_crystal": { - "protocol_id": 1103 + "protocol_id": 1142 }, "minecraft:end_portal_frame": { - "protocol_id": 354 + "protocol_id": 375 }, "minecraft:end_rod": { - "protocol_id": 270 + "protocol_id": 291 }, "minecraft:end_stone": { - "protocol_id": 355 + "protocol_id": 376 }, "minecraft:end_stone_brick_slab": { - "protocol_id": 622 + "protocol_id": 643 }, "minecraft:end_stone_brick_stairs": { - "protocol_id": 604 + "protocol_id": 625 }, "minecraft:end_stone_brick_wall": { - "protocol_id": 388 + "protocol_id": 409 }, "minecraft:end_stone_bricks": { - "protocol_id": 356 + "protocol_id": 377 }, "minecraft:ender_chest": { - "protocol_id": 359 + "protocol_id": 380 }, "minecraft:ender_dragon_spawn_egg": { - "protocol_id": 983 + "protocol_id": 1022 }, "minecraft:ender_eye": { - "protocol_id": 965 + "protocol_id": 1003 }, "minecraft:ender_pearl": { - "protocol_id": 952 + "protocol_id": 990 }, "minecraft:enderman_spawn_egg": { - "protocol_id": 984 + "protocol_id": 1023 }, "minecraft:endermite_spawn_egg": { - "protocol_id": 985 + "protocol_id": 1024 }, "minecraft:evoker_spawn_egg": { - "protocol_id": 986 + "protocol_id": 1025 }, "minecraft:experience_bottle": { - "protocol_id": 1044 + "protocol_id": 1083 }, "minecraft:explorer_pottery_sherd": { - "protocol_id": 1242 + "protocol_id": 1281 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 96 }, "minecraft:exposed_copper": { - "protocol_id": 79 + "protocol_id": 92 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1303 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 722 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1295 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 742 }, "minecraft:exposed_cut_copper": { - "protocol_id": 83 + "protocol_id": 100 }, "minecraft:exposed_cut_copper_slab": { - "protocol_id": 91 + "protocol_id": 108 }, "minecraft:exposed_cut_copper_stairs": { - "protocol_id": 87 + "protocol_id": 104 }, "minecraft:eye_armor_trim_smithing_template": { - "protocol_id": 1224 + "protocol_id": 1263 }, "minecraft:farmland": { - "protocol_id": 279 + "protocol_id": 300 }, "minecraft:feather": { - "protocol_id": 811 + "protocol_id": 848 }, "minecraft:fermented_spider_eye": { - "protocol_id": 960 + "protocol_id": 998 }, "minecraft:fern": { - "protocol_id": 174 + "protocol_id": 195 }, "minecraft:filled_map": { - "protocol_id": 941 + "protocol_id": 979 }, "minecraft:fire_charge": { - "protocol_id": 1045 + "protocol_id": 1084 }, "minecraft:fire_coral": { - "protocol_id": 580 + "protocol_id": 601 }, "minecraft:fire_coral_block": { - "protocol_id": 575 + "protocol_id": 596 }, "minecraft:fire_coral_fan": { - "protocol_id": 590 + "protocol_id": 611 }, "minecraft:firework_rocket": { - "protocol_id": 1066 + "protocol_id": 1105 }, "minecraft:firework_star": { - "protocol_id": 1067 + "protocol_id": 1106 }, "minecraft:fishing_rod": { - "protocol_id": 891 + "protocol_id": 928 }, "minecraft:fletching_table": { - "protocol_id": 1158 + "protocol_id": 1197 }, "minecraft:flint": { - "protocol_id": 840 + "protocol_id": 877 }, "minecraft:flint_and_steel": { - "protocol_id": 758 + "protocol_id": 795 }, "minecraft:flower_banner_pattern": { - "protocol_id": 1146 + "protocol_id": 1185 }, "minecraft:flower_pot": { - "protocol_id": 1050 + "protocol_id": 1089 }, "minecraft:flowering_azalea": { - "protocol_id": 176 + "protocol_id": 197 }, "minecraft:flowering_azalea_leaves": { - "protocol_id": 163 + "protocol_id": 184 }, "minecraft:fox_spawn_egg": { - "protocol_id": 987 + "protocol_id": 1026 }, "minecraft:friend_pottery_sherd": { - "protocol_id": 1243 + "protocol_id": 1282 }, "minecraft:frog_spawn_egg": { - "protocol_id": 988 + "protocol_id": 1027 }, "minecraft:frogspawn": { - "protocol_id": 1215 + "protocol_id": 1254 }, "minecraft:furnace": { - "protocol_id": 280 + "protocol_id": 301 }, "minecraft:furnace_minecart": { - "protocol_id": 730 + "protocol_id": 767 }, "minecraft:ghast_spawn_egg": { - "protocol_id": 989 + "protocol_id": 1028 }, "minecraft:ghast_tear": { - "protocol_id": 954 + "protocol_id": 992 }, "minecraft:gilded_blackstone": { - "protocol_id": 1180 + "protocol_id": 1219 }, "minecraft:glass": { - "protocol_id": 166 + "protocol_id": 187 }, "minecraft:glass_bottle": { - "protocol_id": 958 + "protocol_id": 996 }, "minecraft:glass_pane": { - "protocol_id": 335 + "protocol_id": 356 }, "minecraft:glistering_melon_slice": { - "protocol_id": 966 + "protocol_id": 1004 }, "minecraft:globe_banner_pattern": { - "protocol_id": 1150 + "protocol_id": 1189 }, "minecraft:glow_berries": { - "protocol_id": 1166 + "protocol_id": 1205 }, "minecraft:glow_ink_sac": { - "protocol_id": 902 + "protocol_id": 939 }, "minecraft:glow_item_frame": { - "protocol_id": 1049 + "protocol_id": 1088 }, "minecraft:glow_lichen": { - "protocol_id": 338 + "protocol_id": 359 }, "minecraft:glow_squid_spawn_egg": { - "protocol_id": 990 + "protocol_id": 1029 }, "minecraft:glowstone": { - "protocol_id": 310 + "protocol_id": 331 }, "minecraft:glowstone_dust": { - "protocol_id": 894 + "protocol_id": 931 }, "minecraft:goat_horn": { - "protocol_id": 1152 + "protocol_id": 1191 }, "minecraft:goat_spawn_egg": { - "protocol_id": 991 + "protocol_id": 1030 }, "minecraft:gold_block": { - "protocol_id": 76 + "protocol_id": 89 }, "minecraft:gold_ingot": { - "protocol_id": 774 + "protocol_id": 811 }, "minecraft:gold_nugget": { - "protocol_id": 955 + "protocol_id": 993 }, "minecraft:gold_ore": { - "protocol_id": 55 + "protocol_id": 68 }, "minecraft:golden_apple": { - "protocol_id": 844 + "protocol_id": 881 }, "minecraft:golden_axe": { - "protocol_id": 790 + "protocol_id": 827 }, "minecraft:golden_boots": { - "protocol_id": 835 + "protocol_id": 872 }, "minecraft:golden_carrot": { - "protocol_id": 1056 + "protocol_id": 1095 }, "minecraft:golden_chestplate": { - "protocol_id": 833 + "protocol_id": 870 }, "minecraft:golden_helmet": { - "protocol_id": 832 + "protocol_id": 869 }, "minecraft:golden_hoe": { - "protocol_id": 791 + "protocol_id": 828 }, "minecraft:golden_horse_armor": { - "protocol_id": 1079 + "protocol_id": 1118 }, "minecraft:golden_leggings": { - "protocol_id": 834 + "protocol_id": 871 }, "minecraft:golden_pickaxe": { - "protocol_id": 789 + "protocol_id": 826 }, "minecraft:golden_shovel": { - "protocol_id": 788 + "protocol_id": 825 }, "minecraft:golden_sword": { - "protocol_id": 787 + "protocol_id": 824 }, "minecraft:granite": { "protocol_id": 2 }, "minecraft:granite_slab": { - "protocol_id": 625 + "protocol_id": 646 }, "minecraft:granite_stairs": { - "protocol_id": 608 + "protocol_id": 629 }, "minecraft:granite_wall": { - "protocol_id": 381 - }, - "minecraft:grass": { - "protocol_id": 173 + "protocol_id": 402 }, "minecraft:grass_block": { - "protocol_id": 14 + "protocol_id": 27 }, "minecraft:gravel": { - "protocol_id": 48 + "protocol_id": 61 }, "minecraft:gray_banner": { - "protocol_id": 1094 + "protocol_id": 1133 }, "minecraft:gray_bed": { - "protocol_id": 931 + "protocol_id": 968 }, "minecraft:gray_candle": { - "protocol_id": 1198 + "protocol_id": 1237 }, "minecraft:gray_carpet": { - "protocol_id": 431 + "protocol_id": 452 }, "minecraft:gray_concrete": { - "protocol_id": 540 + "protocol_id": 561 }, "minecraft:gray_concrete_powder": { - "protocol_id": 556 + "protocol_id": 577 }, "minecraft:gray_dye": { - "protocol_id": 911 + "protocol_id": 948 }, "minecraft:gray_glazed_terracotta": { - "protocol_id": 524 + "protocol_id": 545 }, "minecraft:gray_shulker_box": { - "protocol_id": 508 + "protocol_id": 529 }, "minecraft:gray_stained_glass": { - "protocol_id": 456 + "protocol_id": 477 }, "minecraft:gray_stained_glass_pane": { - "protocol_id": 472 + "protocol_id": 493 }, "minecraft:gray_terracotta": { - "protocol_id": 412 + "protocol_id": 433 }, "minecraft:gray_wool": { - "protocol_id": 187 + "protocol_id": 208 }, "minecraft:green_banner": { - "protocol_id": 1100 + "protocol_id": 1139 }, "minecraft:green_bed": { - "protocol_id": 937 + "protocol_id": 974 }, "minecraft:green_candle": { - "protocol_id": 1204 + "protocol_id": 1243 }, "minecraft:green_carpet": { - "protocol_id": 437 + "protocol_id": 458 }, "minecraft:green_concrete": { - "protocol_id": 546 + "protocol_id": 567 }, "minecraft:green_concrete_powder": { - "protocol_id": 562 + "protocol_id": 583 }, "minecraft:green_dye": { - "protocol_id": 917 + "protocol_id": 954 }, "minecraft:green_glazed_terracotta": { - "protocol_id": 530 + "protocol_id": 551 }, "minecraft:green_shulker_box": { - "protocol_id": 514 + "protocol_id": 535 }, "minecraft:green_stained_glass": { - "protocol_id": 462 + "protocol_id": 483 }, "minecraft:green_stained_glass_pane": { - "protocol_id": 478 + "protocol_id": 499 }, "minecraft:green_terracotta": { - "protocol_id": 418 + "protocol_id": 439 }, "minecraft:green_wool": { - "protocol_id": 193 + "protocol_id": 214 }, "minecraft:grindstone": { - "protocol_id": 1159 + "protocol_id": 1198 }, "minecraft:guardian_spawn_egg": { - "protocol_id": 992 + "protocol_id": 1031 }, "minecraft:gunpowder": { - "protocol_id": 812 + "protocol_id": 849 }, "minecraft:hanging_roots": { - "protocol_id": 226 + "protocol_id": 247 }, "minecraft:hay_block": { - "protocol_id": 423 + "protocol_id": 444 }, "minecraft:heart_of_the_sea": { - "protocol_id": 1142 + "protocol_id": 1181 }, "minecraft:heart_pottery_sherd": { - "protocol_id": 1244 + "protocol_id": 1283 }, "minecraft:heartbreak_pottery_sherd": { - "protocol_id": 1245 + "protocol_id": 1284 }, "minecraft:heavy_weighted_pressure_plate": { - "protocol_id": 676 + "protocol_id": 697 }, "minecraft:hoglin_spawn_egg": { - "protocol_id": 993 + "protocol_id": 1032 }, "minecraft:honey_block": { - "protocol_id": 643 + "protocol_id": 664 }, "minecraft:honey_bottle": { - "protocol_id": 1173 + "protocol_id": 1212 }, "minecraft:honeycomb": { - "protocol_id": 1170 + "protocol_id": 1209 }, "minecraft:honeycomb_block": { - "protocol_id": 1174 + "protocol_id": 1213 }, "minecraft:hopper": { - "protocol_id": 645 + "protocol_id": 666 }, "minecraft:hopper_minecart": { - "protocol_id": 732 + "protocol_id": 769 }, "minecraft:horn_coral": { - "protocol_id": 581 + "protocol_id": 602 }, "minecraft:horn_coral_block": { - "protocol_id": 576 + "protocol_id": 597 }, "minecraft:horn_coral_fan": { - "protocol_id": 591 + "protocol_id": 612 }, "minecraft:horse_spawn_egg": { - "protocol_id": 994 + "protocol_id": 1033 }, "minecraft:host_armor_trim_smithing_template": { - "protocol_id": 1234 + "protocol_id": 1273 }, "minecraft:howl_pottery_sherd": { - "protocol_id": 1246 + "protocol_id": 1285 }, "minecraft:husk_spawn_egg": { - "protocol_id": 995 + "protocol_id": 1034 }, "minecraft:ice": { - "protocol_id": 284 + "protocol_id": 305 }, "minecraft:infested_chiseled_stone_bricks": { - "protocol_id": 316 + "protocol_id": 337 }, "minecraft:infested_cobblestone": { - "protocol_id": 312 + "protocol_id": 333 }, "minecraft:infested_cracked_stone_bricks": { - "protocol_id": 315 + "protocol_id": 336 }, "minecraft:infested_deepslate": { - "protocol_id": 317 + "protocol_id": 338 }, "minecraft:infested_mossy_stone_bricks": { - "protocol_id": 314 + "protocol_id": 335 }, "minecraft:infested_stone": { - "protocol_id": 311 + "protocol_id": 332 }, "minecraft:infested_stone_bricks": { - "protocol_id": 313 + "protocol_id": 334 }, "minecraft:ink_sac": { - "protocol_id": 901 + "protocol_id": 938 }, "minecraft:iron_axe": { - "protocol_id": 795 + "protocol_id": 832 }, "minecraft:iron_bars": { - "protocol_id": 333 + "protocol_id": 354 }, "minecraft:iron_block": { - "protocol_id": 74 + "protocol_id": 87 }, "minecraft:iron_boots": { - "protocol_id": 827 + "protocol_id": 864 }, "minecraft:iron_chestplate": { - "protocol_id": 825 + "protocol_id": 862 }, "minecraft:iron_door": { - "protocol_id": 688 + "protocol_id": 709 }, "minecraft:iron_golem_spawn_egg": { - "protocol_id": 996 + "protocol_id": 1035 }, "minecraft:iron_helmet": { - "protocol_id": 824 + "protocol_id": 861 }, "minecraft:iron_hoe": { - "protocol_id": 796 + "protocol_id": 833 }, "minecraft:iron_horse_armor": { - "protocol_id": 1078 + "protocol_id": 1117 }, "minecraft:iron_ingot": { - "protocol_id": 770 + "protocol_id": 807 }, "minecraft:iron_leggings": { - "protocol_id": 826 + "protocol_id": 863 }, "minecraft:iron_nugget": { - "protocol_id": 1119 + "protocol_id": 1158 }, "minecraft:iron_ore": { - "protocol_id": 51 + "protocol_id": 64 }, "minecraft:iron_pickaxe": { - "protocol_id": 794 + "protocol_id": 831 }, "minecraft:iron_shovel": { - "protocol_id": 793 + "protocol_id": 830 }, "minecraft:iron_sword": { - "protocol_id": 792 + "protocol_id": 829 }, "minecraft:iron_trapdoor": { - "protocol_id": 700 + "protocol_id": 729 }, "minecraft:item_frame": { - "protocol_id": 1048 + "protocol_id": 1087 }, "minecraft:jack_o_lantern": { - "protocol_id": 302 + "protocol_id": 323 }, "minecraft:jigsaw": { - "protocol_id": 755 + "protocol_id": 792 }, "minecraft:jukebox": { - "protocol_id": 288 + "protocol_id": 309 }, "minecraft:jungle_boat": { - "protocol_id": 742 + "protocol_id": 779 }, "minecraft:jungle_button": { - "protocol_id": 665 + "protocol_id": 686 }, "minecraft:jungle_chest_boat": { - "protocol_id": 743 + "protocol_id": 780 }, "minecraft:jungle_door": { - "protocol_id": 692 + "protocol_id": 713 }, "minecraft:jungle_fence": { - "protocol_id": 292 + "protocol_id": 313 }, "minecraft:jungle_fence_gate": { - "protocol_id": 715 + "protocol_id": 752 }, "minecraft:jungle_hanging_sign": { - "protocol_id": 860 + "protocol_id": 897 }, "minecraft:jungle_leaves": { - "protocol_id": 157 + "protocol_id": 178 }, "minecraft:jungle_log": { - "protocol_id": 113 + "protocol_id": 134 }, "minecraft:jungle_planks": { - "protocol_id": 26 + "protocol_id": 39 }, "minecraft:jungle_pressure_plate": { - "protocol_id": 680 + "protocol_id": 701 }, "minecraft:jungle_sapling": { - "protocol_id": 38 + "protocol_id": 51 }, "minecraft:jungle_sign": { - "protocol_id": 849 + "protocol_id": 886 }, "minecraft:jungle_slab": { - "protocol_id": 233 + "protocol_id": 254 }, "minecraft:jungle_stairs": { - "protocol_id": 364 + "protocol_id": 385 }, "minecraft:jungle_trapdoor": { - "protocol_id": 704 + "protocol_id": 733 }, "minecraft:jungle_wood": { - "protocol_id": 147 + "protocol_id": 168 }, "minecraft:kelp": { - "protocol_id": 222 + "protocol_id": 243 }, "minecraft:knowledge_book": { - "protocol_id": 1120 + "protocol_id": 1159 }, "minecraft:ladder": { - "protocol_id": 281 + "protocol_id": 302 }, "minecraft:lantern": { - "protocol_id": 1163 + "protocol_id": 1202 }, "minecraft:lapis_block": { - "protocol_id": 168 + "protocol_id": 189 }, "minecraft:lapis_lazuli": { - "protocol_id": 766 + "protocol_id": 803 }, "minecraft:lapis_ore": { - "protocol_id": 61 + "protocol_id": 74 }, "minecraft:large_amethyst_bud": { - "protocol_id": 1209 + "protocol_id": 1248 }, "minecraft:large_fern": { - "protocol_id": 448 + "protocol_id": 469 }, "minecraft:lava_bucket": { - "protocol_id": 870 + "protocol_id": 907 }, "minecraft:lead": { - "protocol_id": 1082 + "protocol_id": 1121 }, "minecraft:leather": { - "protocol_id": 873 + "protocol_id": 910 }, "minecraft:leather_boots": { - "protocol_id": 819 + "protocol_id": 856 }, "minecraft:leather_chestplate": { - "protocol_id": 817 + "protocol_id": 854 }, "minecraft:leather_helmet": { - "protocol_id": 816 + "protocol_id": 853 }, "minecraft:leather_horse_armor": { - "protocol_id": 1081 + "protocol_id": 1120 }, "minecraft:leather_leggings": { - "protocol_id": 818 + "protocol_id": 855 }, "minecraft:lectern": { - "protocol_id": 648 + "protocol_id": 669 }, "minecraft:lever": { - "protocol_id": 650 + "protocol_id": 671 }, "minecraft:light": { - "protocol_id": 422 + "protocol_id": 443 }, "minecraft:light_blue_banner": { - "protocol_id": 1090 + "protocol_id": 1129 }, "minecraft:light_blue_bed": { - "protocol_id": 927 + "protocol_id": 964 }, "minecraft:light_blue_candle": { - "protocol_id": 1194 + "protocol_id": 1233 }, "minecraft:light_blue_carpet": { - "protocol_id": 427 + "protocol_id": 448 }, "minecraft:light_blue_concrete": { - "protocol_id": 536 + "protocol_id": 557 }, "minecraft:light_blue_concrete_powder": { - "protocol_id": 552 + "protocol_id": 573 }, "minecraft:light_blue_dye": { - "protocol_id": 907 + "protocol_id": 944 }, "minecraft:light_blue_glazed_terracotta": { - "protocol_id": 520 + "protocol_id": 541 }, "minecraft:light_blue_shulker_box": { - "protocol_id": 504 + "protocol_id": 525 }, "minecraft:light_blue_stained_glass": { - "protocol_id": 452 + "protocol_id": 473 }, "minecraft:light_blue_stained_glass_pane": { - "protocol_id": 468 + "protocol_id": 489 }, "minecraft:light_blue_terracotta": { - "protocol_id": 408 + "protocol_id": 429 }, "minecraft:light_blue_wool": { - "protocol_id": 183 + "protocol_id": 204 }, "minecraft:light_gray_banner": { - "protocol_id": 1095 + "protocol_id": 1134 }, "minecraft:light_gray_bed": { - "protocol_id": 932 + "protocol_id": 969 }, "minecraft:light_gray_candle": { - "protocol_id": 1199 + "protocol_id": 1238 }, "minecraft:light_gray_carpet": { - "protocol_id": 432 + "protocol_id": 453 }, "minecraft:light_gray_concrete": { - "protocol_id": 541 + "protocol_id": 562 }, "minecraft:light_gray_concrete_powder": { - "protocol_id": 557 + "protocol_id": 578 }, "minecraft:light_gray_dye": { - "protocol_id": 912 + "protocol_id": 949 }, "minecraft:light_gray_glazed_terracotta": { - "protocol_id": 525 + "protocol_id": 546 }, "minecraft:light_gray_shulker_box": { - "protocol_id": 509 + "protocol_id": 530 }, "minecraft:light_gray_stained_glass": { - "protocol_id": 457 + "protocol_id": 478 }, "minecraft:light_gray_stained_glass_pane": { - "protocol_id": 473 + "protocol_id": 494 }, "minecraft:light_gray_terracotta": { - "protocol_id": 413 + "protocol_id": 434 }, "minecraft:light_gray_wool": { - "protocol_id": 188 + "protocol_id": 209 }, "minecraft:light_weighted_pressure_plate": { - "protocol_id": 675 + "protocol_id": 696 }, "minecraft:lightning_rod": { - "protocol_id": 651 + "protocol_id": 672 }, "minecraft:lilac": { - "protocol_id": 444 + "protocol_id": 465 }, "minecraft:lily_of_the_valley": { - "protocol_id": 207 + "protocol_id": 228 }, "minecraft:lily_pad": { - "protocol_id": 343 + "protocol_id": 364 }, "minecraft:lime_banner": { - "protocol_id": 1092 + "protocol_id": 1131 }, "minecraft:lime_bed": { - "protocol_id": 929 + "protocol_id": 966 }, "minecraft:lime_candle": { - "protocol_id": 1196 + "protocol_id": 1235 }, "minecraft:lime_carpet": { - "protocol_id": 429 + "protocol_id": 450 }, "minecraft:lime_concrete": { - "protocol_id": 538 + "protocol_id": 559 }, "minecraft:lime_concrete_powder": { - "protocol_id": 554 + "protocol_id": 575 }, "minecraft:lime_dye": { - "protocol_id": 909 + "protocol_id": 946 }, "minecraft:lime_glazed_terracotta": { - "protocol_id": 522 + "protocol_id": 543 }, "minecraft:lime_shulker_box": { - "protocol_id": 506 + "protocol_id": 527 }, "minecraft:lime_stained_glass": { - "protocol_id": 454 + "protocol_id": 475 }, "minecraft:lime_stained_glass_pane": { - "protocol_id": 470 + "protocol_id": 491 }, "minecraft:lime_terracotta": { - "protocol_id": 410 + "protocol_id": 431 }, "minecraft:lime_wool": { - "protocol_id": 185 + "protocol_id": 206 }, "minecraft:lingering_potion": { - "protocol_id": 1115 + "protocol_id": 1154 }, "minecraft:llama_spawn_egg": { - "protocol_id": 997 + "protocol_id": 1036 }, "minecraft:lodestone": { - "protocol_id": 1175 + "protocol_id": 1214 }, "minecraft:loom": { - "protocol_id": 1145 + "protocol_id": 1184 }, "minecraft:magenta_banner": { - "protocol_id": 1089 + "protocol_id": 1128 }, "minecraft:magenta_bed": { - "protocol_id": 926 + "protocol_id": 963 }, "minecraft:magenta_candle": { - "protocol_id": 1193 + "protocol_id": 1232 }, "minecraft:magenta_carpet": { - "protocol_id": 426 + "protocol_id": 447 }, "minecraft:magenta_concrete": { - "protocol_id": 535 + "protocol_id": 556 }, "minecraft:magenta_concrete_powder": { - "protocol_id": 551 + "protocol_id": 572 }, "minecraft:magenta_dye": { - "protocol_id": 906 + "protocol_id": 943 }, "minecraft:magenta_glazed_terracotta": { - "protocol_id": 519 + "protocol_id": 540 }, "minecraft:magenta_shulker_box": { - "protocol_id": 503 + "protocol_id": 524 }, "minecraft:magenta_stained_glass": { - "protocol_id": 451 + "protocol_id": 472 }, "minecraft:magenta_stained_glass_pane": { - "protocol_id": 467 + "protocol_id": 488 }, "minecraft:magenta_terracotta": { - "protocol_id": 407 + "protocol_id": 428 }, "minecraft:magenta_wool": { - "protocol_id": 182 + "protocol_id": 203 }, "minecraft:magma_block": { - "protocol_id": 494 + "protocol_id": 515 }, "minecraft:magma_cream": { - "protocol_id": 962 + "protocol_id": 1000 }, "minecraft:magma_cube_spawn_egg": { - "protocol_id": 998 + "protocol_id": 1037 }, "minecraft:mangrove_boat": { - "protocol_id": 750 + "protocol_id": 787 }, "minecraft:mangrove_button": { - "protocol_id": 669 + "protocol_id": 690 }, "minecraft:mangrove_chest_boat": { - "protocol_id": 751 + "protocol_id": 788 }, "minecraft:mangrove_door": { - "protocol_id": 696 + "protocol_id": 717 }, "minecraft:mangrove_fence": { - "protocol_id": 296 + "protocol_id": 317 }, "minecraft:mangrove_fence_gate": { - "protocol_id": 719 + "protocol_id": 756 }, "minecraft:mangrove_hanging_sign": { - "protocol_id": 864 + "protocol_id": 901 }, "minecraft:mangrove_leaves": { - "protocol_id": 161 + "protocol_id": 182 }, "minecraft:mangrove_log": { - "protocol_id": 117 + "protocol_id": 138 }, "minecraft:mangrove_planks": { - "protocol_id": 30 + "protocol_id": 43 }, "minecraft:mangrove_pressure_plate": { - "protocol_id": 684 + "protocol_id": 705 }, "minecraft:mangrove_propagule": { - "protocol_id": 42 + "protocol_id": 55 }, "minecraft:mangrove_roots": { - "protocol_id": 118 + "protocol_id": 139 }, "minecraft:mangrove_sign": { - "protocol_id": 853 + "protocol_id": 890 }, "minecraft:mangrove_slab": { - "protocol_id": 237 + "protocol_id": 258 }, "minecraft:mangrove_stairs": { - "protocol_id": 368 + "protocol_id": 389 }, "minecraft:mangrove_trapdoor": { - "protocol_id": 708 + "protocol_id": 737 }, "minecraft:mangrove_wood": { - "protocol_id": 151 + "protocol_id": 172 }, "minecraft:map": { - "protocol_id": 1055 + "protocol_id": 1094 }, "minecraft:medium_amethyst_bud": { - "protocol_id": 1208 + "protocol_id": 1247 }, "minecraft:melon": { - "protocol_id": 336 + "protocol_id": 357 }, "minecraft:melon_seeds": { - "protocol_id": 946 + "protocol_id": 984 }, "minecraft:melon_slice": { - "protocol_id": 943 + "protocol_id": 981 }, "minecraft:milk_bucket": { - "protocol_id": 874 + "protocol_id": 911 }, "minecraft:minecart": { - "protocol_id": 728 + "protocol_id": 765 }, "minecraft:miner_pottery_sherd": { - "protocol_id": 1247 + "protocol_id": 1286 }, "minecraft:mojang_banner_pattern": { - "protocol_id": 1149 + "protocol_id": 1188 }, "minecraft:mooshroom_spawn_egg": { - "protocol_id": 999 + "protocol_id": 1038 }, "minecraft:moss_block": { - "protocol_id": 225 + "protocol_id": 246 }, "minecraft:moss_carpet": { - "protocol_id": 223 + "protocol_id": 244 }, "minecraft:mossy_cobblestone": { - "protocol_id": 267 + "protocol_id": 288 }, "minecraft:mossy_cobblestone_slab": { - "protocol_id": 621 + "protocol_id": 642 }, "minecraft:mossy_cobblestone_stairs": { - "protocol_id": 603 + "protocol_id": 624 }, "minecraft:mossy_cobblestone_wall": { - "protocol_id": 376 + "protocol_id": 397 }, "minecraft:mossy_stone_brick_slab": { - "protocol_id": 619 + "protocol_id": 640 }, "minecraft:mossy_stone_brick_stairs": { - "protocol_id": 601 + "protocol_id": 622 }, "minecraft:mossy_stone_brick_wall": { - "protocol_id": 380 + "protocol_id": 401 }, "minecraft:mossy_stone_bricks": { - "protocol_id": 319 + "protocol_id": 340 }, "minecraft:mourner_pottery_sherd": { - "protocol_id": 1248 + "protocol_id": 1287 }, "minecraft:mud": { - "protocol_id": 19 + "protocol_id": 32 }, "minecraft:mud_brick_slab": { - "protocol_id": 250 + "protocol_id": 271 }, "minecraft:mud_brick_stairs": { - "protocol_id": 341 + "protocol_id": 362 }, "minecraft:mud_brick_wall": { - "protocol_id": 383 + "protocol_id": 404 }, "minecraft:mud_bricks": { - "protocol_id": 323 + "protocol_id": 344 }, "minecraft:muddy_mangrove_roots": { - "protocol_id": 119 + "protocol_id": 140 }, "minecraft:mule_spawn_egg": { - "protocol_id": 1000 + "protocol_id": 1039 }, "minecraft:mushroom_stem": { - "protocol_id": 332 + "protocol_id": 353 }, "minecraft:mushroom_stew": { - "protocol_id": 809 + "protocol_id": 846 }, "minecraft:music_disc_11": { - "protocol_id": 1132 + "protocol_id": 1171 }, "minecraft:music_disc_13": { - "protocol_id": 1122 + "protocol_id": 1161 }, "minecraft:music_disc_5": { - "protocol_id": 1136 + "protocol_id": 1175 }, "minecraft:music_disc_blocks": { - "protocol_id": 1124 + "protocol_id": 1163 }, "minecraft:music_disc_cat": { - "protocol_id": 1123 + "protocol_id": 1162 }, "minecraft:music_disc_chirp": { - "protocol_id": 1125 + "protocol_id": 1164 }, "minecraft:music_disc_far": { - "protocol_id": 1126 + "protocol_id": 1165 }, "minecraft:music_disc_mall": { - "protocol_id": 1127 + "protocol_id": 1166 }, "minecraft:music_disc_mellohi": { - "protocol_id": 1128 + "protocol_id": 1167 }, "minecraft:music_disc_otherside": { - "protocol_id": 1134 + "protocol_id": 1173 }, "minecraft:music_disc_pigstep": { - "protocol_id": 1137 + "protocol_id": 1176 }, "minecraft:music_disc_relic": { - "protocol_id": 1135 + "protocol_id": 1174 }, "minecraft:music_disc_stal": { - "protocol_id": 1129 + "protocol_id": 1168 }, "minecraft:music_disc_strad": { - "protocol_id": 1130 + "protocol_id": 1169 }, "minecraft:music_disc_wait": { - "protocol_id": 1133 + "protocol_id": 1172 }, "minecraft:music_disc_ward": { - "protocol_id": 1131 + "protocol_id": 1170 }, "minecraft:mutton": { - "protocol_id": 1085 + "protocol_id": 1124 }, "minecraft:mycelium": { - "protocol_id": 342 + "protocol_id": 363 }, "minecraft:name_tag": { - "protocol_id": 1083 + "protocol_id": 1122 }, "minecraft:nautilus_shell": { - "protocol_id": 1141 + "protocol_id": 1180 }, "minecraft:nether_brick": { - "protocol_id": 1069 + "protocol_id": 1108 }, "minecraft:nether_brick_fence": { - "protocol_id": 347 + "protocol_id": 368 }, "minecraft:nether_brick_slab": { - "protocol_id": 251 + "protocol_id": 272 }, "minecraft:nether_brick_stairs": { - "protocol_id": 348 + "protocol_id": 369 }, "minecraft:nether_brick_wall": { - "protocol_id": 384 + "protocol_id": 405 }, "minecraft:nether_bricks": { - "protocol_id": 344 + "protocol_id": 365 }, "minecraft:nether_gold_ore": { - "protocol_id": 65 + "protocol_id": 78 }, "minecraft:nether_quartz_ore": { - "protocol_id": 66 + "protocol_id": 79 }, "minecraft:nether_sprouts": { - "protocol_id": 218 + "protocol_id": 239 }, "minecraft:nether_star": { - "protocol_id": 1064 + "protocol_id": 1103 }, "minecraft:nether_wart": { - "protocol_id": 956 + "protocol_id": 994 }, "minecraft:nether_wart_block": { - "protocol_id": 495 + "protocol_id": 516 }, "minecraft:netherite_axe": { - "protocol_id": 805 + "protocol_id": 842 }, "minecraft:netherite_block": { - "protocol_id": 78 + "protocol_id": 91 }, "minecraft:netherite_boots": { - "protocol_id": 839 + "protocol_id": 876 }, "minecraft:netherite_chestplate": { - "protocol_id": 837 + "protocol_id": 874 }, "minecraft:netherite_helmet": { - "protocol_id": 836 + "protocol_id": 873 }, "minecraft:netherite_hoe": { - "protocol_id": 806 + "protocol_id": 843 }, "minecraft:netherite_ingot": { - "protocol_id": 775 + "protocol_id": 812 }, "minecraft:netherite_leggings": { - "protocol_id": 838 + "protocol_id": 875 }, "minecraft:netherite_pickaxe": { - "protocol_id": 804 + "protocol_id": 841 }, "minecraft:netherite_scrap": { - "protocol_id": 776 + "protocol_id": 813 }, "minecraft:netherite_shovel": { - "protocol_id": 803 + "protocol_id": 840 }, "minecraft:netherite_sword": { - "protocol_id": 802 + "protocol_id": 839 }, "minecraft:netherite_upgrade_smithing_template": { - "protocol_id": 1218 + "protocol_id": 1257 }, "minecraft:netherrack": { - "protocol_id": 303 + "protocol_id": 324 }, "minecraft:note_block": { - "protocol_id": 659 + "protocol_id": 680 }, "minecraft:oak_boat": { - "protocol_id": 736 + "protocol_id": 773 }, "minecraft:oak_button": { - "protocol_id": 662 + "protocol_id": 683 }, "minecraft:oak_chest_boat": { - "protocol_id": 737 + "protocol_id": 774 }, "minecraft:oak_door": { - "protocol_id": 689 + "protocol_id": 710 }, "minecraft:oak_fence": { - "protocol_id": 289 + "protocol_id": 310 }, "minecraft:oak_fence_gate": { - "protocol_id": 712 + "protocol_id": 749 }, "minecraft:oak_hanging_sign": { - "protocol_id": 857 + "protocol_id": 894 }, "minecraft:oak_leaves": { - "protocol_id": 154 + "protocol_id": 175 }, "minecraft:oak_log": { - "protocol_id": 110 + "protocol_id": 131 }, "minecraft:oak_planks": { - "protocol_id": 23 + "protocol_id": 36 }, "minecraft:oak_pressure_plate": { - "protocol_id": 677 + "protocol_id": 698 }, "minecraft:oak_sapling": { - "protocol_id": 35 + "protocol_id": 48 }, "minecraft:oak_sign": { - "protocol_id": 846 + "protocol_id": 883 }, "minecraft:oak_slab": { - "protocol_id": 230 + "protocol_id": 251 }, "minecraft:oak_stairs": { - "protocol_id": 361 + "protocol_id": 382 }, "minecraft:oak_trapdoor": { - "protocol_id": 701 + "protocol_id": 730 }, "minecraft:oak_wood": { - "protocol_id": 144 + "protocol_id": 165 }, "minecraft:observer": { - "protocol_id": 644 + "protocol_id": 665 }, "minecraft:obsidian": { - "protocol_id": 268 + "protocol_id": 289 }, "minecraft:ocelot_spawn_egg": { - "protocol_id": 1001 + "protocol_id": 1040 }, "minecraft:ochre_froglight": { - "protocol_id": 1212 + "protocol_id": 1251 }, "minecraft:orange_banner": { - "protocol_id": 1088 + "protocol_id": 1127 }, "minecraft:orange_bed": { - "protocol_id": 925 + "protocol_id": 962 }, "minecraft:orange_candle": { - "protocol_id": 1192 + "protocol_id": 1231 }, "minecraft:orange_carpet": { - "protocol_id": 425 + "protocol_id": 446 }, "minecraft:orange_concrete": { - "protocol_id": 534 + "protocol_id": 555 }, "minecraft:orange_concrete_powder": { - "protocol_id": 550 + "protocol_id": 571 }, "minecraft:orange_dye": { - "protocol_id": 905 + "protocol_id": 942 }, "minecraft:orange_glazed_terracotta": { - "protocol_id": 518 + "protocol_id": 539 }, "minecraft:orange_shulker_box": { - "protocol_id": 502 + "protocol_id": 523 }, "minecraft:orange_stained_glass": { - "protocol_id": 450 + "protocol_id": 471 }, "minecraft:orange_stained_glass_pane": { - "protocol_id": 466 + "protocol_id": 487 }, "minecraft:orange_terracotta": { - "protocol_id": 406 + "protocol_id": 427 }, "minecraft:orange_tulip": { - "protocol_id": 202 + "protocol_id": 223 }, "minecraft:orange_wool": { - "protocol_id": 181 + "protocol_id": 202 }, "minecraft:oxeye_daisy": { - "protocol_id": 205 + "protocol_id": 226 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 98 }, "minecraft:oxidized_copper": { - "protocol_id": 81 + "protocol_id": 94 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1305 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 724 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1297 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 744 }, "minecraft:oxidized_cut_copper": { - "protocol_id": 85 + "protocol_id": 102 }, "minecraft:oxidized_cut_copper_slab": { - "protocol_id": 93 + "protocol_id": 110 }, "minecraft:oxidized_cut_copper_stairs": { - "protocol_id": 89 + "protocol_id": 106 }, "minecraft:packed_ice": { - "protocol_id": 441 + "protocol_id": 462 }, "minecraft:packed_mud": { - "protocol_id": 322 + "protocol_id": 343 }, "minecraft:painting": { - "protocol_id": 843 + "protocol_id": 880 }, "minecraft:panda_spawn_egg": { - "protocol_id": 1002 + "protocol_id": 1041 }, "minecraft:paper": { - "protocol_id": 884 + "protocol_id": 921 }, "minecraft:parrot_spawn_egg": { - "protocol_id": 1003 + "protocol_id": 1042 }, "minecraft:pearlescent_froglight": { - "protocol_id": 1214 + "protocol_id": 1253 }, "minecraft:peony": { - "protocol_id": 446 + "protocol_id": 467 }, "minecraft:petrified_oak_slab": { - "protocol_id": 246 + "protocol_id": 267 }, "minecraft:phantom_membrane": { - "protocol_id": 1140 + "protocol_id": 1179 }, "minecraft:phantom_spawn_egg": { - "protocol_id": 1004 + "protocol_id": 1043 }, "minecraft:pig_spawn_egg": { - "protocol_id": 1005 + "protocol_id": 1044 }, "minecraft:piglin_banner_pattern": { - "protocol_id": 1151 + "protocol_id": 1190 }, "minecraft:piglin_brute_spawn_egg": { - "protocol_id": 1007 + "protocol_id": 1046 }, "minecraft:piglin_head": { - "protocol_id": 1063 + "protocol_id": 1102 }, "minecraft:piglin_spawn_egg": { - "protocol_id": 1006 + "protocol_id": 1045 }, "minecraft:pillager_spawn_egg": { - "protocol_id": 1008 + "protocol_id": 1047 }, "minecraft:pink_banner": { - "protocol_id": 1093 + "protocol_id": 1132 }, "minecraft:pink_bed": { - "protocol_id": 930 + "protocol_id": 967 }, "minecraft:pink_candle": { - "protocol_id": 1197 + "protocol_id": 1236 }, "minecraft:pink_carpet": { - "protocol_id": 430 + "protocol_id": 451 }, "minecraft:pink_concrete": { - "protocol_id": 539 + "protocol_id": 560 }, "minecraft:pink_concrete_powder": { - "protocol_id": 555 + "protocol_id": 576 }, "minecraft:pink_dye": { - "protocol_id": 910 + "protocol_id": 947 }, "minecraft:pink_glazed_terracotta": { - "protocol_id": 523 + "protocol_id": 544 }, "minecraft:pink_petals": { - "protocol_id": 224 + "protocol_id": 245 }, "minecraft:pink_shulker_box": { - "protocol_id": 507 + "protocol_id": 528 }, "minecraft:pink_stained_glass": { - "protocol_id": 455 + "protocol_id": 476 }, "minecraft:pink_stained_glass_pane": { - "protocol_id": 471 + "protocol_id": 492 }, "minecraft:pink_terracotta": { - "protocol_id": 411 + "protocol_id": 432 }, "minecraft:pink_tulip": { - "protocol_id": 204 + "protocol_id": 225 }, "minecraft:pink_wool": { - "protocol_id": 186 + "protocol_id": 207 }, "minecraft:piston": { - "protocol_id": 640 + "protocol_id": 661 }, "minecraft:pitcher_plant": { - "protocol_id": 210 + "protocol_id": 231 }, "minecraft:pitcher_pod": { - "protocol_id": 1107 + "protocol_id": 1146 }, "minecraft:player_head": { - "protocol_id": 1059 + "protocol_id": 1098 }, "minecraft:plenty_pottery_sherd": { - "protocol_id": 1249 + "protocol_id": 1288 }, "minecraft:podzol": { - "protocol_id": 17 + "protocol_id": 30 }, "minecraft:pointed_dripstone": { - "protocol_id": 1211 + "protocol_id": 1250 }, "minecraft:poisonous_potato": { - "protocol_id": 1054 + "protocol_id": 1093 }, "minecraft:polar_bear_spawn_egg": { - "protocol_id": 1009 + "protocol_id": 1048 }, "minecraft:polished_andesite": { "protocol_id": 7 }, "minecraft:polished_andesite_slab": { - "protocol_id": 628 + "protocol_id": 649 }, "minecraft:polished_andesite_stairs": { - "protocol_id": 611 + "protocol_id": 632 }, "minecraft:polished_basalt": { - "protocol_id": 307 + "protocol_id": 328 }, "minecraft:polished_blackstone": { - "protocol_id": 1181 + "protocol_id": 1220 }, "minecraft:polished_blackstone_brick_slab": { - "protocol_id": 1186 + "protocol_id": 1225 }, "minecraft:polished_blackstone_brick_stairs": { - "protocol_id": 1187 + "protocol_id": 1226 }, "minecraft:polished_blackstone_brick_wall": { - "protocol_id": 392 + "protocol_id": 413 }, "minecraft:polished_blackstone_bricks": { - "protocol_id": 1185 + "protocol_id": 1224 }, "minecraft:polished_blackstone_button": { - "protocol_id": 661 + "protocol_id": 682 }, "minecraft:polished_blackstone_pressure_plate": { - "protocol_id": 674 + "protocol_id": 695 }, "minecraft:polished_blackstone_slab": { - "protocol_id": 1182 + "protocol_id": 1221 }, "minecraft:polished_blackstone_stairs": { - "protocol_id": 1183 + "protocol_id": 1222 }, "minecraft:polished_blackstone_wall": { - "protocol_id": 391 + "protocol_id": 412 }, "minecraft:polished_deepslate": { "protocol_id": 10 }, "minecraft:polished_deepslate_slab": { - "protocol_id": 631 + "protocol_id": 652 }, "minecraft:polished_deepslate_stairs": { - "protocol_id": 614 + "protocol_id": 635 }, "minecraft:polished_deepslate_wall": { - "protocol_id": 394 + "protocol_id": 415 }, "minecraft:polished_diorite": { "protocol_id": 5 }, "minecraft:polished_diorite_slab": { - "protocol_id": 620 + "protocol_id": 641 }, "minecraft:polished_diorite_stairs": { - "protocol_id": 602 + "protocol_id": 623 }, "minecraft:polished_granite": { "protocol_id": 3 }, "minecraft:polished_granite_slab": { - "protocol_id": 617 + "protocol_id": 638 }, "minecraft:polished_granite_stairs": { - "protocol_id": 599 + "protocol_id": 620 + }, + "minecraft:polished_tuff": { + "protocol_id": 17 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 18 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 19 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 20 }, "minecraft:popped_chorus_fruit": { - "protocol_id": 1105 + "protocol_id": 1144 }, "minecraft:poppy": { - "protocol_id": 197 + "protocol_id": 218 }, "minecraft:porkchop": { - "protocol_id": 841 + "protocol_id": 878 }, "minecraft:potato": { - "protocol_id": 1052 + "protocol_id": 1091 }, "minecraft:potion": { - "protocol_id": 957 + "protocol_id": 995 }, "minecraft:powder_snow_bucket": { - "protocol_id": 871 + "protocol_id": 908 }, "minecraft:powered_rail": { - "protocol_id": 723 + "protocol_id": 760 }, "minecraft:prismarine": { - "protocol_id": 481 + "protocol_id": 502 }, "minecraft:prismarine_brick_slab": { - "protocol_id": 257 + "protocol_id": 278 }, "minecraft:prismarine_brick_stairs": { - "protocol_id": 485 + "protocol_id": 506 }, "minecraft:prismarine_bricks": { - "protocol_id": 482 + "protocol_id": 503 }, "minecraft:prismarine_crystals": { - "protocol_id": 1071 + "protocol_id": 1110 }, "minecraft:prismarine_shard": { - "protocol_id": 1070 + "protocol_id": 1109 }, "minecraft:prismarine_slab": { - "protocol_id": 256 + "protocol_id": 277 }, "minecraft:prismarine_stairs": { - "protocol_id": 484 + "protocol_id": 505 }, "minecraft:prismarine_wall": { - "protocol_id": 378 + "protocol_id": 399 }, "minecraft:prize_pottery_sherd": { - "protocol_id": 1250 + "protocol_id": 1289 }, "minecraft:pufferfish": { - "protocol_id": 898 + "protocol_id": 935 }, "minecraft:pufferfish_bucket": { - "protocol_id": 875 + "protocol_id": 912 }, "minecraft:pufferfish_spawn_egg": { - "protocol_id": 1010 + "protocol_id": 1049 }, "minecraft:pumpkin": { - "protocol_id": 300 + "protocol_id": 321 }, "minecraft:pumpkin_pie": { - "protocol_id": 1065 + "protocol_id": 1104 }, "minecraft:pumpkin_seeds": { - "protocol_id": 945 + "protocol_id": 983 }, "minecraft:purple_banner": { - "protocol_id": 1097 + "protocol_id": 1136 }, "minecraft:purple_bed": { - "protocol_id": 934 + "protocol_id": 971 }, "minecraft:purple_candle": { - "protocol_id": 1201 + "protocol_id": 1240 }, "minecraft:purple_carpet": { - "protocol_id": 434 + "protocol_id": 455 }, "minecraft:purple_concrete": { - "protocol_id": 543 + "protocol_id": 564 }, "minecraft:purple_concrete_powder": { - "protocol_id": 559 + "protocol_id": 580 }, "minecraft:purple_dye": { - "protocol_id": 914 + "protocol_id": 951 }, "minecraft:purple_glazed_terracotta": { - "protocol_id": 527 + "protocol_id": 548 }, "minecraft:purple_shulker_box": { - "protocol_id": 511 + "protocol_id": 532 }, "minecraft:purple_stained_glass": { - "protocol_id": 459 + "protocol_id": 480 }, "minecraft:purple_stained_glass_pane": { - "protocol_id": 475 + "protocol_id": 496 }, "minecraft:purple_terracotta": { - "protocol_id": 415 + "protocol_id": 436 }, "minecraft:purple_wool": { - "protocol_id": 190 + "protocol_id": 211 }, "minecraft:purpur_block": { - "protocol_id": 273 + "protocol_id": 294 }, "minecraft:purpur_pillar": { - "protocol_id": 274 + "protocol_id": 295 }, "minecraft:purpur_slab": { - "protocol_id": 255 + "protocol_id": 276 }, "minecraft:purpur_stairs": { - "protocol_id": 275 + "protocol_id": 296 }, "minecraft:quartz": { - "protocol_id": 767 + "protocol_id": 804 }, "minecraft:quartz_block": { - "protocol_id": 401 + "protocol_id": 422 }, "minecraft:quartz_bricks": { - "protocol_id": 402 + "protocol_id": 423 }, "minecraft:quartz_pillar": { - "protocol_id": 403 + "protocol_id": 424 }, "minecraft:quartz_slab": { - "protocol_id": 252 + "protocol_id": 273 }, "minecraft:quartz_stairs": { - "protocol_id": 404 + "protocol_id": 425 }, "minecraft:rabbit": { - "protocol_id": 1072 + "protocol_id": 1111 }, "minecraft:rabbit_foot": { - "protocol_id": 1075 + "protocol_id": 1114 }, "minecraft:rabbit_hide": { - "protocol_id": 1076 + "protocol_id": 1115 }, "minecraft:rabbit_spawn_egg": { - "protocol_id": 1011 + "protocol_id": 1050 }, "minecraft:rabbit_stew": { - "protocol_id": 1074 + "protocol_id": 1113 }, "minecraft:rail": { - "protocol_id": 725 + "protocol_id": 762 }, "minecraft:raiser_armor_trim_smithing_template": { - "protocol_id": 1233 + "protocol_id": 1272 }, "minecraft:ravager_spawn_egg": { - "protocol_id": 1012 + "protocol_id": 1051 }, "minecraft:raw_copper": { - "protocol_id": 771 + "protocol_id": 808 }, "minecraft:raw_copper_block": { - "protocol_id": 70 + "protocol_id": 83 }, "minecraft:raw_gold": { - "protocol_id": 773 + "protocol_id": 810 }, "minecraft:raw_gold_block": { - "protocol_id": 71 + "protocol_id": 84 }, "minecraft:raw_iron": { - "protocol_id": 769 + "protocol_id": 806 }, "minecraft:raw_iron_block": { - "protocol_id": 69 + "protocol_id": 82 }, "minecraft:recovery_compass": { - "protocol_id": 889 + "protocol_id": 926 }, "minecraft:red_banner": { - "protocol_id": 1101 + "protocol_id": 1140 }, "minecraft:red_bed": { - "protocol_id": 938 + "protocol_id": 975 }, "minecraft:red_candle": { - "protocol_id": 1205 + "protocol_id": 1244 }, "minecraft:red_carpet": { - "protocol_id": 438 + "protocol_id": 459 }, "minecraft:red_concrete": { - "protocol_id": 547 + "protocol_id": 568 }, "minecraft:red_concrete_powder": { - "protocol_id": 563 + "protocol_id": 584 }, "minecraft:red_dye": { - "protocol_id": 918 + "protocol_id": 955 }, "minecraft:red_glazed_terracotta": { - "protocol_id": 531 + "protocol_id": 552 }, "minecraft:red_mushroom": { - "protocol_id": 213 + "protocol_id": 234 }, "minecraft:red_mushroom_block": { - "protocol_id": 331 + "protocol_id": 352 }, "minecraft:red_nether_brick_slab": { - "protocol_id": 627 + "protocol_id": 648 }, "minecraft:red_nether_brick_stairs": { - "protocol_id": 610 + "protocol_id": 631 }, "minecraft:red_nether_brick_wall": { - "protocol_id": 386 + "protocol_id": 407 }, "minecraft:red_nether_bricks": { - "protocol_id": 497 + "protocol_id": 518 }, "minecraft:red_sand": { - "protocol_id": 47 + "protocol_id": 60 }, "minecraft:red_sandstone": { - "protocol_id": 488 + "protocol_id": 509 }, "minecraft:red_sandstone_slab": { - "protocol_id": 253 + "protocol_id": 274 }, "minecraft:red_sandstone_stairs": { - "protocol_id": 491 + "protocol_id": 512 }, "minecraft:red_sandstone_wall": { - "protocol_id": 379 + "protocol_id": 400 }, "minecraft:red_shulker_box": { - "protocol_id": 515 + "protocol_id": 536 }, "minecraft:red_stained_glass": { - "protocol_id": 463 + "protocol_id": 484 }, "minecraft:red_stained_glass_pane": { - "protocol_id": 479 + "protocol_id": 500 }, "minecraft:red_terracotta": { - "protocol_id": 419 + "protocol_id": 440 }, "minecraft:red_tulip": { - "protocol_id": 201 + "protocol_id": 222 }, "minecraft:red_wool": { - "protocol_id": 194 + "protocol_id": 215 }, "minecraft:redstone": { - "protocol_id": 635 + "protocol_id": 656 }, "minecraft:redstone_block": { - "protocol_id": 637 + "protocol_id": 658 }, "minecraft:redstone_lamp": { - "protocol_id": 658 + "protocol_id": 679 }, "minecraft:redstone_ore": { - "protocol_id": 57 + "protocol_id": 70 }, "minecraft:redstone_torch": { - "protocol_id": 636 + "protocol_id": 657 }, "minecraft:reinforced_deepslate": { - "protocol_id": 329 + "protocol_id": 350 }, "minecraft:repeater": { - "protocol_id": 638 + "protocol_id": 659 }, "minecraft:repeating_command_block": { - "protocol_id": 492 + "protocol_id": 513 }, "minecraft:respawn_anchor": { - "protocol_id": 1189 + "protocol_id": 1228 }, "minecraft:rib_armor_trim_smithing_template": { - "protocol_id": 1228 + "protocol_id": 1267 }, "minecraft:rooted_dirt": { - "protocol_id": 18 + "protocol_id": 31 }, "minecraft:rose_bush": { - "protocol_id": 445 + "protocol_id": 466 }, "minecraft:rotten_flesh": { - "protocol_id": 951 + "protocol_id": 989 }, "minecraft:saddle": { - "protocol_id": 727 + "protocol_id": 764 }, "minecraft:salmon": { - "protocol_id": 896 + "protocol_id": 933 }, "minecraft:salmon_bucket": { - "protocol_id": 876 + "protocol_id": 913 }, "minecraft:salmon_spawn_egg": { - "protocol_id": 1013 + "protocol_id": 1052 }, "minecraft:sand": { - "protocol_id": 44 + "protocol_id": 57 }, "minecraft:sandstone": { - "protocol_id": 169 + "protocol_id": 190 }, "minecraft:sandstone_slab": { - "protocol_id": 244 + "protocol_id": 265 }, "minecraft:sandstone_stairs": { - "protocol_id": 358 + "protocol_id": 379 }, "minecraft:sandstone_wall": { - "protocol_id": 387 + "protocol_id": 408 }, "minecraft:scaffolding": { - "protocol_id": 634 + "protocol_id": 655 }, "minecraft:sculk": { - "protocol_id": 349 + "protocol_id": 370 }, "minecraft:sculk_catalyst": { - "protocol_id": 351 + "protocol_id": 372 }, "minecraft:sculk_sensor": { - "protocol_id": 653 + "protocol_id": 674 }, "minecraft:sculk_shrieker": { - "protocol_id": 352 + "protocol_id": 373 }, "minecraft:sculk_vein": { - "protocol_id": 350 + "protocol_id": 371 }, "minecraft:scute": { - "protocol_id": 757 + "protocol_id": 794 }, "minecraft:sea_lantern": { - "protocol_id": 487 + "protocol_id": 508 }, "minecraft:sea_pickle": { - "protocol_id": 179 + "protocol_id": 200 }, "minecraft:seagrass": { - "protocol_id": 178 + "protocol_id": 199 }, "minecraft:sentry_armor_trim_smithing_template": { - "protocol_id": 1219 + "protocol_id": 1258 }, "minecraft:shaper_armor_trim_smithing_template": { - "protocol_id": 1231 + "protocol_id": 1270 }, "minecraft:sheaf_pottery_sherd": { - "protocol_id": 1251 + "protocol_id": 1290 }, "minecraft:shears": { - "protocol_id": 942 + "protocol_id": 980 }, "minecraft:sheep_spawn_egg": { - "protocol_id": 1014 + "protocol_id": 1053 }, "minecraft:shelter_pottery_sherd": { - "protocol_id": 1252 + "protocol_id": 1291 }, "minecraft:shield": { - "protocol_id": 1116 + "protocol_id": 1155 + }, + "minecraft:short_grass": { + "protocol_id": 194 }, "minecraft:shroomlight": { - "protocol_id": 1169 + "protocol_id": 1208 }, "minecraft:shulker_box": { - "protocol_id": 500 + "protocol_id": 521 }, "minecraft:shulker_shell": { - "protocol_id": 1118 + "protocol_id": 1157 }, "minecraft:shulker_spawn_egg": { - "protocol_id": 1015 + "protocol_id": 1054 }, "minecraft:silence_armor_trim_smithing_template": { - "protocol_id": 1232 + "protocol_id": 1271 }, "minecraft:silverfish_spawn_egg": { - "protocol_id": 1016 + "protocol_id": 1055 }, "minecraft:skeleton_horse_spawn_egg": { - "protocol_id": 1018 + "protocol_id": 1057 }, "minecraft:skeleton_skull": { - "protocol_id": 1057 + "protocol_id": 1096 }, "minecraft:skeleton_spawn_egg": { - "protocol_id": 1017 + "protocol_id": 1056 }, "minecraft:skull_banner_pattern": { - "protocol_id": 1148 + "protocol_id": 1187 }, "minecraft:skull_pottery_sherd": { - "protocol_id": 1253 + "protocol_id": 1292 }, "minecraft:slime_ball": { - "protocol_id": 886 + "protocol_id": 923 }, "minecraft:slime_block": { - "protocol_id": 642 + "protocol_id": 663 }, "minecraft:slime_spawn_egg": { - "protocol_id": 1019 + "protocol_id": 1058 }, "minecraft:small_amethyst_bud": { - "protocol_id": 1207 + "protocol_id": 1246 }, "minecraft:small_dripleaf": { - "protocol_id": 228 + "protocol_id": 249 }, "minecraft:smithing_table": { - "protocol_id": 1160 + "protocol_id": 1199 }, "minecraft:smoker": { - "protocol_id": 1155 + "protocol_id": 1194 }, "minecraft:smooth_basalt": { - "protocol_id": 308 + "protocol_id": 329 }, "minecraft:smooth_quartz": { - "protocol_id": 259 + "protocol_id": 280 }, "minecraft:smooth_quartz_slab": { - "protocol_id": 624 + "protocol_id": 645 }, "minecraft:smooth_quartz_stairs": { - "protocol_id": 607 + "protocol_id": 628 }, "minecraft:smooth_red_sandstone": { - "protocol_id": 260 + "protocol_id": 281 }, "minecraft:smooth_red_sandstone_slab": { - "protocol_id": 618 + "protocol_id": 639 }, "minecraft:smooth_red_sandstone_stairs": { - "protocol_id": 600 + "protocol_id": 621 }, "minecraft:smooth_sandstone": { - "protocol_id": 261 + "protocol_id": 282 }, "minecraft:smooth_sandstone_slab": { - "protocol_id": 623 + "protocol_id": 644 }, "minecraft:smooth_sandstone_stairs": { - "protocol_id": 606 + "protocol_id": 627 }, "minecraft:smooth_stone": { - "protocol_id": 262 + "protocol_id": 283 }, "minecraft:smooth_stone_slab": { - "protocol_id": 243 + "protocol_id": 264 }, "minecraft:sniffer_egg": { - "protocol_id": 566 + "protocol_id": 587 }, "minecraft:sniffer_spawn_egg": { - "protocol_id": 1020 + "protocol_id": 1059 }, "minecraft:snort_pottery_sherd": { - "protocol_id": 1254 + "protocol_id": 1293 }, "minecraft:snout_armor_trim_smithing_template": { - "protocol_id": 1227 + "protocol_id": 1266 }, "minecraft:snow": { - "protocol_id": 283 + "protocol_id": 304 }, "minecraft:snow_block": { - "protocol_id": 285 + "protocol_id": 306 }, "minecraft:snow_golem_spawn_egg": { - "protocol_id": 1021 + "protocol_id": 1060 }, "minecraft:snowball": { - "protocol_id": 872 + "protocol_id": 909 }, "minecraft:soul_campfire": { - "protocol_id": 1168 + "protocol_id": 1207 }, "minecraft:soul_lantern": { - "protocol_id": 1164 + "protocol_id": 1203 }, "minecraft:soul_sand": { - "protocol_id": 304 + "protocol_id": 325 }, "minecraft:soul_soil": { - "protocol_id": 305 + "protocol_id": 326 }, "minecraft:soul_torch": { - "protocol_id": 309 + "protocol_id": 330 }, "minecraft:spawner": { - "protocol_id": 276 + "protocol_id": 297 }, "minecraft:spectral_arrow": { - "protocol_id": 1113 + "protocol_id": 1152 }, "minecraft:spider_eye": { - "protocol_id": 959 + "protocol_id": 997 }, "minecraft:spider_spawn_egg": { - "protocol_id": 1022 + "protocol_id": 1061 }, "minecraft:spire_armor_trim_smithing_template": { - "protocol_id": 1229 + "protocol_id": 1268 }, "minecraft:splash_potion": { - "protocol_id": 1112 + "protocol_id": 1151 }, "minecraft:sponge": { - "protocol_id": 164 + "protocol_id": 185 }, "minecraft:spore_blossom": { - "protocol_id": 211 + "protocol_id": 232 }, "minecraft:spruce_boat": { - "protocol_id": 738 + "protocol_id": 775 }, "minecraft:spruce_button": { - "protocol_id": 663 + "protocol_id": 684 }, "minecraft:spruce_chest_boat": { - "protocol_id": 739 + "protocol_id": 776 }, "minecraft:spruce_door": { - "protocol_id": 690 + "protocol_id": 711 }, "minecraft:spruce_fence": { - "protocol_id": 290 + "protocol_id": 311 }, "minecraft:spruce_fence_gate": { - "protocol_id": 713 + "protocol_id": 750 }, "minecraft:spruce_hanging_sign": { - "protocol_id": 858 + "protocol_id": 895 }, "minecraft:spruce_leaves": { - "protocol_id": 155 + "protocol_id": 176 }, "minecraft:spruce_log": { - "protocol_id": 111 + "protocol_id": 132 }, "minecraft:spruce_planks": { - "protocol_id": 24 + "protocol_id": 37 }, "minecraft:spruce_pressure_plate": { - "protocol_id": 678 + "protocol_id": 699 }, "minecraft:spruce_sapling": { - "protocol_id": 36 + "protocol_id": 49 }, "minecraft:spruce_sign": { - "protocol_id": 847 + "protocol_id": 884 }, "minecraft:spruce_slab": { - "protocol_id": 231 + "protocol_id": 252 }, "minecraft:spruce_stairs": { - "protocol_id": 362 + "protocol_id": 383 }, "minecraft:spruce_trapdoor": { - "protocol_id": 702 + "protocol_id": 731 }, "minecraft:spruce_wood": { - "protocol_id": 145 + "protocol_id": 166 }, "minecraft:spyglass": { - "protocol_id": 893 + "protocol_id": 930 }, "minecraft:squid_spawn_egg": { - "protocol_id": 1023 + "protocol_id": 1062 }, "minecraft:stick": { - "protocol_id": 807 + "protocol_id": 844 }, "minecraft:sticky_piston": { - "protocol_id": 641 + "protocol_id": 662 }, "minecraft:stone": { "protocol_id": 1 }, "minecraft:stone_axe": { - "protocol_id": 785 + "protocol_id": 822 }, "minecraft:stone_brick_slab": { - "protocol_id": 249 + "protocol_id": 270 }, "minecraft:stone_brick_stairs": { - "protocol_id": 340 + "protocol_id": 361 }, "minecraft:stone_brick_wall": { - "protocol_id": 382 + "protocol_id": 403 }, "minecraft:stone_bricks": { - "protocol_id": 318 + "protocol_id": 339 }, "minecraft:stone_button": { - "protocol_id": 660 + "protocol_id": 681 }, "minecraft:stone_hoe": { - "protocol_id": 786 + "protocol_id": 823 }, "minecraft:stone_pickaxe": { - "protocol_id": 784 + "protocol_id": 821 }, "minecraft:stone_pressure_plate": { - "protocol_id": 673 + "protocol_id": 694 }, "minecraft:stone_shovel": { - "protocol_id": 783 + "protocol_id": 820 }, "minecraft:stone_slab": { - "protocol_id": 242 + "protocol_id": 263 }, "minecraft:stone_stairs": { - "protocol_id": 605 + "protocol_id": 626 }, "minecraft:stone_sword": { - "protocol_id": 782 + "protocol_id": 819 }, "minecraft:stonecutter": { - "protocol_id": 1161 + "protocol_id": 1200 }, "minecraft:stray_spawn_egg": { - "protocol_id": 1024 + "protocol_id": 1063 }, "minecraft:strider_spawn_egg": { - "protocol_id": 1025 + "protocol_id": 1064 }, "minecraft:string": { - "protocol_id": 810 + "protocol_id": 847 }, "minecraft:stripped_acacia_log": { - "protocol_id": 127 + "protocol_id": 148 }, "minecraft:stripped_acacia_wood": { - "protocol_id": 137 + "protocol_id": 158 }, "minecraft:stripped_bamboo_block": { - "protocol_id": 143 + "protocol_id": 164 }, "minecraft:stripped_birch_log": { - "protocol_id": 125 + "protocol_id": 146 }, "minecraft:stripped_birch_wood": { - "protocol_id": 135 + "protocol_id": 156 }, "minecraft:stripped_cherry_log": { - "protocol_id": 128 + "protocol_id": 149 }, "minecraft:stripped_cherry_wood": { - "protocol_id": 138 + "protocol_id": 159 }, "minecraft:stripped_crimson_hyphae": { - "protocol_id": 141 + "protocol_id": 162 }, "minecraft:stripped_crimson_stem": { - "protocol_id": 131 + "protocol_id": 152 }, "minecraft:stripped_dark_oak_log": { - "protocol_id": 129 + "protocol_id": 150 }, "minecraft:stripped_dark_oak_wood": { - "protocol_id": 139 + "protocol_id": 160 }, "minecraft:stripped_jungle_log": { - "protocol_id": 126 + "protocol_id": 147 }, "minecraft:stripped_jungle_wood": { - "protocol_id": 136 + "protocol_id": 157 }, "minecraft:stripped_mangrove_log": { - "protocol_id": 130 + "protocol_id": 151 }, "minecraft:stripped_mangrove_wood": { - "protocol_id": 140 + "protocol_id": 161 }, "minecraft:stripped_oak_log": { - "protocol_id": 123 + "protocol_id": 144 }, "minecraft:stripped_oak_wood": { - "protocol_id": 133 + "protocol_id": 154 }, "minecraft:stripped_spruce_log": { - "protocol_id": 124 + "protocol_id": 145 }, "minecraft:stripped_spruce_wood": { - "protocol_id": 134 + "protocol_id": 155 }, "minecraft:stripped_warped_hyphae": { - "protocol_id": 142 + "protocol_id": 163 }, "minecraft:stripped_warped_stem": { - "protocol_id": 132 + "protocol_id": 153 }, "minecraft:structure_block": { - "protocol_id": 754 + "protocol_id": 791 }, "minecraft:structure_void": { - "protocol_id": 499 + "protocol_id": 520 }, "minecraft:sugar": { - "protocol_id": 922 + "protocol_id": 959 }, "minecraft:sugar_cane": { - "protocol_id": 221 + "protocol_id": 242 }, "minecraft:sunflower": { - "protocol_id": 443 + "protocol_id": 464 }, "minecraft:suspicious_gravel": { - "protocol_id": 46 + "protocol_id": 59 }, "minecraft:suspicious_sand": { - "protocol_id": 45 + "protocol_id": 58 }, "minecraft:suspicious_stew": { - "protocol_id": 1144 + "protocol_id": 1183 }, "minecraft:sweet_berries": { - "protocol_id": 1165 + "protocol_id": 1204 }, "minecraft:tadpole_bucket": { - "protocol_id": 880 + "protocol_id": 917 }, "minecraft:tadpole_spawn_egg": { - "protocol_id": 1026 + "protocol_id": 1065 }, "minecraft:tall_grass": { - "protocol_id": 447 + "protocol_id": 468 }, "minecraft:target": { - "protocol_id": 649 + "protocol_id": 670 }, "minecraft:terracotta": { - "protocol_id": 440 + "protocol_id": 461 }, "minecraft:tide_armor_trim_smithing_template": { - "protocol_id": 1226 + "protocol_id": 1265 }, "minecraft:tinted_glass": { - "protocol_id": 167 + "protocol_id": 188 }, "minecraft:tipped_arrow": { - "protocol_id": 1114 + "protocol_id": 1153 }, "minecraft:tnt": { - "protocol_id": 657 + "protocol_id": 678 }, "minecraft:tnt_minecart": { - "protocol_id": 731 + "protocol_id": 768 }, "minecraft:torch": { - "protocol_id": 269 + "protocol_id": 290 }, "minecraft:torchflower": { - "protocol_id": 209 + "protocol_id": 230 }, "minecraft:torchflower_seeds": { - "protocol_id": 1106 + "protocol_id": 1145 }, "minecraft:totem_of_undying": { - "protocol_id": 1117 + "protocol_id": 1156 }, "minecraft:trader_llama_spawn_egg": { - "protocol_id": 1027 + "protocol_id": 1066 }, "minecraft:trapped_chest": { - "protocol_id": 656 + "protocol_id": 677 + }, + "minecraft:trial_key": { + "protocol_id": 1311 + }, + "minecraft:trial_spawner": { + "protocol_id": 1310 }, "minecraft:trident": { - "protocol_id": 1139 + "protocol_id": 1178 }, "minecraft:tripwire_hook": { - "protocol_id": 655 + "protocol_id": 676 }, "minecraft:tropical_fish": { - "protocol_id": 897 + "protocol_id": 934 }, "minecraft:tropical_fish_bucket": { - "protocol_id": 878 + "protocol_id": 915 }, "minecraft:tropical_fish_spawn_egg": { - "protocol_id": 1028 + "protocol_id": 1067 }, "minecraft:tube_coral": { - "protocol_id": 577 + "protocol_id": 598 }, "minecraft:tube_coral_block": { - "protocol_id": 572 + "protocol_id": 593 }, "minecraft:tube_coral_fan": { - "protocol_id": 587 + "protocol_id": 608 }, "minecraft:tuff": { "protocol_id": 12 }, + "minecraft:tuff_brick_slab": { + "protocol_id": 22 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 23 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 24 + }, + "minecraft:tuff_bricks": { + "protocol_id": 21 + }, + "minecraft:tuff_slab": { + "protocol_id": 13 + }, + "minecraft:tuff_stairs": { + "protocol_id": 14 + }, + "minecraft:tuff_wall": { + "protocol_id": 15 + }, "minecraft:turtle_egg": { - "protocol_id": 565 + "protocol_id": 586 }, "minecraft:turtle_helmet": { - "protocol_id": 756 + "protocol_id": 793 }, "minecraft:turtle_spawn_egg": { - "protocol_id": 1029 + "protocol_id": 1068 }, "minecraft:twisting_vines": { - "protocol_id": 220 + "protocol_id": 241 }, "minecraft:verdant_froglight": { - "protocol_id": 1213 + "protocol_id": 1252 }, "minecraft:vex_armor_trim_smithing_template": { - "protocol_id": 1225 + "protocol_id": 1264 }, "minecraft:vex_spawn_egg": { - "protocol_id": 1030 + "protocol_id": 1069 }, "minecraft:villager_spawn_egg": { - "protocol_id": 1031 + "protocol_id": 1070 }, "minecraft:vindicator_spawn_egg": { - "protocol_id": 1032 + "protocol_id": 1071 }, "minecraft:vine": { - "protocol_id": 337 + "protocol_id": 358 }, "minecraft:wandering_trader_spawn_egg": { - "protocol_id": 1033 + "protocol_id": 1072 }, "minecraft:ward_armor_trim_smithing_template": { - "protocol_id": 1223 + "protocol_id": 1262 }, "minecraft:warden_spawn_egg": { - "protocol_id": 1034 + "protocol_id": 1073 }, "minecraft:warped_button": { - "protocol_id": 672 + "protocol_id": 693 }, "minecraft:warped_door": { - "protocol_id": 699 + "protocol_id": 720 }, "minecraft:warped_fence": { - "protocol_id": 299 + "protocol_id": 320 }, "minecraft:warped_fence_gate": { - "protocol_id": 722 + "protocol_id": 759 }, "minecraft:warped_fungus": { - "protocol_id": 215 + "protocol_id": 236 }, "minecraft:warped_fungus_on_a_stick": { - "protocol_id": 734 + "protocol_id": 771 }, "minecraft:warped_hanging_sign": { - "protocol_id": 867 + "protocol_id": 904 }, "minecraft:warped_hyphae": { - "protocol_id": 153 + "protocol_id": 174 }, "minecraft:warped_nylium": { - "protocol_id": 21 + "protocol_id": 34 }, "minecraft:warped_planks": { - "protocol_id": 33 + "protocol_id": 46 }, "minecraft:warped_pressure_plate": { - "protocol_id": 687 + "protocol_id": 708 }, "minecraft:warped_roots": { - "protocol_id": 217 + "protocol_id": 238 }, "minecraft:warped_sign": { - "protocol_id": 856 + "protocol_id": 893 }, "minecraft:warped_slab": { - "protocol_id": 241 + "protocol_id": 262 }, "minecraft:warped_stairs": { - "protocol_id": 372 + "protocol_id": 393 }, "minecraft:warped_stem": { - "protocol_id": 121 + "protocol_id": 142 }, "minecraft:warped_trapdoor": { - "protocol_id": 711 + "protocol_id": 740 }, "minecraft:warped_wart_block": { - "protocol_id": 496 + "protocol_id": 517 }, "minecraft:water_bucket": { - "protocol_id": 869 + "protocol_id": 906 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 115 }, "minecraft:waxed_copper_block": { - "protocol_id": 94 + "protocol_id": 111 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1306 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 725 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1298 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 745 }, "minecraft:waxed_cut_copper": { - "protocol_id": 98 + "protocol_id": 119 }, "minecraft:waxed_cut_copper_slab": { - "protocol_id": 106 + "protocol_id": 127 }, "minecraft:waxed_cut_copper_stairs": { - "protocol_id": 102 + "protocol_id": 123 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 116 }, "minecraft:waxed_exposed_copper": { - "protocol_id": 95 + "protocol_id": 112 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1307 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 726 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1299 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 746 }, "minecraft:waxed_exposed_cut_copper": { - "protocol_id": 99 + "protocol_id": 120 }, "minecraft:waxed_exposed_cut_copper_slab": { - "protocol_id": 107 + "protocol_id": 128 }, "minecraft:waxed_exposed_cut_copper_stairs": { - "protocol_id": 103 + "protocol_id": 124 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 118 }, "minecraft:waxed_oxidized_copper": { - "protocol_id": 97 + "protocol_id": 114 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1309 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 728 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1301 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 748 }, "minecraft:waxed_oxidized_cut_copper": { - "protocol_id": 101 + "protocol_id": 122 }, "minecraft:waxed_oxidized_cut_copper_slab": { - "protocol_id": 109 + "protocol_id": 130 }, "minecraft:waxed_oxidized_cut_copper_stairs": { - "protocol_id": 105 + "protocol_id": 126 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 117 }, "minecraft:waxed_weathered_copper": { - "protocol_id": 96 + "protocol_id": 113 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1308 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 727 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1300 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 747 }, "minecraft:waxed_weathered_cut_copper": { - "protocol_id": 100 + "protocol_id": 121 }, "minecraft:waxed_weathered_cut_copper_slab": { - "protocol_id": 108 + "protocol_id": 129 }, "minecraft:waxed_weathered_cut_copper_stairs": { - "protocol_id": 104 + "protocol_id": 125 }, "minecraft:wayfinder_armor_trim_smithing_template": { - "protocol_id": 1230 + "protocol_id": 1269 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 97 }, "minecraft:weathered_copper": { - "protocol_id": 80 + "protocol_id": 93 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1304 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 723 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1296 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 743 }, "minecraft:weathered_cut_copper": { - "protocol_id": 84 + "protocol_id": 101 }, "minecraft:weathered_cut_copper_slab": { - "protocol_id": 92 + "protocol_id": 109 }, "minecraft:weathered_cut_copper_stairs": { - "protocol_id": 88 + "protocol_id": 105 }, "minecraft:weeping_vines": { - "protocol_id": 219 + "protocol_id": 240 }, "minecraft:wet_sponge": { - "protocol_id": 165 + "protocol_id": 186 }, "minecraft:wheat": { - "protocol_id": 814 + "protocol_id": 851 }, "minecraft:wheat_seeds": { - "protocol_id": 813 + "protocol_id": 850 }, "minecraft:white_banner": { - "protocol_id": 1087 + "protocol_id": 1126 }, "minecraft:white_bed": { - "protocol_id": 924 + "protocol_id": 961 }, "minecraft:white_candle": { - "protocol_id": 1191 + "protocol_id": 1230 }, "minecraft:white_carpet": { - "protocol_id": 424 + "protocol_id": 445 }, "minecraft:white_concrete": { - "protocol_id": 533 + "protocol_id": 554 }, "minecraft:white_concrete_powder": { - "protocol_id": 549 + "protocol_id": 570 }, "minecraft:white_dye": { - "protocol_id": 904 + "protocol_id": 941 }, "minecraft:white_glazed_terracotta": { - "protocol_id": 517 + "protocol_id": 538 }, "minecraft:white_shulker_box": { - "protocol_id": 501 + "protocol_id": 522 }, "minecraft:white_stained_glass": { - "protocol_id": 449 + "protocol_id": 470 }, "minecraft:white_stained_glass_pane": { - "protocol_id": 465 + "protocol_id": 486 }, "minecraft:white_terracotta": { - "protocol_id": 405 + "protocol_id": 426 }, "minecraft:white_tulip": { - "protocol_id": 203 + "protocol_id": 224 }, "minecraft:white_wool": { - "protocol_id": 180 + "protocol_id": 201 }, "minecraft:wild_armor_trim_smithing_template": { - "protocol_id": 1222 + "protocol_id": 1261 }, "minecraft:witch_spawn_egg": { - "protocol_id": 1035 + "protocol_id": 1074 }, "minecraft:wither_rose": { - "protocol_id": 208 + "protocol_id": 229 }, "minecraft:wither_skeleton_skull": { - "protocol_id": 1058 + "protocol_id": 1097 }, "minecraft:wither_skeleton_spawn_egg": { - "protocol_id": 1037 + "protocol_id": 1076 }, "minecraft:wither_spawn_egg": { - "protocol_id": 1036 + "protocol_id": 1075 }, "minecraft:wolf_spawn_egg": { - "protocol_id": 1038 + "protocol_id": 1077 }, "minecraft:wooden_axe": { - "protocol_id": 780 + "protocol_id": 817 }, "minecraft:wooden_hoe": { - "protocol_id": 781 + "protocol_id": 818 }, "minecraft:wooden_pickaxe": { - "protocol_id": 779 + "protocol_id": 816 }, "minecraft:wooden_shovel": { - "protocol_id": 778 + "protocol_id": 815 }, "minecraft:wooden_sword": { - "protocol_id": 777 + "protocol_id": 814 }, "minecraft:writable_book": { - "protocol_id": 1046 + "protocol_id": 1085 }, "minecraft:written_book": { - "protocol_id": 1047 + "protocol_id": 1086 }, "minecraft:yellow_banner": { - "protocol_id": 1091 + "protocol_id": 1130 }, "minecraft:yellow_bed": { - "protocol_id": 928 + "protocol_id": 965 }, "minecraft:yellow_candle": { - "protocol_id": 1195 + "protocol_id": 1234 }, "minecraft:yellow_carpet": { - "protocol_id": 428 + "protocol_id": 449 }, "minecraft:yellow_concrete": { - "protocol_id": 537 + "protocol_id": 558 }, "minecraft:yellow_concrete_powder": { - "protocol_id": 553 + "protocol_id": 574 }, "minecraft:yellow_dye": { - "protocol_id": 908 + "protocol_id": 945 }, "minecraft:yellow_glazed_terracotta": { - "protocol_id": 521 + "protocol_id": 542 }, "minecraft:yellow_shulker_box": { - "protocol_id": 505 + "protocol_id": 526 }, "minecraft:yellow_stained_glass": { - "protocol_id": 453 + "protocol_id": 474 }, "minecraft:yellow_stained_glass_pane": { - "protocol_id": 469 + "protocol_id": 490 }, "minecraft:yellow_terracotta": { - "protocol_id": 409 + "protocol_id": 430 }, "minecraft:yellow_wool": { - "protocol_id": 184 + "protocol_id": 205 }, "minecraft:zoglin_spawn_egg": { - "protocol_id": 1039 + "protocol_id": 1078 }, "minecraft:zombie_head": { - "protocol_id": 1060 + "protocol_id": 1099 }, "minecraft:zombie_horse_spawn_egg": { - "protocol_id": 1041 + "protocol_id": 1080 }, "minecraft:zombie_spawn_egg": { - "protocol_id": 1040 + "protocol_id": 1079 }, "minecraft:zombie_villager_spawn_egg": { - "protocol_id": 1042 + "protocol_id": 1081 }, "minecraft:zombified_piglin_spawn_egg": { - "protocol_id": 1043 + "protocol_id": 1082 } } diff --git a/Obsidian/Assets/recipes.json b/Obsidian/Assets/recipes.json index e0b39ee14..f21aea02b 100644 --- a/Obsidian/Assets/recipes.json +++ b/Obsidian/Assets/recipes.json @@ -18,7 +18,6 @@ "item": "minecraft:acacia_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_button": { @@ -74,7 +73,6 @@ "item": "minecraft:acacia_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_fence": { @@ -101,7 +99,6 @@ "item": "minecraft:acacia_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_fence_gate": { @@ -128,7 +125,6 @@ "item": "minecraft:acacia_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_hanging_sign": { @@ -156,7 +152,6 @@ "item": "minecraft:acacia_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_planks": { @@ -192,7 +187,6 @@ "item": "minecraft:acacia_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_sign": { @@ -220,7 +214,6 @@ "item": "minecraft:acacia_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_slab": { @@ -241,7 +234,6 @@ "item": "minecraft:acacia_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_stairs": { @@ -264,7 +256,6 @@ "item": "minecraft:acacia_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_trapdoor": { @@ -286,7 +277,6 @@ "item": "minecraft:acacia_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "acacia_wood": { @@ -308,7 +298,6 @@ "item": "minecraft:acacia_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "activator_rail": { @@ -340,7 +329,6 @@ "item": "minecraft:activator_rail", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "amethyst_block": { @@ -361,7 +349,6 @@ "item": "minecraft:amethyst_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "andesite": { @@ -398,7 +385,6 @@ "item": "minecraft:andesite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "andesite_slab_from_andesite_stonecutting": { @@ -430,7 +416,6 @@ "item": "minecraft:andesite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "andesite_stairs_from_andesite_stonecutting": { @@ -461,7 +446,6 @@ "item": "minecraft:andesite_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "andesite_wall_from_andesite_stonecutting": { @@ -498,7 +482,6 @@ "item": "minecraft:anvil", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "armor_dye": { @@ -529,7 +512,6 @@ "item": "minecraft:armor_stand", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "arrow": { @@ -561,7 +543,6 @@ "item": "minecraft:arrow", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "baked_potato": { @@ -691,7 +672,6 @@ "item": "minecraft:bamboo_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_fence": { @@ -718,7 +698,6 @@ "item": "minecraft:bamboo_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_fence_gate": { @@ -745,7 +724,6 @@ "item": "minecraft:bamboo_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_hanging_sign": { @@ -773,7 +751,6 @@ "item": "minecraft:bamboo_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_mosaic": { @@ -794,7 +771,6 @@ "item": "minecraft:bamboo_mosaic", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_mosaic_slab": { @@ -814,7 +790,6 @@ "item": "minecraft:bamboo_mosaic_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_mosaic_stairs": { @@ -836,7 +811,6 @@ "item": "minecraft:bamboo_mosaic_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_planks": { @@ -872,7 +846,6 @@ "item": "minecraft:bamboo_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_raft": { @@ -894,7 +867,6 @@ "item": "minecraft:bamboo_raft", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_sign": { @@ -922,7 +894,6 @@ "item": "minecraft:bamboo_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_slab": { @@ -943,7 +914,6 @@ "item": "minecraft:bamboo_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_stairs": { @@ -966,7 +936,6 @@ "item": "minecraft:bamboo_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bamboo_trapdoor": { @@ -988,7 +957,6 @@ "item": "minecraft:bamboo_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "banner_duplicate": { @@ -1017,7 +985,6 @@ "item": "minecraft:barrel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "beacon": { @@ -1049,7 +1016,6 @@ "item": "minecraft:beacon", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "beehive": { @@ -1075,7 +1041,6 @@ "item": "minecraft:beehive", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "beetroot_soup": { @@ -1129,7 +1094,6 @@ "item": "minecraft:birch_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_button": { @@ -1185,7 +1149,6 @@ "item": "minecraft:birch_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_fence": { @@ -1212,7 +1175,6 @@ "item": "minecraft:birch_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_fence_gate": { @@ -1239,7 +1201,6 @@ "item": "minecraft:birch_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_hanging_sign": { @@ -1267,7 +1228,6 @@ "item": "minecraft:birch_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_planks": { @@ -1303,7 +1263,6 @@ "item": "minecraft:birch_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_sign": { @@ -1331,7 +1290,6 @@ "item": "minecraft:birch_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_slab": { @@ -1352,7 +1310,6 @@ "item": "minecraft:birch_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_stairs": { @@ -1375,7 +1332,6 @@ "item": "minecraft:birch_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_trapdoor": { @@ -1397,7 +1353,6 @@ "item": "minecraft:birch_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "birch_wood": { @@ -1419,7 +1374,6 @@ "item": "minecraft:birch_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_banner": { @@ -1447,7 +1401,6 @@ "item": "minecraft:black_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_bed": { @@ -1473,7 +1426,6 @@ "item": "minecraft:black_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_candle": { @@ -1512,7 +1464,6 @@ "item": "minecraft:black_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_concrete_powder": { @@ -1621,7 +1572,6 @@ "item": "minecraft:black_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_stained_glass_pane": { @@ -1643,7 +1593,6 @@ "item": "minecraft:black_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_stained_glass_pane_from_glass_pane": { @@ -1671,7 +1620,6 @@ "item": "minecraft:black_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "black_terracotta": { @@ -1699,7 +1647,6 @@ "item": "minecraft:black_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blackstone_slab": { @@ -1719,7 +1666,6 @@ "item": "minecraft:blackstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blackstone_slab_from_blackstone_stonecutting": { @@ -1751,7 +1697,6 @@ "item": "minecraft:blackstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blackstone_stairs_from_blackstone_stonecutting": { @@ -1782,7 +1727,6 @@ "item": "minecraft:blackstone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blackstone_wall_from_blackstone_stonecutting": { @@ -1824,7 +1768,6 @@ "item": "minecraft:blast_furnace", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blaze_powder": { @@ -1866,7 +1809,6 @@ "item": "minecraft:blue_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_bed": { @@ -1892,7 +1834,6 @@ "item": "minecraft:blue_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_candle": { @@ -1931,7 +1872,6 @@ "item": "minecraft:blue_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_concrete_powder": { @@ -2078,7 +2018,6 @@ "item": "minecraft:blue_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_stained_glass_pane": { @@ -2100,7 +2039,6 @@ "item": "minecraft:blue_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_stained_glass_pane_from_glass_pane": { @@ -2128,7 +2066,6 @@ "item": "minecraft:blue_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "blue_terracotta": { @@ -2156,7 +2093,6 @@ "item": "minecraft:blue_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bone_block": { @@ -2178,7 +2114,6 @@ "item": "minecraft:bone_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bone_meal": { @@ -2261,7 +2196,6 @@ "item": "minecraft:bookshelf", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bow": { @@ -2288,7 +2222,6 @@ "item": "minecraft:bow", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bowl": { @@ -2308,7 +2241,6 @@ "item": "minecraft:bowl", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bread": { @@ -2328,7 +2260,6 @@ "item": "minecraft:bread", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brewing_stand": { @@ -2353,7 +2284,6 @@ "item": "minecraft:brewing_stand", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brick": { @@ -2385,7 +2315,6 @@ "item": "minecraft:brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brick_slab_from_bricks_stonecutting": { @@ -2417,7 +2346,6 @@ "item": "minecraft:brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brick_stairs_from_bricks_stonecutting": { @@ -2448,7 +2376,6 @@ "item": "minecraft:brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brick_wall_from_bricks_stonecutting": { @@ -2479,7 +2406,6 @@ "item": "minecraft:bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_banner": { @@ -2507,7 +2433,6 @@ "item": "minecraft:brown_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_bed": { @@ -2533,7 +2458,6 @@ "item": "minecraft:brown_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_candle": { @@ -2572,7 +2496,6 @@ "item": "minecraft:brown_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_concrete_powder": { @@ -2666,7 +2589,6 @@ "item": "minecraft:brown_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_stained_glass_pane": { @@ -2688,7 +2610,6 @@ "item": "minecraft:brown_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_stained_glass_pane_from_glass_pane": { @@ -2716,7 +2637,6 @@ "item": "minecraft:brown_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brown_terracotta": { @@ -2744,7 +2664,6 @@ "item": "minecraft:brown_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "brush": { @@ -2776,7 +2695,6 @@ "item": "minecraft:brush", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "bucket": { @@ -2797,7 +2715,6 @@ "item": "minecraft:bucket", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cake": { @@ -2834,7 +2751,6 @@ "item": "minecraft:cake", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "calibrated_sculk_sensor": { @@ -2860,7 +2776,6 @@ "item": "minecraft:calibrated_sculk_sensor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "campfire": { @@ -2890,7 +2805,6 @@ "item": "minecraft:campfire", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "candle": { @@ -2916,7 +2830,6 @@ "item": "minecraft:candle", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "carrot_on_a_stick": { @@ -2942,7 +2855,6 @@ "item": "minecraft:carrot_on_a_stick", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cartography_table": { @@ -2968,7 +2880,6 @@ "item": "minecraft:cartography_table", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cauldron": { @@ -2990,7 +2901,6 @@ "item": "minecraft:cauldron", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chain": { @@ -3017,7 +2927,6 @@ "item": "minecraft:chain", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "charcoal": { @@ -3050,7 +2959,6 @@ "item": "minecraft:cherry_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_button": { @@ -3106,7 +3014,6 @@ "item": "minecraft:cherry_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_fence": { @@ -3133,7 +3040,6 @@ "item": "minecraft:cherry_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_fence_gate": { @@ -3160,7 +3066,6 @@ "item": "minecraft:cherry_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_hanging_sign": { @@ -3188,7 +3093,6 @@ "item": "minecraft:cherry_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_planks": { @@ -3224,7 +3128,6 @@ "item": "minecraft:cherry_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_sign": { @@ -3252,7 +3155,6 @@ "item": "minecraft:cherry_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_slab": { @@ -3273,7 +3175,6 @@ "item": "minecraft:cherry_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_stairs": { @@ -3296,7 +3197,6 @@ "item": "minecraft:cherry_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_trapdoor": { @@ -3318,7 +3218,6 @@ "item": "minecraft:cherry_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cherry_wood": { @@ -3340,7 +3239,6 @@ "item": "minecraft:cherry_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chest": { @@ -3361,7 +3259,6 @@ "item": "minecraft:chest", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chest_minecart": { @@ -3403,7 +3300,6 @@ "item": "minecraft:chiseled_bookshelf", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_deepslate": { @@ -3424,7 +3320,6 @@ "item": "minecraft:chiseled_deepslate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_deepslate_from_cobbled_deepslate_stonecutting": { @@ -3455,7 +3350,6 @@ "item": "minecraft:chiseled_nether_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_nether_bricks_from_nether_bricks_stonecutting": { @@ -3486,7 +3380,6 @@ "item": "minecraft:chiseled_polished_blackstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_polished_blackstone_from_blackstone_stonecutting": { @@ -3527,7 +3420,6 @@ "item": "minecraft:chiseled_quartz_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_quartz_block_from_quartz_block_stonecutting": { @@ -3558,7 +3450,6 @@ "item": "minecraft:chiseled_red_sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_red_sandstone_from_red_sandstone_stonecutting": { @@ -3589,7 +3480,6 @@ "item": "minecraft:chiseled_sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_sandstone_from_sandstone_stonecutting": { @@ -3620,7 +3510,6 @@ "item": "minecraft:chiseled_stone_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "chiseled_stone_bricks_from_stone_bricks_stonecutting": { @@ -3661,7 +3550,6 @@ "item": "minecraft:clay", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "clock": { @@ -3688,7 +3576,6 @@ "item": "minecraft:clock", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "coal": { @@ -3724,7 +3611,6 @@ "item": "minecraft:coal_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "coal_from_blasting_coal_ore": { @@ -3802,7 +3688,6 @@ "item": "minecraft:coarse_dirt", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "coast_armor_trim_smithing_template": { @@ -3834,7 +3719,6 @@ "item": "minecraft:coast_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "coast_armor_trim_smithing_template_smithing_trim": { @@ -3866,7 +3750,6 @@ "item": "minecraft:cobbled_deepslate_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting": { @@ -3898,7 +3781,6 @@ "item": "minecraft:cobbled_deepslate_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting": { @@ -3929,7 +3811,6 @@ "item": "minecraft:cobbled_deepslate_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting": { @@ -3959,7 +3840,6 @@ "item": "minecraft:cobblestone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobblestone_slab_from_cobblestone_stonecutting": { @@ -3991,7 +3871,6 @@ "item": "minecraft:cobblestone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobblestone_stairs_from_cobblestone_stonecutting": { @@ -4022,7 +3901,6 @@ "item": "minecraft:cobblestone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cobblestone_wall_from_cobblestone_stonecutting": { @@ -4064,7 +3942,6 @@ "item": "minecraft:comparator", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "compass": { @@ -4091,7 +3968,6 @@ "item": "minecraft:compass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "composter": { @@ -4112,7 +3988,6 @@ "item": "minecraft:composter", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "conduit": { @@ -4139,7 +4014,6 @@ "item": "minecraft:conduit", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cooked_beef": { @@ -4416,7 +4290,6 @@ "item": "minecraft:cookie", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "copper_block": { @@ -4438,7 +4311,6 @@ "item": "minecraft:copper_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "copper_ingot": { @@ -4681,7 +4553,6 @@ "item": "minecraft:crimson_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_fence": { @@ -4708,7 +4579,6 @@ "item": "minecraft:crimson_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_fence_gate": { @@ -4735,7 +4605,6 @@ "item": "minecraft:crimson_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_hanging_sign": { @@ -4763,7 +4632,6 @@ "item": "minecraft:crimson_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_hyphae": { @@ -4785,7 +4653,6 @@ "item": "minecraft:crimson_hyphae", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_planks": { @@ -4821,7 +4688,6 @@ "item": "minecraft:crimson_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_sign": { @@ -4849,7 +4715,6 @@ "item": "minecraft:crimson_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_slab": { @@ -4870,7 +4735,6 @@ "item": "minecraft:crimson_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_stairs": { @@ -4893,7 +4757,6 @@ "item": "minecraft:crimson_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crimson_trapdoor": { @@ -4915,7 +4778,6 @@ "item": "minecraft:crimson_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "crossbow": { @@ -4952,7 +4814,6 @@ "item": "minecraft:crossbow", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_copper": { @@ -4973,7 +4834,6 @@ "item": "minecraft:cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_copper_from_copper_block_stonecutting": { @@ -5003,7 +4863,6 @@ "item": "minecraft:cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_copper_slab_from_copper_block_stonecutting": { @@ -5045,7 +4904,6 @@ "item": "minecraft:cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_copper_stairs_from_copper_block_stonecutting": { @@ -5086,7 +4944,6 @@ "item": "minecraft:cut_red_sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_red_sandstone_from_red_sandstone_stonecutting": { @@ -5116,7 +4973,6 @@ "item": "minecraft:cut_red_sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting": { @@ -5157,7 +5013,6 @@ "item": "minecraft:cut_sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_sandstone_from_sandstone_stonecutting": { @@ -5187,7 +5042,6 @@ "item": "minecraft:cut_sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cut_sandstone_slab_from_cut_sandstone_stonecutting": { @@ -5235,7 +5089,6 @@ "item": "minecraft:cyan_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_bed": { @@ -5261,7 +5114,6 @@ "item": "minecraft:cyan_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_candle": { @@ -5300,7 +5152,6 @@ "item": "minecraft:cyan_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_concrete_powder": { @@ -5412,7 +5263,6 @@ "item": "minecraft:cyan_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_stained_glass_pane": { @@ -5434,7 +5284,6 @@ "item": "minecraft:cyan_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_stained_glass_pane_from_glass_pane": { @@ -5462,7 +5311,6 @@ "item": "minecraft:cyan_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "cyan_terracotta": { @@ -5490,7 +5338,6 @@ "item": "minecraft:cyan_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_boat": { @@ -5512,7 +5359,6 @@ "item": "minecraft:dark_oak_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_button": { @@ -5568,7 +5414,6 @@ "item": "minecraft:dark_oak_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_fence": { @@ -5595,7 +5440,6 @@ "item": "minecraft:dark_oak_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_fence_gate": { @@ -5622,7 +5466,6 @@ "item": "minecraft:dark_oak_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_hanging_sign": { @@ -5650,7 +5493,6 @@ "item": "minecraft:dark_oak_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_planks": { @@ -5686,7 +5528,6 @@ "item": "minecraft:dark_oak_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_sign": { @@ -5714,7 +5555,6 @@ "item": "minecraft:dark_oak_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_slab": { @@ -5735,7 +5575,6 @@ "item": "minecraft:dark_oak_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_stairs": { @@ -5758,7 +5597,6 @@ "item": "minecraft:dark_oak_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_trapdoor": { @@ -5780,7 +5618,6 @@ "item": "minecraft:dark_oak_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_oak_wood": { @@ -5802,7 +5639,6 @@ "item": "minecraft:dark_oak_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_prismarine": { @@ -5829,7 +5665,6 @@ "item": "minecraft:dark_prismarine", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_prismarine_slab": { @@ -5849,7 +5684,6 @@ "item": "minecraft:dark_prismarine_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_prismarine_slab_from_dark_prismarine_stonecutting": { @@ -5881,7 +5715,6 @@ "item": "minecraft:dark_prismarine_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dark_prismarine_stairs_from_dark_prismarine_stonecutting": { @@ -5922,7 +5755,6 @@ "item": "minecraft:daylight_detector", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "decorated_pot": { @@ -5948,7 +5780,6 @@ "item": "minecraft:decorated_pot", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate": { @@ -5980,7 +5811,6 @@ "item": "minecraft:deepslate_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_brick_slab_from_cobbled_deepslate_stonecutting": { @@ -6032,7 +5862,6 @@ "item": "minecraft:deepslate_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_brick_stairs_from_cobbled_deepslate_stonecutting": { @@ -6083,7 +5912,6 @@ "item": "minecraft:deepslate_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_brick_wall_from_cobbled_deepslate_stonecutting": { @@ -6134,7 +5962,6 @@ "item": "minecraft:deepslate_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_bricks_from_cobbled_deepslate_stonecutting": { @@ -6174,7 +6001,6 @@ "item": "minecraft:deepslate_tile_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_tile_slab_from_cobbled_deepslate_stonecutting": { @@ -6236,7 +6062,6 @@ "item": "minecraft:deepslate_tile_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_tile_stairs_from_cobbled_deepslate_stonecutting": { @@ -6297,7 +6122,6 @@ "item": "minecraft:deepslate_tile_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_tile_wall_from_cobbled_deepslate_stonecutting": { @@ -6358,7 +6182,6 @@ "item": "minecraft:deepslate_tiles", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "deepslate_tiles_from_cobbled_deepslate_stonecutting": { @@ -6420,7 +6243,6 @@ "item": "minecraft:detector_rail", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond": { @@ -6461,7 +6283,6 @@ "item": "minecraft:diamond_axe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_block": { @@ -6483,7 +6304,6 @@ "item": "minecraft:diamond_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_boots": { @@ -6504,7 +6324,6 @@ "item": "minecraft:diamond_boots", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_chestplate": { @@ -6526,7 +6345,6 @@ "item": "minecraft:diamond_chestplate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_from_blasting_deepslate_diamond_ore": { @@ -6599,7 +6417,6 @@ "item": "minecraft:diamond_helmet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_hoe": { @@ -6626,7 +6443,6 @@ "item": "minecraft:diamond_hoe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_leggings": { @@ -6648,7 +6464,6 @@ "item": "minecraft:diamond_leggings", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_pickaxe": { @@ -6675,7 +6490,6 @@ "item": "minecraft:diamond_pickaxe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_shovel": { @@ -6702,7 +6516,6 @@ "item": "minecraft:diamond_shovel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diamond_sword": { @@ -6729,7 +6542,6 @@ "item": "minecraft:diamond_sword", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diorite": { @@ -6755,7 +6567,6 @@ "item": "minecraft:diorite", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diorite_slab": { @@ -6775,7 +6586,6 @@ "item": "minecraft:diorite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diorite_slab_from_diorite_stonecutting": { @@ -6807,7 +6617,6 @@ "item": "minecraft:diorite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diorite_stairs_from_diorite_stonecutting": { @@ -6838,7 +6647,6 @@ "item": "minecraft:diorite_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "diorite_wall_from_diorite_stonecutting": { @@ -6880,7 +6688,6 @@ "item": "minecraft:dispenser", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dried_kelp": { @@ -6916,7 +6723,6 @@ "item": "minecraft:dried_kelp_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dried_kelp_from_campfire_cooking": { @@ -6973,7 +6779,6 @@ "item": "minecraft:dripstone_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dropper": { @@ -7000,7 +6805,6 @@ "item": "minecraft:dropper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dune_armor_trim_smithing_template": { @@ -7032,7 +6836,6 @@ "item": "minecraft:dune_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "dune_armor_trim_smithing_template_smithing_trim": { @@ -10056,7 +9859,6 @@ "item": "minecraft:emerald_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "emerald_from_blasting_deepslate_emerald_ore": { @@ -10140,7 +9942,6 @@ "item": "minecraft:enchanting_table", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_crystal": { @@ -10172,7 +9973,6 @@ "item": "minecraft:end_crystal", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_rod": { @@ -10198,7 +9998,6 @@ "item": "minecraft:end_rod", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_stone_brick_slab": { @@ -10218,7 +10017,6 @@ "item": "minecraft:end_stone_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_stone_brick_slab_from_end_stone_brick_stonecutting": { @@ -10260,7 +10058,6 @@ "item": "minecraft:end_stone_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_stone_brick_stairs_from_end_stone_brick_stonecutting": { @@ -10301,7 +10098,6 @@ "item": "minecraft:end_stone_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_stone_brick_wall_from_end_stone_brick_stonecutting": { @@ -10342,7 +10138,6 @@ "item": "minecraft:end_stone_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "end_stone_bricks_from_end_stone_stonecutting": { @@ -10379,7 +10174,6 @@ "item": "minecraft:ender_chest", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "ender_eye": { @@ -10417,7 +10211,6 @@ "item": "minecraft:exposed_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_from_exposed_copper_stonecutting": { @@ -10447,7 +10240,6 @@ "item": "minecraft:exposed_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_slab_from_exposed_copper_stonecutting": { @@ -10489,7 +10281,6 @@ "item": "minecraft:exposed_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "exposed_cut_copper_stairs_from_exposed_copper_stonecutting": { @@ -10541,7 +10332,6 @@ "item": "minecraft:eye_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "eye_armor_trim_smithing_template_smithing_trim": { @@ -10654,7 +10444,6 @@ "item": "minecraft:fishing_rod", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "fletching_table": { @@ -10680,7 +10469,6 @@ "item": "minecraft:fletching_table", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "flint_and_steel": { @@ -10735,7 +10523,6 @@ "item": "minecraft:flower_pot", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "furnace": { @@ -10756,7 +10543,6 @@ "item": "minecraft:furnace", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "furnace_minecart": { @@ -10805,7 +10591,6 @@ "item": "minecraft:glass_bottle", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "glass_pane": { @@ -10826,7 +10611,6 @@ "item": "minecraft:glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "glistering_melon_slice": { @@ -10853,7 +10637,6 @@ "item": "minecraft:glistering_melon_slice", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "glow_item_frame": { @@ -10891,7 +10674,6 @@ "item": "minecraft:glowstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gold_block": { @@ -10913,7 +10695,6 @@ "item": "minecraft:gold_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gold_ingot_from_blasting_deepslate_gold_ore": { @@ -11003,7 +10784,6 @@ "item": "minecraft:gold_ingot", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gold_ingot_from_smelting_deepslate_gold_ore": { @@ -11214,7 +10994,6 @@ "item": "minecraft:golden_apple", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_axe": { @@ -11241,7 +11020,6 @@ "item": "minecraft:golden_axe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_boots": { @@ -11262,7 +11040,6 @@ "item": "minecraft:golden_boots", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_carrot": { @@ -11289,7 +11066,6 @@ "item": "minecraft:golden_carrot", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_chestplate": { @@ -11311,7 +11087,6 @@ "item": "minecraft:golden_chestplate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_helmet": { @@ -11332,7 +11107,6 @@ "item": "minecraft:golden_helmet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_hoe": { @@ -11359,7 +11133,6 @@ "item": "minecraft:golden_hoe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_leggings": { @@ -11381,7 +11154,6 @@ "item": "minecraft:golden_leggings", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_pickaxe": { @@ -11408,7 +11180,6 @@ "item": "minecraft:golden_pickaxe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_shovel": { @@ -11435,7 +11206,6 @@ "item": "minecraft:golden_shovel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "golden_sword": { @@ -11462,7 +11232,6 @@ "item": "minecraft:golden_sword", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "granite": { @@ -11499,7 +11268,6 @@ "item": "minecraft:granite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "granite_slab_from_granite_stonecutting": { @@ -11531,7 +11299,6 @@ "item": "minecraft:granite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "granite_stairs_from_granite_stonecutting": { @@ -11562,7 +11329,6 @@ "item": "minecraft:granite_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "granite_wall_from_granite_stonecutting": { @@ -11600,7 +11366,6 @@ "item": "minecraft:gray_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_bed": { @@ -11626,7 +11391,6 @@ "item": "minecraft:gray_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_candle": { @@ -11665,7 +11429,6 @@ "item": "minecraft:gray_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_concrete_powder": { @@ -11761,7 +11524,6 @@ "item": "minecraft:gray_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_stained_glass_pane": { @@ -11783,7 +11545,6 @@ "item": "minecraft:gray_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_stained_glass_pane_from_glass_pane": { @@ -11811,7 +11572,6 @@ "item": "minecraft:gray_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "gray_terracotta": { @@ -11839,7 +11599,6 @@ "item": "minecraft:gray_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_banner": { @@ -11867,7 +11626,6 @@ "item": "minecraft:green_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_bed": { @@ -11893,7 +11651,6 @@ "item": "minecraft:green_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_candle": { @@ -11932,7 +11689,6 @@ "item": "minecraft:green_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_concrete_powder": { @@ -12023,7 +11779,6 @@ "item": "minecraft:green_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_stained_glass_pane": { @@ -12045,7 +11800,6 @@ "item": "minecraft:green_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_stained_glass_pane_from_glass_pane": { @@ -12073,7 +11827,6 @@ "item": "minecraft:green_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "green_terracotta": { @@ -12101,7 +11854,6 @@ "item": "minecraft:green_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "grindstone": { @@ -12131,7 +11883,6 @@ "item": "minecraft:grindstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "hay_block": { @@ -12189,7 +11940,6 @@ "item": "minecraft:heavy_weighted_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "honey_block": { @@ -12210,7 +11960,6 @@ "item": "minecraft:honey_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "honey_bottle": { @@ -12257,7 +12006,6 @@ "item": "minecraft:honeycomb_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "hopper": { @@ -12284,7 +12032,6 @@ "item": "minecraft:hopper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "hopper_minecart": { @@ -12333,7 +12080,6 @@ "item": "minecraft:host_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "host_armor_trim_smithing_template_smithing_trim": { @@ -12372,7 +12118,6 @@ "item": "minecraft:iron_axe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_bars": { @@ -12393,7 +12138,6 @@ "item": "minecraft:iron_bars", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_block": { @@ -12415,7 +12159,6 @@ "item": "minecraft:iron_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_boots": { @@ -12436,7 +12179,6 @@ "item": "minecraft:iron_boots", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_chestplate": { @@ -12458,7 +12200,6 @@ "item": "minecraft:iron_chestplate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_door": { @@ -12480,7 +12221,6 @@ "item": "minecraft:iron_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_helmet": { @@ -12501,7 +12241,6 @@ "item": "minecraft:iron_helmet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_hoe": { @@ -12528,7 +12267,6 @@ "item": "minecraft:iron_hoe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_ingot_from_blasting_deepslate_iron_ore": { @@ -12605,7 +12343,6 @@ "item": "minecraft:iron_ingot", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_ingot_from_smelting_deepslate_iron_ore": { @@ -12666,7 +12403,6 @@ "item": "minecraft:iron_leggings", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_nugget": { @@ -12865,7 +12601,6 @@ "item": "minecraft:iron_pickaxe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_shovel": { @@ -12892,7 +12627,6 @@ "item": "minecraft:iron_shovel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_sword": { @@ -12919,7 +12653,6 @@ "item": "minecraft:iron_sword", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "iron_trapdoor": { @@ -12940,7 +12673,6 @@ "item": "minecraft:iron_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "item_frame": { @@ -12967,7 +12699,6 @@ "item": "minecraft:item_frame", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jack_o_lantern": { @@ -12993,7 +12724,6 @@ "item": "minecraft:jack_o_lantern", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jukebox": { @@ -13019,7 +12749,6 @@ "item": "minecraft:jukebox", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_boat": { @@ -13041,7 +12770,6 @@ "item": "minecraft:jungle_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_button": { @@ -13097,7 +12825,6 @@ "item": "minecraft:jungle_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_fence": { @@ -13124,7 +12851,6 @@ "item": "minecraft:jungle_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_fence_gate": { @@ -13151,7 +12877,6 @@ "item": "minecraft:jungle_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_hanging_sign": { @@ -13179,7 +12904,6 @@ "item": "minecraft:jungle_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_planks": { @@ -13215,7 +12939,6 @@ "item": "minecraft:jungle_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_sign": { @@ -13243,7 +12966,6 @@ "item": "minecraft:jungle_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_slab": { @@ -13264,7 +12986,6 @@ "item": "minecraft:jungle_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_stairs": { @@ -13287,7 +13008,6 @@ "item": "minecraft:jungle_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_trapdoor": { @@ -13309,7 +13029,6 @@ "item": "minecraft:jungle_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "jungle_wood": { @@ -13331,7 +13050,6 @@ "item": "minecraft:jungle_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "ladder": { @@ -13353,7 +13071,6 @@ "item": "minecraft:ladder", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lantern": { @@ -13380,7 +13097,6 @@ "item": "minecraft:lantern", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lapis_block": { @@ -13402,7 +13118,6 @@ "item": "minecraft:lapis_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lapis_lazuli": { @@ -13495,7 +13210,6 @@ "item": "minecraft:lead", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather": { @@ -13516,7 +13230,6 @@ "item": "minecraft:leather", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather_boots": { @@ -13537,7 +13250,6 @@ "item": "minecraft:leather_boots", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather_chestplate": { @@ -13559,7 +13271,6 @@ "item": "minecraft:leather_chestplate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather_helmet": { @@ -13580,7 +13291,6 @@ "item": "minecraft:leather_helmet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather_horse_armor": { @@ -13602,7 +13312,6 @@ "item": "minecraft:leather_horse_armor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "leather_leggings": { @@ -13624,7 +13333,6 @@ "item": "minecraft:leather_leggings", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lectern": { @@ -13650,7 +13358,6 @@ "item": "minecraft:lectern", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lever": { @@ -13676,7 +13383,6 @@ "item": "minecraft:lever", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_banner": { @@ -13704,7 +13410,6 @@ "item": "minecraft:light_blue_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_bed": { @@ -13730,7 +13435,6 @@ "item": "minecraft:light_blue_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_candle": { @@ -13769,7 +13473,6 @@ "item": "minecraft:light_blue_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_concrete_powder": { @@ -13881,7 +13584,6 @@ "item": "minecraft:light_blue_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_stained_glass_pane": { @@ -13903,7 +13605,6 @@ "item": "minecraft:light_blue_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_stained_glass_pane_from_glass_pane": { @@ -13931,7 +13632,6 @@ "item": "minecraft:light_blue_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_blue_terracotta": { @@ -13959,7 +13659,6 @@ "item": "minecraft:light_blue_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_banner": { @@ -13987,7 +13686,6 @@ "item": "minecraft:light_gray_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_bed": { @@ -14013,7 +13711,6 @@ "item": "minecraft:light_gray_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_candle": { @@ -14052,7 +13749,6 @@ "item": "minecraft:light_gray_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_concrete_powder": { @@ -14215,7 +13911,6 @@ "item": "minecraft:light_gray_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_stained_glass_pane": { @@ -14237,7 +13932,6 @@ "item": "minecraft:light_gray_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_stained_glass_pane_from_glass_pane": { @@ -14265,7 +13959,6 @@ "item": "minecraft:light_gray_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_gray_terracotta": { @@ -14293,7 +13986,6 @@ "item": "minecraft:light_gray_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "light_weighted_pressure_plate": { @@ -14313,7 +14005,6 @@ "item": "minecraft:light_weighted_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lightning_rod": { @@ -14335,7 +14026,6 @@ "item": "minecraft:lightning_rod", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_banner": { @@ -14363,7 +14053,6 @@ "item": "minecraft:lime_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_bed": { @@ -14389,7 +14078,6 @@ "item": "minecraft:lime_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_candle": { @@ -14428,7 +14116,6 @@ "item": "minecraft:lime_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_concrete_powder": { @@ -14536,7 +14223,6 @@ "item": "minecraft:lime_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_stained_glass_pane": { @@ -14558,7 +14244,6 @@ "item": "minecraft:lime_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_stained_glass_pane_from_glass_pane": { @@ -14586,7 +14271,6 @@ "item": "minecraft:lime_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lime_terracotta": { @@ -14614,7 +14298,6 @@ "item": "minecraft:lime_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "lodestone": { @@ -14641,7 +14324,6 @@ "item": "minecraft:lodestone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "loom": { @@ -14666,7 +14348,6 @@ "item": "minecraft:loom", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_banner": { @@ -14694,7 +14375,6 @@ "item": "minecraft:magenta_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_bed": { @@ -14720,7 +14400,6 @@ "item": "minecraft:magenta_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_candle": { @@ -14759,7 +14438,6 @@ "item": "minecraft:magenta_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_concrete_powder": { @@ -14931,7 +14609,6 @@ "item": "minecraft:magenta_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_stained_glass_pane": { @@ -14953,7 +14630,6 @@ "item": "minecraft:magenta_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_stained_glass_pane_from_glass_pane": { @@ -14981,7 +14657,6 @@ "item": "minecraft:magenta_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magenta_terracotta": { @@ -15009,7 +14684,6 @@ "item": "minecraft:magenta_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magma_block": { @@ -15030,7 +14704,6 @@ "item": "minecraft:magma_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "magma_cream": { @@ -15069,7 +14742,6 @@ "item": "minecraft:mangrove_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_button": { @@ -15125,7 +14797,6 @@ "item": "minecraft:mangrove_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_fence": { @@ -15152,7 +14823,6 @@ "item": "minecraft:mangrove_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_fence_gate": { @@ -15179,7 +14849,6 @@ "item": "minecraft:mangrove_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_hanging_sign": { @@ -15207,7 +14876,6 @@ "item": "minecraft:mangrove_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_planks": { @@ -15243,7 +14911,6 @@ "item": "minecraft:mangrove_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_sign": { @@ -15271,7 +14938,6 @@ "item": "minecraft:mangrove_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_slab": { @@ -15292,7 +14958,6 @@ "item": "minecraft:mangrove_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_stairs": { @@ -15315,7 +14980,6 @@ "item": "minecraft:mangrove_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_trapdoor": { @@ -15337,7 +15001,6 @@ "item": "minecraft:mangrove_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mangrove_wood": { @@ -15359,7 +15022,6 @@ "item": "minecraft:mangrove_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "map": { @@ -15386,7 +15048,6 @@ "item": "minecraft:map", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "map_cloning": { @@ -15467,7 +15128,6 @@ "item": "minecraft:minecart", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mojang_banner_pattern": { @@ -15505,7 +15165,6 @@ "item": "minecraft:moss_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_from_moss_block": { @@ -15561,7 +15220,6 @@ "item": "minecraft:mossy_cobblestone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting": { @@ -15593,7 +15251,6 @@ "item": "minecraft:mossy_cobblestone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting": { @@ -15624,7 +15281,6 @@ "item": "minecraft:mossy_cobblestone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting": { @@ -15654,7 +15310,6 @@ "item": "minecraft:mossy_stone_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting": { @@ -15686,7 +15341,6 @@ "item": "minecraft:mossy_stone_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting": { @@ -15717,7 +15371,6 @@ "item": "minecraft:mossy_stone_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting": { @@ -15783,7 +15436,6 @@ "item": "minecraft:mud_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mud_brick_slab_from_mud_bricks_stonecutting": { @@ -15815,7 +15467,6 @@ "item": "minecraft:mud_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mud_brick_stairs_from_mud_bricks_stonecutting": { @@ -15846,7 +15497,6 @@ "item": "minecraft:mud_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "mud_brick_wall_from_mud_bricks_stonecutting": { @@ -15877,7 +15527,6 @@ "item": "minecraft:mud_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "muddy_mangrove_roots": { @@ -15990,7 +15639,6 @@ "item": "minecraft:nether_brick_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "nether_brick_slab": { @@ -16010,7 +15658,6 @@ "item": "minecraft:nether_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "nether_brick_slab_from_nether_bricks_stonecutting": { @@ -16042,7 +15689,6 @@ "item": "minecraft:nether_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "nether_brick_stairs_from_nether_bricks_stonecutting": { @@ -16073,7 +15719,6 @@ "item": "minecraft:nether_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "nether_brick_wall_from_nether_bricks_stonecutting": { @@ -16104,7 +15749,6 @@ "item": "minecraft:nether_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "nether_wart_block": { @@ -16181,7 +15825,6 @@ "item": "minecraft:netherite_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "netherite_boots_smithing": { @@ -16424,7 +16067,6 @@ "item": "minecraft:netherite_upgrade_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "note_block": { @@ -16450,7 +16092,6 @@ "item": "minecraft:note_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_boat": { @@ -16472,7 +16113,6 @@ "item": "minecraft:oak_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_button": { @@ -16528,7 +16168,6 @@ "item": "minecraft:oak_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_fence": { @@ -16555,7 +16194,6 @@ "item": "minecraft:oak_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_fence_gate": { @@ -16582,7 +16220,6 @@ "item": "minecraft:oak_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_hanging_sign": { @@ -16610,7 +16247,6 @@ "item": "minecraft:oak_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_planks": { @@ -16646,7 +16282,6 @@ "item": "minecraft:oak_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_sign": { @@ -16674,7 +16309,6 @@ "item": "minecraft:oak_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_slab": { @@ -16695,7 +16329,6 @@ "item": "minecraft:oak_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_stairs": { @@ -16718,7 +16351,6 @@ "item": "minecraft:oak_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_trapdoor": { @@ -16740,7 +16372,6 @@ "item": "minecraft:oak_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oak_wood": { @@ -16762,7 +16393,6 @@ "item": "minecraft:oak_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "observer": { @@ -16794,7 +16424,6 @@ "item": "minecraft:observer", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_banner": { @@ -16822,7 +16451,6 @@ "item": "minecraft:orange_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_bed": { @@ -16848,7 +16476,6 @@ "item": "minecraft:orange_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_candle": { @@ -16887,7 +16514,6 @@ "item": "minecraft:orange_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_concrete_powder": { @@ -17014,7 +16640,6 @@ "item": "minecraft:orange_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_stained_glass_pane": { @@ -17036,7 +16661,6 @@ "item": "minecraft:orange_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_stained_glass_pane_from_glass_pane": { @@ -17064,7 +16688,6 @@ "item": "minecraft:orange_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "orange_terracotta": { @@ -17092,7 +16715,6 @@ "item": "minecraft:orange_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper": { @@ -17113,7 +16735,6 @@ "item": "minecraft:oxidized_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_from_oxidized_copper_stonecutting": { @@ -17143,7 +16764,6 @@ "item": "minecraft:oxidized_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_slab_from_oxidized_copper_stonecutting": { @@ -17185,7 +16805,6 @@ "item": "minecraft:oxidized_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting": { @@ -17286,7 +16905,6 @@ "item": "minecraft:painting", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "paper": { @@ -17306,7 +16924,6 @@ "item": "minecraft:paper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_banner": { @@ -17334,7 +16951,6 @@ "item": "minecraft:pink_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_bed": { @@ -17360,7 +16976,6 @@ "item": "minecraft:pink_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_candle": { @@ -17399,7 +17014,6 @@ "item": "minecraft:pink_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_concrete_powder": { @@ -17541,7 +17155,6 @@ "item": "minecraft:pink_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_stained_glass_pane": { @@ -17563,7 +17176,6 @@ "item": "minecraft:pink_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_stained_glass_pane_from_glass_pane": { @@ -17591,7 +17203,6 @@ "item": "minecraft:pink_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "pink_terracotta": { @@ -17619,7 +17230,6 @@ "item": "minecraft:pink_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "piston": { @@ -17655,7 +17265,6 @@ "item": "minecraft:piston", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_andesite": { @@ -17676,7 +17285,6 @@ "item": "minecraft:polished_andesite", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_andesite_from_andesite_stonecutting": { @@ -17706,7 +17314,6 @@ "item": "minecraft:polished_andesite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_andesite_slab_from_andesite_stonecutting": { @@ -17748,7 +17355,6 @@ "item": "minecraft:polished_andesite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_andesite_stairs_from_andesite_stonecutting": { @@ -17789,7 +17395,6 @@ "item": "minecraft:polished_basalt", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_basalt_from_basalt_stonecutting": { @@ -17820,7 +17425,6 @@ "item": "minecraft:polished_blackstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_slab": { @@ -17840,7 +17444,6 @@ "item": "minecraft:polished_blackstone_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_slab_from_blackstone_stonecutting": { @@ -17892,7 +17495,6 @@ "item": "minecraft:polished_blackstone_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_stairs_from_blackstone_stonecutting": { @@ -17943,7 +17545,6 @@ "item": "minecraft:polished_blackstone_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_brick_wall_from_blackstone_stonecutting": { @@ -17994,7 +17595,6 @@ "item": "minecraft:polished_blackstone_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_bricks_from_blackstone_stonecutting": { @@ -18058,7 +17658,6 @@ "item": "minecraft:polished_blackstone_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_slab": { @@ -18078,7 +17677,6 @@ "item": "minecraft:polished_blackstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_slab_from_blackstone_stonecutting": { @@ -18120,7 +17718,6 @@ "item": "minecraft:polished_blackstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_stairs_from_blackstone_stonecutting": { @@ -18161,7 +17758,6 @@ "item": "minecraft:polished_blackstone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_blackstone_wall_from_blackstone_stonecutting": { @@ -18202,7 +17798,6 @@ "item": "minecraft:polished_deepslate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_deepslate_from_cobbled_deepslate_stonecutting": { @@ -18232,7 +17827,6 @@ "item": "minecraft:polished_deepslate_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_deepslate_slab_from_cobbled_deepslate_stonecutting": { @@ -18274,7 +17868,6 @@ "item": "minecraft:polished_deepslate_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_deepslate_stairs_from_cobbled_deepslate_stonecutting": { @@ -18315,7 +17908,6 @@ "item": "minecraft:polished_deepslate_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_deepslate_wall_from_cobbled_deepslate_stonecutting": { @@ -18356,7 +17948,6 @@ "item": "minecraft:polished_diorite", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_diorite_from_diorite_stonecutting": { @@ -18386,7 +17977,6 @@ "item": "minecraft:polished_diorite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_diorite_slab_from_diorite_stonecutting": { @@ -18428,7 +18018,6 @@ "item": "minecraft:polished_diorite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_diorite_stairs_from_diorite_stonecutting": { @@ -18469,7 +18058,6 @@ "item": "minecraft:polished_granite", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_granite_from_granite_stonecutting": { @@ -18499,7 +18087,6 @@ "item": "minecraft:polished_granite_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_granite_slab_from_granite_stonecutting": { @@ -18541,7 +18128,6 @@ "item": "minecraft:polished_granite_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "polished_granite_stairs_from_granite_stonecutting": { @@ -18605,7 +18191,6 @@ "item": "minecraft:powered_rail", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine": { @@ -18626,7 +18211,6 @@ "item": "minecraft:prismarine", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_brick_slab": { @@ -18646,7 +18230,6 @@ "item": "minecraft:prismarine_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_brick_slab_from_prismarine_stonecutting": { @@ -18678,7 +18261,6 @@ "item": "minecraft:prismarine_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_brick_stairs_from_prismarine_stonecutting": { @@ -18746,7 +18328,6 @@ "item": "minecraft:prismarine_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_slab_from_prismarine_stonecutting": { @@ -18778,7 +18359,6 @@ "item": "minecraft:prismarine_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_stairs_from_prismarine_stonecutting": { @@ -18809,7 +18389,6 @@ "item": "minecraft:prismarine_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "prismarine_wall_from_prismarine_stonecutting": { @@ -18881,7 +18460,6 @@ "item": "minecraft:purple_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_bed": { @@ -18907,7 +18485,6 @@ "item": "minecraft:purple_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_candle": { @@ -18946,7 +18523,6 @@ "item": "minecraft:purple_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_concrete_powder": { @@ -19042,7 +18618,6 @@ "item": "minecraft:purple_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_stained_glass_pane": { @@ -19064,7 +18639,6 @@ "item": "minecraft:purple_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_stained_glass_pane_from_glass_pane": { @@ -19092,7 +18666,6 @@ "item": "minecraft:purple_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purple_terracotta": { @@ -19120,7 +18693,6 @@ "item": "minecraft:purple_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purpur_block": { @@ -19141,7 +18713,6 @@ "item": "minecraft:purpur_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purpur_pillar": { @@ -19162,7 +18733,6 @@ "item": "minecraft:purpur_pillar", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purpur_pillar_from_purpur_block_stonecutting": { @@ -19199,7 +18769,6 @@ "item": "minecraft:purpur_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purpur_slab_from_purpur_block_stonecutting": { @@ -19238,7 +18807,6 @@ "item": "minecraft:purpur_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "purpur_stairs_from_purpur_block_stonecutting": { @@ -19281,7 +18849,6 @@ "item": "minecraft:quartz_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "quartz_bricks": { @@ -19302,7 +18869,6 @@ "item": "minecraft:quartz_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "quartz_bricks_from_quartz_block_stonecutting": { @@ -19345,7 +18911,6 @@ "item": "minecraft:quartz_pillar", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "quartz_pillar_from_quartz_block_stonecutting": { @@ -19387,7 +18952,6 @@ "item": "minecraft:quartz_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "quartz_slab_from_stonecutting": { @@ -19431,7 +18995,6 @@ "item": "minecraft:quartz_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "quartz_stairs_from_quartz_block_stonecutting": { @@ -19522,7 +19085,6 @@ "item": "minecraft:rail", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "raiser_armor_trim_smithing_template": { @@ -19554,7 +19116,6 @@ "item": "minecraft:raiser_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "raiser_armor_trim_smithing_template_smithing_trim": { @@ -19602,7 +19163,6 @@ "item": "minecraft:raw_copper_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "raw_gold": { @@ -19638,7 +19198,6 @@ "item": "minecraft:raw_gold_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "raw_iron": { @@ -19674,7 +19233,6 @@ "item": "minecraft:raw_iron_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "recovery_compass": { @@ -19701,7 +19259,6 @@ "item": "minecraft:recovery_compass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_banner": { @@ -19729,7 +19286,6 @@ "item": "minecraft:red_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_bed": { @@ -19755,7 +19311,6 @@ "item": "minecraft:red_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_candle": { @@ -19794,7 +19349,6 @@ "item": "minecraft:red_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_concrete_powder": { @@ -19925,7 +19479,6 @@ "item": "minecraft:red_nether_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_nether_brick_slab_from_red_nether_bricks_stonecutting": { @@ -19957,7 +19510,6 @@ "item": "minecraft:red_nether_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_nether_brick_stairs_from_red_nether_bricks_stonecutting": { @@ -19988,7 +19540,6 @@ "item": "minecraft:red_nether_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_nether_brick_wall_from_red_nether_bricks_stonecutting": { @@ -20024,7 +19575,6 @@ "item": "minecraft:red_nether_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_sandstone": { @@ -20045,7 +19595,6 @@ "item": "minecraft:red_sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_sandstone_slab": { @@ -20072,7 +19621,6 @@ "item": "minecraft:red_sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_sandstone_slab_from_red_sandstone_stonecutting": { @@ -20116,7 +19664,6 @@ "item": "minecraft:red_sandstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_sandstone_stairs_from_red_sandstone_stonecutting": { @@ -20147,7 +19694,6 @@ "item": "minecraft:red_sandstone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_sandstone_wall_from_red_sandstone_stonecutting": { @@ -20185,7 +19731,6 @@ "item": "minecraft:red_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_stained_glass_pane": { @@ -20207,7 +19752,6 @@ "item": "minecraft:red_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_stained_glass_pane_from_glass_pane": { @@ -20235,7 +19779,6 @@ "item": "minecraft:red_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "red_terracotta": { @@ -20263,7 +19806,6 @@ "item": "minecraft:red_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "redstone": { @@ -20299,7 +19841,6 @@ "item": "minecraft:redstone_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "redstone_from_blasting_deepslate_redstone_ore": { @@ -20378,7 +19919,6 @@ "item": "minecraft:redstone_lamp", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "redstone_torch": { @@ -20404,7 +19944,6 @@ "item": "minecraft:redstone_torch", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "repair_item": { @@ -20439,7 +19978,6 @@ "item": "minecraft:repeater", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "respawn_anchor": { @@ -20466,7 +20004,6 @@ "item": "minecraft:respawn_anchor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "rib_armor_trim_smithing_template": { @@ -20498,7 +20035,6 @@ "item": "minecraft:rib_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "rib_armor_trim_smithing_template_smithing_trim": { @@ -20531,7 +20067,6 @@ "item": "minecraft:sandstone", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sandstone_slab": { @@ -20558,7 +20093,6 @@ "item": "minecraft:sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sandstone_slab_from_sandstone_stonecutting": { @@ -20602,7 +20136,6 @@ "item": "minecraft:sandstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sandstone_stairs_from_sandstone_stonecutting": { @@ -20633,7 +20166,6 @@ "item": "minecraft:sandstone_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sandstone_wall_from_sandstone_stonecutting": { @@ -20670,7 +20202,6 @@ "item": "minecraft:scaffolding", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sea_lantern": { @@ -20697,7 +20228,6 @@ "item": "minecraft:sea_lantern", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sentry_armor_trim_smithing_template": { @@ -20729,7 +20259,6 @@ "item": "minecraft:sentry_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sentry_armor_trim_smithing_template_smithing_trim": { @@ -20773,7 +20302,6 @@ "item": "minecraft:shaper_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "shaper_armor_trim_smithing_template_smithing_trim": { @@ -20806,7 +20334,6 @@ "item": "minecraft:shears", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "shield": { @@ -20832,7 +20359,6 @@ "item": "minecraft:shield", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "shield_decoration": { @@ -20863,7 +20389,6 @@ "item": "minecraft:shulker_box", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "shulker_box_coloring": { @@ -20899,7 +20424,6 @@ "item": "minecraft:silence_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "silence_armor_trim_smithing_template_smithing_trim": { @@ -20964,7 +20488,6 @@ "item": "minecraft:slime_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smithing_table": { @@ -20990,7 +20513,6 @@ "item": "minecraft:smithing_table", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smoker": { @@ -21016,7 +20538,6 @@ "item": "minecraft:smoker", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_basalt": { @@ -21060,7 +20581,6 @@ "item": "minecraft:smooth_quartz_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_quartz_slab_from_smooth_quartz_stonecutting": { @@ -21092,7 +20612,6 @@ "item": "minecraft:smooth_quartz_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_quartz_stairs_from_smooth_quartz_stonecutting": { @@ -21134,7 +20653,6 @@ "item": "minecraft:smooth_red_sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting": { @@ -21166,7 +20684,6 @@ "item": "minecraft:smooth_red_sandstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting": { @@ -21208,7 +20725,6 @@ "item": "minecraft:smooth_sandstone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_sandstone_slab_from_smooth_sandstone_stonecutting": { @@ -21240,7 +20756,6 @@ "item": "minecraft:smooth_sandstone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_sandstone_stairs_from_smooth_sandstone_stonecutting": { @@ -21282,7 +20797,6 @@ "item": "minecraft:smooth_stone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "smooth_stone_slab_from_smooth_stone_stonecutting": { @@ -21324,7 +20838,6 @@ "item": "minecraft:snout_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "snout_armor_trim_smithing_template_smithing_trim": { @@ -21356,7 +20869,6 @@ "item": "minecraft:snow", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "snow_block": { @@ -21377,7 +20889,6 @@ "item": "minecraft:snow_block", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "soul_campfire": { @@ -21407,7 +20918,6 @@ "item": "minecraft:soul_campfire", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "soul_lantern": { @@ -21434,7 +20944,6 @@ "item": "minecraft:soul_lantern", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "soul_torch": { @@ -21472,7 +20981,6 @@ "item": "minecraft:soul_torch", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spectral_arrow": { @@ -21499,7 +21007,6 @@ "item": "minecraft:spectral_arrow", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spire_armor_trim_smithing_template": { @@ -21531,7 +21038,6 @@ "item": "minecraft:spire_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spire_armor_trim_smithing_template_smithing_trim": { @@ -21577,7 +21083,6 @@ "item": "minecraft:spruce_boat", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_button": { @@ -21633,7 +21138,6 @@ "item": "minecraft:spruce_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_fence": { @@ -21660,7 +21164,6 @@ "item": "minecraft:spruce_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_fence_gate": { @@ -21687,7 +21190,6 @@ "item": "minecraft:spruce_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_hanging_sign": { @@ -21715,7 +21217,6 @@ "item": "minecraft:spruce_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_planks": { @@ -21751,7 +21252,6 @@ "item": "minecraft:spruce_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_sign": { @@ -21779,7 +21279,6 @@ "item": "minecraft:spruce_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_slab": { @@ -21800,7 +21299,6 @@ "item": "minecraft:spruce_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_stairs": { @@ -21823,7 +21321,6 @@ "item": "minecraft:spruce_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_trapdoor": { @@ -21845,7 +21342,6 @@ "item": "minecraft:spruce_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spruce_wood": { @@ -21867,7 +21363,6 @@ "item": "minecraft:spruce_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "spyglass": { @@ -21894,7 +21389,6 @@ "item": "minecraft:spyglass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stick": { @@ -21915,7 +21409,6 @@ "item": "minecraft:stick", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stick_from_bamboo_item": { @@ -21937,7 +21430,6 @@ "item": "minecraft:stick", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sticky_piston": { @@ -21963,7 +21455,6 @@ "item": "minecraft:sticky_piston", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone": { @@ -22001,7 +21492,6 @@ "item": "minecraft:stone_axe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_brick_slab": { @@ -22021,7 +21511,6 @@ "item": "minecraft:stone_brick_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_brick_slab_from_stone_bricks_stonecutting": { @@ -22063,7 +21552,6 @@ "item": "minecraft:stone_brick_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_brick_stairs_from_stone_bricks_stonecutting": { @@ -22104,7 +21592,6 @@ "item": "minecraft:stone_brick_wall", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_brick_wall_from_stone_bricks_stonecutting": { @@ -22145,7 +21632,6 @@ "item": "minecraft:stone_bricks", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_bricks_from_stone_stonecutting": { @@ -22195,7 +21681,6 @@ "item": "minecraft:stone_hoe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_pickaxe": { @@ -22221,7 +21706,6 @@ "item": "minecraft:stone_pickaxe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_pressure_plate": { @@ -22241,7 +21725,6 @@ "item": "minecraft:stone_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_shovel": { @@ -22267,7 +21750,6 @@ "item": "minecraft:stone_shovel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_slab": { @@ -22287,7 +21769,6 @@ "item": "minecraft:stone_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_slab_from_stone_stonecutting": { @@ -22319,7 +21800,6 @@ "item": "minecraft:stone_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stone_stairs_from_stone_stonecutting": { @@ -22355,7 +21835,6 @@ "item": "minecraft:stone_sword", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stonecutter": { @@ -22381,7 +21860,6 @@ "item": "minecraft:stonecutter", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_acacia_wood": { @@ -22403,7 +21881,6 @@ "item": "minecraft:stripped_acacia_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_birch_wood": { @@ -22425,7 +21902,6 @@ "item": "minecraft:stripped_birch_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_cherry_wood": { @@ -22447,7 +21923,6 @@ "item": "minecraft:stripped_cherry_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_crimson_hyphae": { @@ -22469,7 +21944,6 @@ "item": "minecraft:stripped_crimson_hyphae", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_dark_oak_wood": { @@ -22491,7 +21965,6 @@ "item": "minecraft:stripped_dark_oak_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_jungle_wood": { @@ -22513,7 +21986,6 @@ "item": "minecraft:stripped_jungle_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_mangrove_wood": { @@ -22535,7 +22007,6 @@ "item": "minecraft:stripped_mangrove_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_oak_wood": { @@ -22557,7 +22028,6 @@ "item": "minecraft:stripped_oak_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_spruce_wood": { @@ -22579,7 +22049,6 @@ "item": "minecraft:stripped_spruce_wood", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "stripped_warped_hyphae": { @@ -22601,7 +22070,6 @@ "item": "minecraft:stripped_warped_hyphae", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "sugar_from_honey_bottle": { @@ -22662,7 +22130,6 @@ "item": "minecraft:target", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "terracotta": { @@ -22706,7 +22173,6 @@ "item": "minecraft:tide_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "tide_armor_trim_smithing_template_smithing_trim": { @@ -22745,7 +22211,6 @@ "item": "minecraft:tinted_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "tipped_arrow": { @@ -22783,7 +22248,6 @@ "item": "minecraft:tnt", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "tnt_minecart": { @@ -22833,7 +22297,6 @@ "item": "minecraft:torch", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "trapped_chest": { @@ -22881,7 +22344,6 @@ "item": "minecraft:tripwire_hook", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "turtle_helmet": { @@ -22902,7 +22364,6 @@ "item": "minecraft:turtle_helmet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "vex_armor_trim_smithing_template": { @@ -22934,7 +22395,6 @@ "item": "minecraft:vex_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "vex_armor_trim_smithing_template_smithing_trim": { @@ -22978,7 +22438,6 @@ "item": "minecraft:ward_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "ward_armor_trim_smithing_template_smithing_trim": { @@ -23028,7 +22487,6 @@ "item": "minecraft:warped_door", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_fence": { @@ -23055,7 +22513,6 @@ "item": "minecraft:warped_fence", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_fence_gate": { @@ -23082,7 +22539,6 @@ "item": "minecraft:warped_fence_gate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_fungus_on_a_stick": { @@ -23108,7 +22564,6 @@ "item": "minecraft:warped_fungus_on_a_stick", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_hanging_sign": { @@ -23136,7 +22591,6 @@ "item": "minecraft:warped_hanging_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_hyphae": { @@ -23158,7 +22612,6 @@ "item": "minecraft:warped_hyphae", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_planks": { @@ -23194,7 +22647,6 @@ "item": "minecraft:warped_pressure_plate", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_sign": { @@ -23222,7 +22674,6 @@ "item": "minecraft:warped_sign", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_slab": { @@ -23243,7 +22694,6 @@ "item": "minecraft:warped_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_stairs": { @@ -23266,7 +22716,6 @@ "item": "minecraft:warped_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "warped_trapdoor": { @@ -23288,7 +22737,6 @@ "item": "minecraft:warped_trapdoor", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_copper_block_from_honeycomb": { @@ -23328,7 +22776,6 @@ "item": "minecraft:waxed_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_cut_copper_from_honeycomb": { @@ -23377,7 +22824,6 @@ "item": "minecraft:waxed_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_cut_copper_slab_from_honeycomb": { @@ -23438,7 +22884,6 @@ "item": "minecraft:waxed_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_cut_copper_stairs_from_honeycomb": { @@ -23516,7 +22961,6 @@ "item": "minecraft:waxed_exposed_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_exposed_cut_copper_from_honeycomb": { @@ -23565,7 +23009,6 @@ "item": "minecraft:waxed_exposed_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_exposed_cut_copper_slab_from_honeycomb": { @@ -23626,7 +23069,6 @@ "item": "minecraft:waxed_exposed_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_exposed_cut_copper_stairs_from_honeycomb": { @@ -23704,7 +23146,6 @@ "item": "minecraft:waxed_oxidized_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_oxidized_cut_copper_from_honeycomb": { @@ -23753,7 +23194,6 @@ "item": "minecraft:waxed_oxidized_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_oxidized_cut_copper_slab_from_honeycomb": { @@ -23814,7 +23254,6 @@ "item": "minecraft:waxed_oxidized_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_oxidized_cut_copper_stairs_from_honeycomb": { @@ -23892,7 +23331,6 @@ "item": "minecraft:waxed_weathered_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_weathered_cut_copper_from_honeycomb": { @@ -23941,7 +23379,6 @@ "item": "minecraft:waxed_weathered_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_weathered_cut_copper_slab_from_honeycomb": { @@ -24002,7 +23439,6 @@ "item": "minecraft:waxed_weathered_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "waxed_weathered_cut_copper_stairs_from_honeycomb": { @@ -24072,7 +23508,6 @@ "item": "minecraft:wayfinder_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wayfinder_armor_trim_smithing_template_smithing_trim": { @@ -24105,7 +23540,6 @@ "item": "minecraft:weathered_cut_copper", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_from_weathered_copper_stonecutting": { @@ -24135,7 +23569,6 @@ "item": "minecraft:weathered_cut_copper_slab", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_slab_from_weathered_copper_stonecutting": { @@ -24177,7 +23610,6 @@ "item": "minecraft:weathered_cut_copper_stairs", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "weathered_cut_copper_stairs_from_weathered_copper_stonecutting": { @@ -24239,7 +23671,6 @@ "item": "minecraft:white_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_bed": { @@ -24265,7 +23696,6 @@ "item": "minecraft:white_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_candle": { @@ -24304,7 +23734,6 @@ "item": "minecraft:white_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_concrete_powder": { @@ -24413,7 +23842,6 @@ "item": "minecraft:white_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_stained_glass_pane": { @@ -24435,7 +23863,6 @@ "item": "minecraft:white_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_stained_glass_pane_from_glass_pane": { @@ -24463,7 +23890,6 @@ "item": "minecraft:white_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_terracotta": { @@ -24491,7 +23917,6 @@ "item": "minecraft:white_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "white_wool_from_string": { @@ -24512,7 +23937,6 @@ "item": "minecraft:white_wool", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wild_armor_trim_smithing_template": { @@ -24544,7 +23968,6 @@ "item": "minecraft:wild_armor_trim_smithing_template", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wild_armor_trim_smithing_template_smithing_trim": { @@ -24582,7 +24005,6 @@ "item": "minecraft:wooden_axe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wooden_hoe": { @@ -24608,7 +24030,6 @@ "item": "minecraft:wooden_hoe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wooden_pickaxe": { @@ -24634,7 +24055,6 @@ "item": "minecraft:wooden_pickaxe", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wooden_shovel": { @@ -24660,7 +24080,6 @@ "item": "minecraft:wooden_shovel", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "wooden_sword": { @@ -24686,7 +24105,6 @@ "item": "minecraft:wooden_sword", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "writable_book": { @@ -24734,7 +24152,6 @@ "item": "minecraft:yellow_banner", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_bed": { @@ -24760,7 +24177,6 @@ "item": "minecraft:yellow_bed", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_candle": { @@ -24799,7 +24215,6 @@ "item": "minecraft:yellow_carpet", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_concrete_powder": { @@ -24908,7 +24323,6 @@ "item": "minecraft:yellow_stained_glass", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_stained_glass_pane": { @@ -24930,7 +24344,6 @@ "item": "minecraft:yellow_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_stained_glass_pane_from_glass_pane": { @@ -24958,7 +24371,6 @@ "item": "minecraft:yellow_stained_glass_pane", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" }, "yellow_terracotta": { @@ -24986,7 +24398,6 @@ "item": "minecraft:yellow_terracotta", "tag": null }, - "show_notification": true, "type": "minecraft:crafting_shaped" } } \ No newline at end of file diff --git a/Obsidian/Assets/tags.json b/Obsidian/Assets/tags.json index f098c40ab..20c240293 100644 --- a/Obsidian/Assets/tags.json +++ b/Obsidian/Assets/tags.json @@ -1,7 +1,7 @@ { "blocks/players_can_interact": { "name": "players_can_interact", - "type": "block", + "type": "blocks", "values": [ "minecraft:chest", "minecraft:ender_chest", @@ -1307,7 +1307,7 @@ "minecraft:fern", "minecraft:fletching_table", "minecraft:glow_lichen", - "minecraft:grass", + "minecraft:short_grass", "minecraft:hanging_roots", "minecraft:jack_o_lantern", "minecraft:jukebox", @@ -2042,7 +2042,7 @@ "minecraft:air", "minecraft:water", "minecraft:lava", - "minecraft:grass", + "minecraft:short_grass", "minecraft:fern", "minecraft:dead_bush", "minecraft:seagrass", @@ -2070,7 +2070,7 @@ "type": "blocks", "values": [ "#minecraft:leaves", - "minecraft:grass", + "minecraft:short_grass", "minecraft:fern", "minecraft:dead_bush", "minecraft:vine", @@ -2477,7 +2477,7 @@ "#minecraft:saplings", "#minecraft:small_flowers", "#minecraft:crops", - "minecraft:grass", + "minecraft:short_grass", "minecraft:fern", "minecraft:dead_bush", "minecraft:vine", @@ -3043,6 +3043,14 @@ "minecraft:falling_stalactite" ] }, + "damage_type/can_break_armor_stand": { + "name": "can_break_armor_stand", + "type": "damage_type", + "values": [ + "minecraft:player_attack", + "minecraft:player_explosion" + ] + }, "damage_type/damages_helmet": { "name": "damages_helmet", "type": "damage_type", @@ -3200,6 +3208,26 @@ "minecraft:bee" ] }, + "entity_types/can_breathe_under_water": { + "name": "can_breathe_under_water", + "type": "entity_types", + "values": [ + "#minecraft:undead", + "minecraft:axolotl", + "minecraft:frog", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:turtle", + "minecraft:glow_squid", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:squid", + "minecraft:tropical_fish", + "minecraft:tadpole", + "minecraft:armor_stand" + ] + }, "entity_types/dismounts_underwater": { "name": "dismounts_underwater", "type": "entity_types", @@ -3271,6 +3299,7 @@ "type": "entity_types", "values": [ "#minecraft:arrows", + "minecraft:firework_rocket", "minecraft:snowball", "minecraft:fireball", "minecraft:small_fireball", @@ -3316,7 +3345,31 @@ "values": [ "minecraft:skeleton", "minecraft:stray", - "minecraft:wither_skeleton" + "minecraft:wither_skeleton", + "minecraft:skeleton_horse" + ] + }, + "entity_types/undead": { + "name": "undead", + "type": "entity_types", + "values": [ + "#minecraft:skeletons", + "#minecraft:zombies", + "minecraft:wither", + "minecraft:phantom" + ] + }, + "entity_types/zombies": { + "name": "zombies", + "type": "entity_types", + "values": [ + "minecraft:zombie_horse", + "minecraft:zombie", + "minecraft:zombie_villager", + "minecraft:zombified_piglin", + "minecraft:zoglin", + "minecraft:drowned", + "minecraft:husk" ] }, "fluids/lava": { diff --git a/Obsidian/Client.cs b/Obsidian/Client.cs index 60bd08a1b..483eb5db0 100644 --- a/Obsidian/Client.cs +++ b/Obsidian/Client.cs @@ -280,7 +280,7 @@ public async Task StartConnectionAsync() { this.Logger.LogDebug("{ip} has been throttled for reconnecting too fast.", ip); await this.DisconnectAsync("Connection Throttled! Please wait before reconnecting."); - this.Disconnect(); + break; } } else @@ -555,6 +555,7 @@ await QueuePacketAsync(new UpdateRecipeBookPacket await SendPlayerListDecoration(); await SendPlayerInfoAsync(); + await this.QueuePacketAsync(new GameEventPacket(ChangeGameStateReason.StartWaitingForLevelChunks)); await Player.UpdateChunksAsync(distance: 7); await SendInfoAsync(); await this.server.Events.PlayerJoin.InvokeAsync(new PlayerJoinEventArgs(Player, this.server, DateTimeOffset.Now)); @@ -592,16 +593,16 @@ await QueuePacketAsync(new SetEntityMetadataPacket }); } - internal Task DisconnectAsync(ChatMessage reason) => Task.Run(() => SendPacket(new DisconnectPacket(reason, State))); + internal async Task DisconnectAsync(ChatMessage reason) => await this.QueuePacketAsync(new DisconnectPacket(reason, State)); internal Task SendTimeUpdateAsync() => QueuePacketAsync(new UpdateTimePacket(Player!.world.LevelData.Time, Player.world.LevelData.DayTime)); internal Task SendWeatherUpdateAsync() => QueuePacketAsync(new GameEventPacket(Player!.world.LevelData.Raining ? ChangeGameStateReason.BeginRaining : ChangeGameStateReason.EndRaining)); - internal void HandleKeepAlive(KeepAlivePacket keepAlive) + internal async Task HandleKeepAliveAsync(KeepAlivePacket keepAlive) { if (!missedKeepAlives.Contains(keepAlive.KeepAliveId)) { Logger.LogWarning($"Received invalid KeepAlive from {Player.Username}?? Naughty???? ({Player.Uuid})"); - DisconnectAsync(ChatMessage.Simple("Kicked for invalid KeepAlive.")); + await DisconnectAsync(ChatMessage.Simple("Kicked for invalid KeepAlive.")); return; } diff --git a/Obsidian/Commands/MainCommandModule.cs b/Obsidian/Commands/MainCommandModule.cs index 556e16959..e29c67dd1 100644 --- a/Obsidian/Commands/MainCommandModule.cs +++ b/Obsidian/Commands/MainCommandModule.cs @@ -1,7 +1,6 @@ using Obsidian.API.Utilities; using Obsidian.Commands.Framework.Entities; using Obsidian.Entities; -using Obsidian.Net.Packets.Play.Clientbound; using Obsidian.Registries; using Obsidian.WorldData; using System.Data; @@ -72,15 +71,15 @@ public async Task HelpAsync(CommandContext ctx, int page) { Text = $"\n{ChatColor.Gold}{usage}", ClickEvent = new ClickComponent - ( - EClickAction.SuggestCommand, - usage.Contains(' ') ? $"{usage[..usage.IndexOf(' ')]} " : usage - ), + { + Action = ClickAction.SuggestCommand, + Value = usage.Contains(' ') ? $"{usage[..usage.IndexOf(' ')]} " : usage + }, HoverEvent = new HoverComponent - ( - EHoverAction.ShowText, - $"Click to suggest the command" - ) + { + Action = HoverAction.ShowText, + Contents = new HoverChatContent() { ChatMessage = "Click to suggest the command" } + } }; commands.AddExtra(commandName); @@ -135,13 +134,13 @@ public async Task PluginsAsync(CommandContext ctx) plugin.Color = colorByState; plugin.HoverEvent = new HoverComponent - ( - EHoverAction.ShowText, - $"{colorByState}{info.Name}{ChatColor.Reset}\nVersion: {colorByState}{info.Version}{ChatColor.Reset}\nAuthor(s): {colorByState}{info.Authors}{ChatColor.Reset}" - ); + { + Action = HoverAction.ShowText, + Contents = new HoverChatContent { ChatMessage = $"{colorByState}{info.Name}{ChatColor.Reset}\nVersion: {colorByState}{info.Version}{ChatColor.Reset}\nAuthor(s): {colorByState}{info.Authors}{ChatColor.Reset}" } + }; if (pluginContainer.Info.ProjectUrl != null) - plugin.ClickEvent = new ClickComponent(EClickAction.OpenUrl, pluginContainer.Info.ProjectUrl.AbsoluteUri); + plugin.ClickEvent = new ClickComponent { Action = ClickAction.OpenUrl, Value = pluginContainer.Info.ProjectUrl.AbsoluteUri }; messages.Add(plugin); messages.Add(new ChatMessage @@ -449,15 +448,15 @@ private ChatMessage SendCommandUsage(string commandUsage) { Text = $"{ChatColor.Red}{commandUsage}", ClickEvent = new ClickComponent - ( - EClickAction.SuggestCommand, - $"{commandSuggest}" - ), + { + Action = ClickAction.SuggestCommand, + Value = commandSuggest + }, HoverEvent = new HoverComponent - ( - EHoverAction.ShowText, - $"Click to suggest the command" - ) + { + Action = HoverAction.ShowText, + Contents = new HoverChatContent { ChatMessage = "Click to suggest the command" } + } }; var prefix = new ChatMessage diff --git a/Obsidian/Entities/Player.cs b/Obsidian/Entities/Player.cs index d6f5db09f..654619e4e 100644 --- a/Obsidian/Entities/Player.cs +++ b/Obsidian/Entities/Player.cs @@ -8,6 +8,7 @@ using Obsidian.Net.Actions.PlayerInfo; using Obsidian.Net.Packets; using Obsidian.Net.Packets.Play.Clientbound; +using Obsidian.Net.Scoreboard; using Obsidian.Registries; using Obsidian.WorldData; using System.Diagnostics; @@ -168,7 +169,7 @@ public async Task SavePermsAsync() await PlayerPermissions.ToJsonAsync(fs); } - public async Task DisplayScoreboardAsync(IScoreboard scoreboard, ScoreboardPosition position) + public async Task DisplayScoreboardAsync(IScoreboard scoreboard, ScoreboardPosition position)//TODO implement new features { var actualBoard = (Scoreboard)scoreboard; @@ -191,8 +192,9 @@ await client.QueuePacketAsync(new UpdateScorePacket { EntityName = score.DisplayText, ObjectiveName = actualBoard.name, - Action = 0, - Value = score.Value + Value = score.Value, + HasDisplayName = false, + HasNumberFormat = false }); } diff --git a/Obsidian/Globals.cs b/Obsidian/Globals.cs index 02bdf8933..c999c88b7 100644 --- a/Obsidian/Globals.cs +++ b/Obsidian/Globals.cs @@ -22,8 +22,8 @@ public static class Globals { new CraftingTypeConverter(), new IngredientConverter(), - new DefaultEnumConverter(), - new DefaultEnumConverter(), + new DefaultEnumConverter(), + new DefaultEnumConverter(), new DefaultEnumConverter(), new DefaultEnumConverter(), new RecipesConverter(), diff --git a/Obsidian/Net/ClientHandler.cs b/Obsidian/Net/ClientHandler.cs index 7ba594079..9d29a031e 100644 --- a/Obsidian/Net/ClientHandler.cs +++ b/Obsidian/Net/ClientHandler.cs @@ -41,9 +41,9 @@ public void RegisterHandlers() //Packets.TryAdd(0x0E, InteractEntity); //Packets.TryAdd(0x0F, GenerateStructure); //Packets.TryAdd(0x11, LockDifficulty); - Packets.TryAdd(0x16, new SetPlayerPositionPacket()); - Packets.TryAdd(0x17, new SetPlayerPositionAndRotationPacket()); - Packets.TryAdd(0x18, new SetPlayerRotationPacket()); + Packets.TryAdd(0x17, new SetPlayerPositionPacket()); + Packets.TryAdd(0x18, new SetPlayerPositionAndRotationPacket()); + Packets.TryAdd(0x19, new SetPlayerRotationPacket()); //Packets.TryAdd(0x15, PlayerMovement); //Packets.TryAdd(0x16, VehicleMove); //Packets.TryAdd(0x17, SteerBoat); @@ -60,7 +60,7 @@ public void RegisterHandlers() //Packets.TryAdd(0x22, AdvancementTab); //Packets.TryAdd(0x23, SelectTrade); //Packets.TryAdd(0x24, SetBeaconEffect); - Packets.TryAdd(0x2B, new SetHeldItemPacket(false)); + Packets.TryAdd(0x2C, new SetHeldItemPacket(false)); //Packets.TryAdd(0x26, UpdateCommandBlock); //Packets.TryAdd(0x27, UpdateCommandBlockMinecart); //Packets.TryAdd(0x28, new CreativeInventoryAction()); ! @@ -70,7 +70,8 @@ public void RegisterHandlers() //Packets.TryAdd(0x2C, new Animation()); //Packets.TryAdd(0x2D, Spectate); //Packets.TryAdd(0x2E, new PlayerBlockPlacement()); ! - Packets.TryAdd(0x35, new UseItemPacket()); + Packets.TryAdd(0x35, new UseItemOnPacket()); + Packets.TryAdd(0x36, new UseItemPacket()); } public async Task HandleConfigurationPackets(int id, byte[] data, Client client) @@ -155,50 +156,50 @@ public async Task HandlePlayPackets(int id, byte[] data, Client client) case 0x0F: await HandleFromPoolAsync(data, client); break; - case 0x12: + case 0x13: await HandleFromPoolAsync(data, client); break; - case 0x14: + case 0x15: await HandleFromPoolAsync(data, client); break; - case 0x1C: + case 0x1D: await HandleFromPoolAsync(data, client); break; - case 0x1E: + case 0x1F: await HandleFromPoolAsync(data, client); break; - case 0x1D: + case 0x21: await HandleFromPoolAsync(data, client); break; - case 0x20: + case 0x22: await HandleFromPoolAsync(data, client); break; - case 0x25: + case 0x26: await HandleFromPoolAsync(data, client); break; - case 0x26: + case 0x27: await HandleFromPoolAsync(data, client); break; - case 0x2E: + case 0x2F: await HandleFromPoolAsync(data, client); break; - case 0x32: + case 0x33: await HandleFromPoolAsync(data, client); break; - case 0x34: + case 0x35: await HandleFromPoolAsync(data, client); break; - case 0x35: + case 0x36: await HandleFromPoolAsync(data, client); break; default: diff --git a/Obsidian/Net/MinecraftStream.Writing.cs b/Obsidian/Net/MinecraftStream.Writing.cs index 1377f8282..947679867 100644 --- a/Obsidian/Net/MinecraftStream.Writing.cs +++ b/Obsidian/Net/MinecraftStream.Writing.cs @@ -1,4 +1,5 @@ -using Obsidian.API.Advancements; +using Obsidian.API; +using Obsidian.API.Advancements; using Obsidian.API.Crafting; using Obsidian.API.Inventory; using Obsidian.API.Registry.Codecs.Dimensions; @@ -14,6 +15,7 @@ using Obsidian.Serialization.Attributes; using System.Buffers.Binary; using System.Text; +using System.Text.Json; namespace Obsidian.Net; @@ -331,6 +333,32 @@ public async Task WriteVarLongAsync(long value) while (unsigned != 0); } + [WriteMethod] + //Just for types that aren't impl yet + public void WriteEmptyObject(object obj) + { + } + + [WriteMethod] + public void WriteSoundEffect(SoundEffect sound) + { + this.WriteString(JsonNamingPolicy.SnakeCaseLower.ConvertName(sound.SoundName ?? sound.SoundId.ToString())); + + if (sound.HasFixedRange) + this.WriteFloat(sound.Range); + } + + [WriteMethod] + public void WriteNbtCompound(NbtCompound compound) + { + var writer = new NbtWriter(this, true); + + foreach (var (_, tag) in compound) + writer.WriteTag(tag); + + writer.TryFinish(); + } + [WriteMethod] public void WriteDateTimeOffset(DateTimeOffset date) { @@ -379,7 +407,58 @@ public void WriteBitSet(BitSet bitset, bool isFixed = false) [WriteMethod] public void WriteChat(ChatMessage chatMessage) { - WriteString(chatMessage.ToString(Globals.JsonOptions)); + if (chatMessage == null) + return; + + var writer = new NbtWriter(this, true); + + this.WriteChatNbt(writer, chatMessage); + + writer.EndCompound(); + writer.TryFinish(); + } + + private void WriteChatNbt(NbtWriter writer, ChatMessage chatMessage) + { + if (!chatMessage.Text.IsNullOrEmpty()) + writer.WriteString("text", chatMessage.Text); + if (!chatMessage.Translate.IsNullOrEmpty()) + writer.WriteString("translate", chatMessage.Translate); + if (chatMessage.Color.HasValue) + writer.WriteString("color", chatMessage.Color.Value.ToString()); + if (!chatMessage.Insertion.IsNullOrEmpty()) + writer.WriteString("insertion", chatMessage.Insertion); + + writer.WriteBool("bold", chatMessage.Bold); + writer.WriteBool("italic", chatMessage.Italic); + writer.WriteBool("underlined", chatMessage.Underlined); + writer.WriteBool("strikethrough", chatMessage.Strikethrough); + writer.WriteBool("obfuscated", chatMessage.Obfuscated); + + if (chatMessage.ClickEvent != null) + writer.WriteTag(chatMessage.ClickEvent.ToNbt()); + if (chatMessage.HoverEvent != null) + writer.WriteTag(chatMessage.HoverEvent.ToNbt()); + + if (chatMessage.Extra is List extras) + { + var list = new NbtList(NbtTagType.Compound, "extra"); + + foreach (var item in extras) + list.Add(item.ToNbt()); + + writer.WriteTag(list); + } + + if (chatMessage.With is List extraChatComponents) + { + var list = new NbtList(NbtTagType.Compound, "with"); + + foreach (var item in extraChatComponents) + list.Add(item.ToNbt()); + + writer.WriteTag(list); + } } [WriteMethod] @@ -1057,11 +1136,12 @@ internal async Task WriteRecipeAsync(string name, IRecipe recipe) int width = patterns[0].Length, height = patterns.Count; + await WriteStringAsync(shapedRecipe.Group ?? ""); + await WriteVarIntAsync(shapedRecipe.Category); + await WriteVarIntAsync(width); await WriteVarIntAsync(height); - await WriteStringAsync(shapedRecipe.Group ?? ""); - var ingredients = new List[width * height]; var y = 0; @@ -1111,6 +1191,7 @@ internal async Task WriteRecipeAsync(string name, IRecipe recipe) var ingredients = shapelessRecipe.Ingredients; await WriteStringAsync(shapelessRecipe.Group ?? ""); + await WriteVarIntAsync(shapelessRecipe.Category); await WriteVarIntAsync(ingredients.Count); foreach (var ingredient in ingredients) @@ -1127,7 +1208,7 @@ internal async Task WriteRecipeAsync(string name, IRecipe recipe) else if (recipe is SmeltingRecipe smeltingRecipe) { await WriteStringAsync(smeltingRecipe.Group ?? ""); - + await WriteVarIntAsync(smeltingRecipe.Category); await WriteVarIntAsync(smeltingRecipe.Ingredient.Count); foreach (var i in smeltingRecipe.Ingredient) @@ -1219,7 +1300,6 @@ public void WriteRecipe(string name, IRecipe recipe) WriteVarInt(height); WriteString(shapedRecipe.Group ?? string.Empty); - WriteVarInt(shapedRecipe.Category); var ingredients = new List[width * height]; @@ -1267,14 +1347,12 @@ public void WriteRecipe(string name, IRecipe recipe) } WriteItemStack(shapedRecipe.Result.First()); - WriteBoolean(shapedRecipe.ShowNotification); } else if (recipe is ShapelessRecipe shapelessRecipe) { var ingredients = shapelessRecipe.Ingredients; WriteString(shapelessRecipe.Group ?? string.Empty); - WriteVarInt(shapelessRecipe.Category); WriteVarInt(ingredients.Count); @@ -1292,7 +1370,6 @@ public void WriteRecipe(string name, IRecipe recipe) else if (recipe is SmeltingRecipe smeltingRecipe) { WriteString(smeltingRecipe.Group ?? string.Empty); - WriteVarInt(smeltingRecipe.Category); WriteVarInt(smeltingRecipe.Ingredient.Count); @@ -1365,12 +1442,6 @@ public void WriteExplosionRecord(ExplosionRecord record) WriteByte(record.Z); } - [WriteMethod] - public void WriteNbtCompound(NbtCompound compound) - { - using var writer = new NbtWriter(BaseStream); - writer.WriteTag(compound); - } [WriteMethod] public void WriteParticleData(ParticleData value) diff --git a/Obsidian/Net/Packets/DisconnectPacket.cs b/Obsidian/Net/Packets/DisconnectPacket.cs index 9b5f48e2e..e6d5979e5 100644 --- a/Obsidian/Net/Packets/DisconnectPacket.cs +++ b/Obsidian/Net/Packets/DisconnectPacket.cs @@ -4,14 +4,25 @@ namespace Obsidian.Net.Packets; public partial class DisconnectPacket : IClientboundPacket { - [Field(0)] + private readonly ClientState state; + + [Field(0), Condition("!IsLoginState")] private ChatMessage Reason { get; } + [Field(1), Condition("IsLoginState")] + private string ReasonJson { get; } + + public bool IsLoginState => this.state == ClientState.Login; + public int Id { get; } public DisconnectPacket(ChatMessage reason, ClientState state) { Id = state == ClientState.Configuration ? 0x01 : state == ClientState.Play ? 0x1B : 0x00; + Reason = reason; + ReasonJson = reason.ToString(Globals.JsonOptions); + + this.state = state; } } diff --git a/Obsidian/Net/Packets/KeepAlivePacket.cs b/Obsidian/Net/Packets/KeepAlivePacket.cs index 1077b82fd..7a023d30c 100644 --- a/Obsidian/Net/Packets/KeepAlivePacket.cs +++ b/Obsidian/Net/Packets/KeepAlivePacket.cs @@ -19,9 +19,8 @@ public KeepAlivePacket(long id) KeepAliveId = id; } - public ValueTask HandleAsync(Server server, Player player) + public async ValueTask HandleAsync(Server server, Player player) { - player.client.HandleKeepAlive(this); - return ValueTask.CompletedTask; + await player.client.HandleKeepAliveAsync(this); } } diff --git a/Obsidian/Net/Packets/Login/LoginStart.cs b/Obsidian/Net/Packets/Login/LoginStart.cs index d639dba93..58764a876 100644 --- a/Obsidian/Net/Packets/Login/LoginStart.cs +++ b/Obsidian/Net/Packets/Login/LoginStart.cs @@ -8,7 +8,7 @@ public sealed partial class LoginStart : IServerboundPacket [Field(0)] public string Username { get; set; } - [Field(1)] + [Field(1), ActualType(typeof(Guid))] public Guid? PlayerUuid { get; set; } public int Id => 0x00; diff --git a/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs index 506ad7804..b6e02fc9a 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/DisplayObjectivePacket.cs @@ -10,5 +10,5 @@ public partial class DisplayObjectivePacket : IClientboundPacket [Field(1), FixedLength(16)] public string ScoreName { get; init; } - public int Id => 0x53; + public int Id => 0x55; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs index 623668631..25cf07dcc 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/EntityEffectPacket.cs @@ -26,7 +26,7 @@ public partial class EntityEffectPacket : IClientboundPacket [Field(6), Condition("HasFactorData")] public NbtCompound FactorCodec { get; init; } - public int Id => 0x6E; + public int Id => 0x72; public EntityEffectPacket(int entityId, int effectId, int duration) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs index 38a3c8fe2..56d19e936 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/EntitySoundEffectPacket.cs @@ -31,5 +31,5 @@ public partial class EntitySoundEffectPacket : IClientboundPacket [Field(8)] public long Seed { get; init; } = Globals.Random.Next(); - public int Id => 0x63; + public int Id => 0x65; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs index c619b2d84..4700e4258 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/ExplosionPacket.cs @@ -5,16 +5,36 @@ namespace Obsidian.Net.Packets.Play.Clientbound; public partial class ExplosionPacket : IClientboundPacket { [Field(0), DataFormat(typeof(double))] - public VectorF Position { get; init; } + public required VectorF Position { get; init; } [Field(1)] - public float Strength { get; init; } + public required float Strength { get; init; } [Field(2)] - public ExplosionRecord[] Records { get; init; } + public required ExplosionRecord[] Records { get; init; } [Field(3)] - public Velocity PlayerMotion { get; init; } + public required Velocity PlayerMotion { get; init; } + + [Field(4), ActualType(typeof(int)), VarLength] + public required BlockInteraction BlockInteraction { get; init; } + + [Field(5), ActualType(typeof(int)), VarLength] + public required ParticleType SmallExplosionParticle { get; init; } + + [Field(6)] + //TODO SOME PARTICLES HAVE ADDITIONAL DATA IMPLEMENT THIS SOMEHOW?????? + public required object SmallExplosionParticleData { get; init; } + + [Field(7), ActualType(typeof(int)), VarLength] + public required ParticleType LargeExplisionParticle { get; init; } + + [Field(8)] + //TODO SOME PARTICLES HAVE ADDITIONAL DATA IMPLEMENT THIS SOMEHOW?????? + public required object LargeExplosionParticleData { get; init; } + + [Field(9)] + public required SoundEffect ExplosionSound { get; init; } public int Id => 0x1E; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs index ad0f36fd3..c0cfabaa0 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/GameEventPacket.cs @@ -92,5 +92,9 @@ public enum ChangeGameStateReason : byte PlayElderGuardianMobAppearance, - EnableRespawnScreen + EnableRespawnScreen, + + LimitedCrafting, + + StartWaitingForLevelChunks, } diff --git a/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs index 33e5ab541..c6addf064 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/PickupItemPacket.cs @@ -13,5 +13,5 @@ public partial class PickupItemPacket : IClientboundPacket [Field(2), VarLength] public int PickupItemCount { get; init; } - public int Id => 0x6A; + public int Id => 0x6C; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs index 807fbc719..ee3584f29 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/RespawnPacket.cs @@ -47,5 +47,5 @@ public partial class RespawnPacket : IClientboundPacket [Field(11), ActualType(typeof(sbyte))] public DataKept DataKept { get; init; } - public int Id => 0x43; + public int Id => 0x45; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs index c9d9982d5..91f9076e8 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetActionBarTextPacket.cs @@ -7,5 +7,5 @@ public partial class SetActionBarTextPacket : IClientboundPacket [Field(0)] public required string Text { get; init; } - public int Id => 0x48; + public int Id => 0x4A; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs index 31a93d0bb..34a542fec 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetCenterChunkPacket.cs @@ -2,7 +2,7 @@ namespace Obsidian.Net.Packets.Play.Clientbound; -// Source: https://wiki.vg/index.php?title=Protocol#Update_View_Position +// Source: https://wiki.vg/Protocol#Set_Center_Chunk public partial class SetCenterChunkPacket : IClientboundPacket { [Field(0), VarLength] @@ -17,5 +17,5 @@ public SetCenterChunkPacket(int chunkX, int chunkZ) ChunkZ = chunkZ; } - public int Id => 0x50; + public int Id => 0x52; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs index 30aba860a..efa732972 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetDefaultSpawnPositionPacket.cs @@ -10,7 +10,7 @@ public partial class SetDefaultSpawnPositionPacket : IClientboundPacket [Field(1), DataFormat(typeof(float))] public Angle Angle { get; set; } - public int Id => 0x52; + public int Id => 0x54; public SetDefaultSpawnPositionPacket(VectorF position) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs index e90bed3b9..7c1cc25a9 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetEntityMetadataPacket.cs @@ -11,5 +11,5 @@ public partial class SetEntityMetadataPacket : IClientboundPacket [Field(1)] public Entity Entity { get; init; } - public int Id => 0x54; + public int Id => 0x56; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs index c7bbc70dc..ee3621d2f 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetEntityVelocityPacket.cs @@ -10,5 +10,5 @@ public partial class SetEntityVelocityPacket : IClientboundPacket [Field(1)] public Velocity Velocity { get; init; } - public int Id => 0x56; + public int Id => 0x58; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs index adf3a8a83..df8886c48 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetEquipmentPacket.cs @@ -11,7 +11,7 @@ public partial class SetEquipmentPacket : IClientboundPacket [Field(1)] public List Equipment { get; init; } - public int Id => 0x57; + public int Id => 0x59; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs index 391af1784..8600a1957 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetExperiencePacket.cs @@ -13,7 +13,7 @@ public partial class SetExperiencePacket : IClientboundPacket [Field(2), VarLength] public int TotalExperience { get; } - public int Id => 0x58; + public int Id => 0x5A; public SetExperiencePacket(float experienceBar, int level, int totalExperience) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetHeadRotationPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetHeadRotationPacket.cs index 6798a5761..de78a2cff 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetHeadRotationPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetHeadRotationPacket.cs @@ -10,5 +10,5 @@ public partial class SetHeadRotationPacket : IClientboundPacket [Field(1)] public Angle HeadYaw { get; init; } - public int Id => 0x44; + public int Id => 0x46; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs index 991b50815..246675d13 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetHealthPacket.cs @@ -13,7 +13,7 @@ public partial class SetHealthPacket : IClientboundPacket [Field(2)] public float FoodSaturation { get; } - public int Id => 0x59; + public int Id => 0x5B; public SetHealthPacket(float health, int food, float foodSaturation) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetTabListHeaderAndFooterPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetTabListHeaderAndFooterPacket.cs index 4b8bd6e46..68c425807 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetTabListHeaderAndFooterPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetTabListHeaderAndFooterPacket.cs @@ -10,7 +10,7 @@ public partial class SetTabListHeaderAndFooterPacket : IClientboundPacket [Field(1)] public ChatMessage Footer { get; } - public int Id => 0x68; + public int Id => 0x6A; //TODO send empty text component when writing chat message for this e.x {"text":""} public SetTabListHeaderAndFooterPacket(ChatMessage? header, ChatMessage? footer) diff --git a/Obsidian/Net/Packets/Play/Clientbound/SetTitleTextPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SetTitleTextPacket.cs index af4ee5ce0..b737fc8d2 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SetTitleTextPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SetTitleTextPacket.cs @@ -11,7 +11,7 @@ public partial class SetTitleTextPacket : IClientboundPacket public SetTitleTextPacket(TitleMode mode) { - this.Id = mode == TitleMode.SetTitle ? 0x61 : 0x5F; + this.Id = mode == TitleMode.SetTitle ? 0x63 : 0x61; } } @@ -26,7 +26,7 @@ public partial class SetTitleAnimationTimesPacket : IClientboundPacket [Field(2)] public int FadeOut { get; set; } - public int Id => 0X62; + public int Id => 0X64; } public enum TitleMode diff --git a/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs index 15fdfa3fe..ea19fdc5d 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SoundEffectPacket.cs @@ -30,5 +30,5 @@ public partial class SoundEffectPacket : IClientboundPacket [Field(8)] public long Seed { get; init; } - public int Id => 0x64; + public int Id => 0x66; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs index ca3c8e853..7e3d146f1 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/StartConfigurationPacket.cs @@ -3,7 +3,7 @@ //TODO WRITE public sealed partial class StartConfigurationPacket : IClientboundPacket { - public int Id => 0x65; + public int Id => 0x67; public void Serialize(MinecraftStream stream) => this.WritePacketId(stream); } diff --git a/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs index 17b7f4b63..aeb816eb0 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/SystemChatMessagePacket.cs @@ -9,7 +9,7 @@ public partial class SystemChatMessagePacket : IClientboundPacket [Field(1)] public bool Overlay { get; } - public int Id => 0x67; + public int Id => 0x69; public SystemChatMessagePacket(ChatMessage message, bool overlay) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/TeleportEntityPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/TeleportEntityPacket.cs index 93a846cf7..368055ec8 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/TeleportEntityPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/TeleportEntityPacket.cs @@ -19,5 +19,5 @@ public partial class TeleportEntityPacket : IClientboundPacket [Field(4)] public bool OnGround { get; init; } - public int Id => 0x6B; + public int Id => 0x6D; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs index 56cadf77e..426fe1bac 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateAdvancementsPacket.cs @@ -15,7 +15,7 @@ public partial class UpdateAdvancementsPacket : IClientboundPacket [Field(2)] public List RemovedAdvancements { get; set; } - public int Id => 0x6C; + public int Id => 0x70; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs index e1188870a..e48784d51 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateObjectivesPacket.cs @@ -1,4 +1,6 @@ -using Obsidian.Serialization.Attributes; +using Obsidian.Nbt; +using Obsidian.Net.Scoreboard; +using Obsidian.Serialization.Attributes; namespace Obsidian.Net.Packets.Play.Clientbound; @@ -10,20 +12,28 @@ public partial class UpdateObjectivesPacket : IClientboundPacket [Field(1), ActualType(typeof(sbyte))] public required ScoreboardMode Mode { get; init; } - [Field(2), ActualType(typeof(ChatMessage)), Condition(nameof(ShouldWriteValue))] + [Field(2), Condition(nameof(ShouldWriteValue)), ActualType(typeof(ChatMessage))] public ChatMessage? Value { get; init; } [Field(3), VarLength, ActualType(typeof(int)), Condition(nameof(ShouldWriteValue))] public DisplayType Type { get; init; } - public int Id => 0x5A; + [Field(4), Condition(nameof(ShouldWriteValue))] + public bool HasNumberFormat { get; init; } + + [Field(5), ActualType(typeof(int)), VarLength, Condition("ShouldWriteValue && HasNumberFormat")] + public NumberFormat NumberFormat { get; init; } + + [Field(6), Condition("NumberFormat == NumberFormat.Styled"), ActualType(typeof(NbtCompound))] + public NbtCompound? StyledFormat { get; init; } + + [Field(6), Condition("NumberFormat == NumberFormat.Fixed"), ActualType(typeof(ChatMessage))] + public ChatMessage? Content { get; init; } + + public int Id => 0x5C; private bool ShouldWriteValue => Mode is ScoreboardMode.Create or ScoreboardMode.Update; } -public enum ScoreboardMode : sbyte -{ - Create, - Remove, - Update -} + + diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs index ce8f3f0a3..5160b6b0d 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateRecipesPacket.cs @@ -9,7 +9,7 @@ public partial class UpdateRecipesPacket : IClientboundPacket [Field(0)] public IDictionary Recipes { get; } - public int Id => 0x6F; + public int Id => 0x73; public static readonly UpdateRecipesPacket FromRegistry = new(RecipesRegistry.Recipes); diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs index ce76f18f0..d7df6865b 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateScorePacket.cs @@ -1,4 +1,6 @@ -using Obsidian.Serialization.Attributes; +using Obsidian.Nbt; +using Obsidian.Net.Scoreboard; +using Obsidian.Serialization.Attributes; namespace Obsidian.Net.Packets.Play.Clientbound; @@ -7,26 +9,38 @@ public partial class UpdateScorePacket : IClientboundPacket /// /// The entity whose score this is. For players, this is their username; for other entities, it is their UUID. /// - [Field(0), FixedLength(40)] - public string EntityName { get; init; } - - /// - /// 0 to create/update an item. 1 to remove an item. - /// - [Field(1), VarLength] - public int Action { get; init; } + [Field(0)] + public required string EntityName { get; init; } /// /// The name of the objective the score belongs to. /// - [Field(3), FixedLength(16)] - public string ObjectiveName { get; init; } + [Field(1)] + public required string ObjectiveName { get; init; } /// /// The score to be displayed next to the entry. Only sent when Action does not equal 1. /// - [Field(4), VarLength, Condition(nameof(Action) + " != 1")] + [Field(2), VarLength] public int Value { get; init; } - public int Id => 0x5D; + [Field(3)] + public required bool HasDisplayName { get; init; } + + [Field(4), Condition(nameof(HasDisplayName)), ActualType(typeof(ChatMessage))] + public ChatMessage? DisplayName { get; init; } + + [Field(5)] + public required bool HasNumberFormat { get; init; } + + [Field(6), ActualType(typeof(int)), VarLength, Condition("HasNumberFormat")] + public NumberFormat NumberFormat { get; init; } + + [Field(7), Condition("NumberFormat == NumberFormat.Styled"), ActualType(typeof(NbtCompound))] + public NbtCompound? StyledFormat { get; init; } + + [Field(7), Condition("NumberFormat == NumberFormat.Fixed"), ActualType(typeof(ChatMessage))] + public ChatMessage? Content { get; init; } + + public int Id => 0x5F; } diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs index 65a12e711..d89262934 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateTeamsPacket.cs @@ -35,7 +35,7 @@ public partial class UpdateTeamsPacket : IClientboundPacket [Field(9), Condition("Mode != TeamModeOption.RemoveTeam || Mode != TeamModeOption.UpdateTeam")] public HashSet Entities { get; set; } = new(); - public int Id => 0x5C; + public int Id => 0x5E; public void Serialize(MinecraftStream stream) { diff --git a/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs b/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs index ae323fe3d..3dd2dc619 100644 --- a/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs +++ b/Obsidian/Net/Packets/Play/Clientbound/UpdateTimePacket.cs @@ -10,7 +10,7 @@ public partial class UpdateTimePacket : IClientboundPacket [Field(1)] public long TimeOfDay { get; } - public int Id => 0x60; + public int Id => 0x62; public UpdateTimePacket(long worldAge, long timeOfDay) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs index 3b795842d..5124be933 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/InteractPacket.cs @@ -21,7 +21,7 @@ public partial class InteractPacket : IServerboundPacket [Field(4)] public bool Sneaking { get; private set; } - public int Id => 0x12; + public int Id => 0x13; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/PickItemPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/PickItemPacket.cs index f9e9941be..84a1ad091 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/PickItemPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/PickItemPacket.cs @@ -8,7 +8,7 @@ public partial class PickItemPacket : IServerboundPacket [Field(0), VarLength] public int SlotToUse { get; private set; } - public int Id => 0x1C; + public int Id => 0x1D; public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; } diff --git a/Obsidian/Net/Packets/Play/Serverbound/PlaceRecipePacket.cs b/Obsidian/Net/Packets/Play/Serverbound/PlaceRecipePacket.cs index 574d8a8bb..3bab1197a 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/PlaceRecipePacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/PlaceRecipePacket.cs @@ -15,7 +15,7 @@ public partial class PlaceRecipePacket : IServerboundPacket [Field(2)] public bool MakeAll { get; private set; } - public int Id => 0x1E; + public int Id => 0x1F; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/PlayerActionPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/PlayerActionPacket.cs index ebff48cf0..dffc9be25 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/PlayerActionPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/PlayerActionPacket.cs @@ -20,7 +20,7 @@ public partial class PlayerActionPacket : IServerboundPacket [Field(3), VarLength] public int Sequence { get; private set; } - public int Id => 0x20; + public int Id => 0x21; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/PlayerCommandPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/PlayerCommandPacket.cs index 3037d70e5..5336b3529 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/PlayerCommandPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/PlayerCommandPacket.cs @@ -15,7 +15,7 @@ public partial class PlayerCommandPacket : IServerboundPacket [Field(2), VarLength] public int JumpBoost { get; set; } - public int Id => 0x21; + public int Id => 0x22; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/RenameItemPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/RenameItemPacket.cs index 61b68fa02..c80ddef8a 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/RenameItemPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/RenameItemPacket.cs @@ -8,7 +8,7 @@ public partial class RenameItemPacket : IServerboundPacket [Field(0)] public string ItemName { get; private set; } - public int Id => 0x26; + public int Id => 0x27; public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; } diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetCreativeModeSlotPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetCreativeModeSlotPacket.cs index 13a3482e9..05faba995 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SetCreativeModeSlotPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SetCreativeModeSlotPacket.cs @@ -12,7 +12,7 @@ public partial class SetCreativeModeSlotPacket : IServerboundPacket [Field(1)] public ItemStack ClickedItem { get; private set; } - public int Id => 0x2E; + public int Id => 0x2F; public ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionAndRotationPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionAndRotationPacket.cs index b8a6329e6..e92b457a8 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionAndRotationPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionAndRotationPacket.cs @@ -18,7 +18,7 @@ public partial class SetPlayerPositionAndRotationPacket : IServerboundPacket [Field(3)] public bool OnGround { get; private set; } - public int Id => 0x17; + public int Id => 0x18; public async ValueTask HandleAsync(Server server, Player player) { @@ -26,7 +26,7 @@ public async ValueTask HandleAsync(Server server, Player player) if (player.Position.ToChunkCoord() != player.LastPosition.ToChunkCoord()) { (int cx, int cz) = player.Position.ToChunkCoord(); - player.client.SendPacket(new SetCenterChunkPacket(cx, cz)); + await player.client.QueuePacketAsync(new SetCenterChunkPacket(cx, cz)); } player.LastPosition = player.Position; diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionPacket.cs index 2ab84ef4e..bb0fda817 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerPositionPacket.cs @@ -12,7 +12,7 @@ public partial class SetPlayerPositionPacket : IServerboundPacket [Field(1)] public bool OnGround { get; private set; } - public int Id => 0x16; + public int Id => 0x17; public SetPlayerPositionPacket() { @@ -31,7 +31,7 @@ public async ValueTask HandleAsync(Server server, Player player) { await player.UpdateChunksAsync(distance: player.ClientInformation.ViewDistance); (int cx, int cz) = player.Position.ToChunkCoord(); - player.client.SendPacket(new SetCenterChunkPacket(cx, cz)); + await player.client.QueuePacketAsync(new SetCenterChunkPacket(cx, cz)); } player.LastPosition = player.Position; diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerRotationPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerRotationPacket.cs index dfa63d94a..6906023af 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SetPlayerRotationPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SetPlayerRotationPacket.cs @@ -14,7 +14,7 @@ public partial class SetPlayerRotationPacket : IServerboundPacket [Field(2)] public bool OnGround { get; private set; } - public int Id => 0x18; + public int Id => 0x19; public SetPlayerRotationPacket() { diff --git a/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs index 3d4b80cb6..28b041c07 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SetSeenRecipePacket.cs @@ -8,7 +8,7 @@ public partial class SetSeenRecipePacket : IServerboundPacket [Field(0)] public string RecipeId { get; private set; } - public int Id => 0x25; + public int Id => 0x26; public ValueTask HandleAsync(Server server, Player player) => ValueTask.CompletedTask; } diff --git a/Obsidian/Net/Packets/Play/Serverbound/SwingArmPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/SwingArmPacket.cs index 0c7146a40..da70967df 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/SwingArmPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/SwingArmPacket.cs @@ -9,7 +9,7 @@ public partial class SwingArmPacket : IServerboundPacket [Field(0), ActualType(typeof(int)), VarLength] public Hand Hand { get; private set; } - public int Id => 0x32; + public int Id => 0x33; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs index 42eaeb7c9..f9eed2e8d 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/UseItemOnPacket.cs @@ -1,5 +1,4 @@ -using Microsoft.Extensions.Logging; -using Obsidian.API.Events; +using Obsidian.API.Events; using Obsidian.Entities; using Obsidian.Net.Packets.Play.Clientbound; using Obsidian.Registries; @@ -27,7 +26,7 @@ public partial class UseItemOnPacket : IServerboundPacket [Field(7), VarLength] public int Sequence { get; private set; } - public int Id => 0x34; + public int Id => 0x35; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/Serverbound/UseItemPacket.cs b/Obsidian/Net/Packets/Play/Serverbound/UseItemPacket.cs index 1cf306587..4e0256c1a 100644 --- a/Obsidian/Net/Packets/Play/Serverbound/UseItemPacket.cs +++ b/Obsidian/Net/Packets/Play/Serverbound/UseItemPacket.cs @@ -12,7 +12,7 @@ public partial class UseItemPacket : IServerboundPacket [Field(1), VarLength] public int Sequence { get; private set; } - public int Id => 0x35; + public int Id => 0x36; public async ValueTask HandleAsync(Server server, Player player) { diff --git a/Obsidian/Net/Packets/Play/SetHeldItemPacket.cs b/Obsidian/Net/Packets/Play/SetHeldItemPacket.cs index 28c1ae5df..91cdef3e5 100644 --- a/Obsidian/Net/Packets/Play/SetHeldItemPacket.cs +++ b/Obsidian/Net/Packets/Play/SetHeldItemPacket.cs @@ -14,7 +14,7 @@ public partial class SetHeldItemPacket : IServerboundPacket, IClientboundPacket public SetHeldItemPacket(bool toClient) { - this.Id = toClient ? 0x4F : 0x2B; + this.Id = toClient ? 0x51 : 0x2C; } public void Serialize(MinecraftStream stream) diff --git a/Obsidian/Net/Packets/UpdateTagsPacket.cs b/Obsidian/Net/Packets/UpdateTagsPacket.cs index 59d383108..e78e2c25b 100644 --- a/Obsidian/Net/Packets/UpdateTagsPacket.cs +++ b/Obsidian/Net/Packets/UpdateTagsPacket.cs @@ -6,8 +6,8 @@ public sealed partial class UpdateTagsPacket : IClientboundPacket [Field(0)] public IDictionary Tags { get; } - //0x70 for play state - public int Id { get; init; } = 0x08; + //TODO FOR RELOADS 0x74 for play state + public int Id { get; init; } = 0x09; public static UpdateTagsPacket FromRegistry { get; } = new(Registries.TagsRegistry.Categories); diff --git a/Obsidian/Net/Scoreboard/NumberFormat.cs b/Obsidian/Net/Scoreboard/NumberFormat.cs new file mode 100644 index 000000000..55fa73655 --- /dev/null +++ b/Obsidian/Net/Scoreboard/NumberFormat.cs @@ -0,0 +1,10 @@ +namespace Obsidian.Net.Scoreboard; +public enum NumberFormat +{ + Blank, + + Styled, + + Fixed +} + diff --git a/Obsidian/Net/Scoreboard/ScoreboardMode.cs b/Obsidian/Net/Scoreboard/ScoreboardMode.cs new file mode 100644 index 000000000..d141c3a6d --- /dev/null +++ b/Obsidian/Net/Scoreboard/ScoreboardMode.cs @@ -0,0 +1,7 @@ +namespace Obsidian.Net.Scoreboard; +public enum ScoreboardMode : sbyte +{ + Create, + Remove, + Update +} diff --git a/Obsidian/Obsidian.csproj b/Obsidian/Obsidian.csproj index e0b26b826..a20106810 100644 --- a/Obsidian/Obsidian.csproj +++ b/Obsidian/Obsidian.csproj @@ -77,10 +77,10 @@ + - @@ -90,6 +90,7 @@ + @@ -98,7 +99,9 @@ - + + Never + diff --git a/Obsidian/Registries/BlocksRegistry.cs b/Obsidian/Registries/BlocksRegistry.cs index bf576fccb..5886f5e6c 100644 --- a/Obsidian/Registries/BlocksRegistry.cs +++ b/Obsidian/Registries/BlocksRegistry.cs @@ -140,7 +140,9 @@ private static string GetSanitizedName(string value) { var sanitizedBlockName = value; if (sanitizedBlockName == "Obsidian") - sanitizedBlockName = $"{value}Block"; + sanitizedBlockName = "ObsidianBlock"; + if (sanitizedBlockName == "TrialSpawner") + sanitizedBlockName = "TrialSpawnerBlock"; return sanitizedBlockName; } diff --git a/Obsidian/Scoreboard.cs b/Obsidian/Scoreboard.cs index cc6a880e2..e8e9cc085 100644 --- a/Obsidian/Scoreboard.cs +++ b/Obsidian/Scoreboard.cs @@ -1,4 +1,5 @@ using Obsidian.Net.Packets.Play.Clientbound; +using Obsidian.Net.Scoreboard; namespace Obsidian; @@ -20,7 +21,7 @@ public Scoreboard(string name, Server server) this.server = server; } - public async Task CreateOrUpdateObjectiveAsync(ChatMessage title, DisplayType displayType = DisplayType.Integer) + public async Task CreateOrUpdateObjectiveAsync(ChatMessage title, DisplayType displayType = DisplayType.Integer)//TODO impl new scoreboard stuff { var packet = new UpdateObjectivesPacket { @@ -55,8 +56,9 @@ await player.client.QueuePacketAsync(new UpdateScorePacket { EntityName = score.DisplayText, ObjectiveName = this.name, - Action = 0, - Value = score.Value + Value = score.Value, + HasDisplayName = false, + HasNumberFormat = false }); } } @@ -64,6 +66,7 @@ await player.client.QueuePacketAsync(new UpdateScorePacket } } + //TODO impl new scoreboard stuff public async Task CreateOrUpdateScoreAsync(string scoreName, string displayText, int? value = null) { var score = new Score(displayText, value ?? 0); @@ -84,7 +87,8 @@ await player.client.QueuePacketAsync(new UpdateScorePacket { EntityName = score.DisplayText, ObjectiveName = this.name, - Action = 1, + HasDisplayName = false, + HasNumberFormat = false, }); } @@ -114,14 +118,16 @@ await player.client.QueuePacketAsync(new UpdateScorePacket { EntityName = s.DisplayText, ObjectiveName = this.name, - Action = 0, - Value = s.Value + Value = s.Value, + HasDisplayName = false, + HasNumberFormat = false, }); } } } + //TODO impl new scoreboard stuff public async Task RemoveScoreAsync(string scoreName) { if (this.scores.Remove(scoreName, out var score)) @@ -135,7 +141,8 @@ await player.client.QueuePacketAsync(new UpdateScorePacket { EntityName = score.DisplayText, ObjectiveName = this.name, - Action = 1, + HasDisplayName = false, + HasNumberFormat = false, }); } @@ -162,6 +169,7 @@ public async Task RemoveObjectiveAsync() } } + //TODO impl new scoreboard stuff private async Task UpdateObjectiveAsync(UpdateObjectivesPacket packet) { foreach (var (_, player) in this.server.OnlinePlayers) @@ -176,8 +184,9 @@ await player.client.QueuePacketAsync(new UpdateScorePacket { EntityName = score.DisplayText, ObjectiveName = this.name, - Action = 0, - Value = score.Value + Value = score.Value, + HasDisplayName = false, + HasNumberFormat = false }); } } diff --git a/Obsidian/Server.cs b/Obsidian/Server.cs index afe3977f3..7ff9f2008 100644 --- a/Obsidian/Server.cs +++ b/Obsidian/Server.cs @@ -50,7 +50,7 @@ public static string VERSION } } #endif - public const ProtocolVersion DefaultProtocol = ProtocolVersion.v1_20_2; + public const ProtocolVersion DefaultProtocol = ProtocolVersion.v1_20_3; public const string PersistentDataPath = "persistentdata"; public const string PermissionPath = "permissions"; diff --git a/Obsidian/Utilities/Converters/RecipeConverter.cs b/Obsidian/Utilities/Converters/RecipeConverter.cs index 8b1137f7f..f71aac77b 100644 --- a/Obsidian/Utilities/Converters/RecipeConverter.cs +++ b/Obsidian/Utilities/Converters/RecipeConverter.cs @@ -55,8 +55,7 @@ public sealed class RecipesConverter : JsonConverter Category = Enum.Parse(value.GetProperty("category").GetString()!, true), Key = value.GetProperty("key").Deserialize>(options)!.AsReadOnly(), Pattern = value.GetProperty("pattern").Deserialize(options)!.AsReadOnly(), - Result = result, - ShowNotification = value.GetProperty("show_notification").GetBoolean() + Result = result }); break; case CraftingType.CraftingShapeless: diff --git a/Obsidian/Utilities/Extensions.Nbt.cs b/Obsidian/Utilities/Extensions.Nbt.cs index 5dc2a7da9..1e595fb75 100644 --- a/Obsidian/Utilities/Extensions.Nbt.cs +++ b/Obsidian/Utilities/Extensions.Nbt.cs @@ -7,12 +7,76 @@ using Obsidian.API.Utilities; using Obsidian.Nbt; using Obsidian.Registries; +using System.Text.Json; namespace Obsidian.Utilities; //TODO MAKE NBT DE/SERIALIZERS PLEASE public partial class Extensions { + public static NbtCompound ToNbt(this ChatMessage chatMessage, string name = "") + { + var compound = new NbtCompound(name) + { + new NbtTag("bold", chatMessage.Bold), + new NbtTag("italic", chatMessage.Italic), + new NbtTag("underlined", chatMessage.Underlined), + new NbtTag("strikethrough", chatMessage.Strikethrough), + new NbtTag("obfuscated", chatMessage.Obfuscated) + }; + + if (!chatMessage.Text.IsNullOrEmpty()) + compound.Add(new NbtTag("text", chatMessage.Text!)); + if (!chatMessage.Translate.IsNullOrEmpty()) + compound.Add(new NbtTag("translate", chatMessage.Translate!)); + if (chatMessage.Color.HasValue) + compound.Add(new NbtTag("color", chatMessage.Color.Value.ToString())); + if (!chatMessage.Insertion.IsNullOrEmpty()) + compound.Add(new NbtTag("insertion", chatMessage.Insertion!)); + + if (chatMessage.ClickEvent != null) + compound.Add(chatMessage.ClickEvent.ToNbt()); + if (chatMessage.HoverEvent != null) + compound.Add(chatMessage.HoverEvent.ToNbt()); + + return compound; + } + + public static NbtCompound ToNbt(this HoverComponent hoverComponent) + { + var compound = new NbtCompound("hoverEvent") + { + new NbtTag("action", JsonNamingPolicy.SnakeCaseLower.ConvertName(hoverComponent.Action.ToString())), + }; + + + if (hoverComponent.Contents is HoverChatContent chatContent) + compound.Add(chatContent.ChatMessage.ToNbt("contents")); + else if (hoverComponent.Contents is HoverItemContent) + throw new NotImplementedException("Missing properties from ItemStack can't implement."); + else if (hoverComponent.Contents is HoverEntityComponent entityComponent) + { + var entityCompound = new NbtCompound("contents") + { + new NbtTag("id", entityComponent.Entity.Uuid.ToString()), + }; + + if (entityComponent.Entity.CustomName is ChatMessage name) + entityCompound.Add(name.ToNbt("name")); + else + entityCompound.Add(new NbtTag("name", entityComponent.Entity.Type.ToString())); + } + + return compound; + } + + public static NbtCompound ToNbt(this ClickComponent clickComponent) => new("clickEvent") + { + new NbtTag("action", JsonNamingPolicy.SnakeCaseLower.ConvertName(clickComponent.Action.ToString())), + new NbtTag("value", clickComponent.Value) + }; + + public static NbtCompound ToNbt(this ItemStack? value) { value ??= new ItemStack(0, 0) { Present = true }; diff --git a/Obsidian/WorldData/Decorators/BirchForestDecorator.cs b/Obsidian/WorldData/Decorators/BirchForestDecorator.cs index 568a3a98b..f0c378d6e 100644 --- a/Obsidian/WorldData/Decorators/BirchForestDecorator.cs +++ b/Obsidian/WorldData/Decorators/BirchForestDecorator.cs @@ -38,6 +38,6 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); } } diff --git a/Obsidian/WorldData/Decorators/DarkForestDecorator.cs b/Obsidian/WorldData/Decorators/DarkForestDecorator.cs index eccd9366c..d0e00b30f 100644 --- a/Obsidian/WorldData/Decorators/DarkForestDecorator.cs +++ b/Obsidian/WorldData/Decorators/DarkForestDecorator.cs @@ -28,7 +28,7 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var poppyNoise = noise.Decoration.GetValue(worldX * 0.03, 9, worldZ * 0.03); // 0.03 makes more groupings if (poppyNoise > 1) diff --git a/Obsidian/WorldData/Decorators/FlowerForestDecorator.cs b/Obsidian/WorldData/Decorators/FlowerForestDecorator.cs index ec5199915..6e7eb12f4 100644 --- a/Obsidian/WorldData/Decorators/FlowerForestDecorator.cs +++ b/Obsidian/WorldData/Decorators/FlowerForestDecorator.cs @@ -42,7 +42,7 @@ public override void Decorate() // Flowers var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); if (noise.Decoration.GetValue(worldX * 0.1, 6, worldZ * 0.1) > 0.8) chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.SweetBerryBush); diff --git a/Obsidian/WorldData/Decorators/ForestDecorator.cs b/Obsidian/WorldData/Decorators/ForestDecorator.cs index 5d62164a3..fc5a11d72 100644 --- a/Obsidian/WorldData/Decorators/ForestDecorator.cs +++ b/Obsidian/WorldData/Decorators/ForestDecorator.cs @@ -37,7 +37,7 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 0, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.1) - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); if (noise.Decoration.GetValue(worldX * 0.03, 10, worldZ * 0.03) > 0.8) { diff --git a/Obsidian/WorldData/Decorators/GroveDecorator.cs b/Obsidian/WorldData/Decorators/GroveDecorator.cs index a3bff1e69..669f2a096 100644 --- a/Obsidian/WorldData/Decorators/GroveDecorator.cs +++ b/Obsidian/WorldData/Decorators/GroveDecorator.cs @@ -34,6 +34,6 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); } } diff --git a/Obsidian/WorldData/Decorators/MountainsDecorator.cs b/Obsidian/WorldData/Decorators/MountainsDecorator.cs index c1681ad7f..1322dce88 100644 --- a/Obsidian/WorldData/Decorators/MountainsDecorator.cs +++ b/Obsidian/WorldData/Decorators/MountainsDecorator.cs @@ -43,7 +43,7 @@ public override void Decorate() var cornFlowerNoise = noise.Decoration.GetValue(worldX * 0.03, 11, worldZ * 0.03); // 0.03 makes more groupings if (cornFlowerNoise > 1) - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var azureNoise = noise.Decoration.GetValue(worldX * 0.03, 12, worldZ * 0.03); // 0.03 makes more groupings if (azureNoise > 1) diff --git a/Obsidian/WorldData/Decorators/MushroomFieldsDecorator.cs b/Obsidian/WorldData/Decorators/MushroomFieldsDecorator.cs index d66de7f31..e7347c73b 100644 --- a/Obsidian/WorldData/Decorators/MushroomFieldsDecorator.cs +++ b/Obsidian/WorldData/Decorators/MushroomFieldsDecorator.cs @@ -30,7 +30,7 @@ public override void Decorate() // Flowers var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var poppyNoise = noise.Decoration.GetValue(worldX * 0.03, 9, worldZ * 0.03); // 0.03 makes more groupings if (poppyNoise > 1) diff --git a/Obsidian/WorldData/Decorators/OldGrowthBirchForestDecorator.cs b/Obsidian/WorldData/Decorators/OldGrowthBirchForestDecorator.cs index efc5b6c90..41d493eb3 100644 --- a/Obsidian/WorldData/Decorators/OldGrowthBirchForestDecorator.cs +++ b/Obsidian/WorldData/Decorators/OldGrowthBirchForestDecorator.cs @@ -36,6 +36,6 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); } } diff --git a/Obsidian/WorldData/Decorators/OldGrowthSpruceTaigaDecorator.cs b/Obsidian/WorldData/Decorators/OldGrowthSpruceTaigaDecorator.cs index 5b2550703..59451d6dc 100644 --- a/Obsidian/WorldData/Decorators/OldGrowthSpruceTaigaDecorator.cs +++ b/Obsidian/WorldData/Decorators/OldGrowthSpruceTaigaDecorator.cs @@ -33,7 +33,7 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 0, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.1) - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var dandelionNoise = noise.Decoration.GetValue(worldX * 0.1, 1, worldZ * 0.1); if (dandelionNoise > 0 && dandelionNoise < 0.05) diff --git a/Obsidian/WorldData/Decorators/PlainsDecorator.cs b/Obsidian/WorldData/Decorators/PlainsDecorator.cs index e108fac5b..243e759ac 100644 --- a/Obsidian/WorldData/Decorators/PlainsDecorator.cs +++ b/Obsidian/WorldData/Decorators/PlainsDecorator.cs @@ -35,6 +35,6 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); } } diff --git a/Obsidian/WorldData/Decorators/SavannaDecorator.cs b/Obsidian/WorldData/Decorators/SavannaDecorator.cs index 0dbe90ddc..cf46e4c03 100644 --- a/Obsidian/WorldData/Decorators/SavannaDecorator.cs +++ b/Obsidian/WorldData/Decorators/SavannaDecorator.cs @@ -29,7 +29,7 @@ public override void Decorate() // Flowers var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var poppyNoise = noise.Decoration.GetValue(worldX * 0.03, 9, worldZ * 0.03); // 0.03 makes more groupings if (poppyNoise > 1) diff --git a/Obsidian/WorldData/Decorators/StonyPeaksDecorator.cs b/Obsidian/WorldData/Decorators/StonyPeaksDecorator.cs index 89e79d781..81bfa1426 100644 --- a/Obsidian/WorldData/Decorators/StonyPeaksDecorator.cs +++ b/Obsidian/WorldData/Decorators/StonyPeaksDecorator.cs @@ -43,7 +43,7 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.03, 11, worldZ * 0.03); if (grassNoise > 1) - chunk.SetBlock(pos, BlocksRegistry.Grass); + chunk.SetBlock(pos, BlocksRegistry.ShortGrass); var coalNoise = noise.Decoration.GetValue(worldX * 0.03, 12, worldZ * 0.03); if (coalNoise > 1) diff --git a/Obsidian/WorldData/Decorators/SunflowerPlainsDecorator.cs b/Obsidian/WorldData/Decorators/SunflowerPlainsDecorator.cs index f26837962..e32b46ff1 100644 --- a/Obsidian/WorldData/Decorators/SunflowerPlainsDecorator.cs +++ b/Obsidian/WorldData/Decorators/SunflowerPlainsDecorator.cs @@ -35,6 +35,6 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); } } diff --git a/Obsidian/WorldData/Decorators/TaigaDecorator.cs b/Obsidian/WorldData/Decorators/TaigaDecorator.cs index ad65df1de..877699c5b 100644 --- a/Obsidian/WorldData/Decorators/TaigaDecorator.cs +++ b/Obsidian/WorldData/Decorators/TaigaDecorator.cs @@ -31,7 +31,7 @@ public override void Decorate() var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 0, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.1) - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var dandelionNoise = noise.Decoration.GetValue(worldX * 0.1, 1, worldZ * 0.1); if (dandelionNoise > 0 && dandelionNoise < 0.05) diff --git a/Obsidian/WorldData/Decorators/WoodedBadlandsDecorator.cs b/Obsidian/WorldData/Decorators/WoodedBadlandsDecorator.cs index 5d64292d6..27ab5d534 100644 --- a/Obsidian/WorldData/Decorators/WoodedBadlandsDecorator.cs +++ b/Obsidian/WorldData/Decorators/WoodedBadlandsDecorator.cs @@ -30,7 +30,7 @@ public override void Decorate() // Flowers var grassNoise = noise.Decoration.GetValue(worldX * 0.1, 8, worldZ * 0.1); if (grassNoise > 0 && grassNoise < 0.5) // 50% chance for grass - chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.Grass); + chunk.SetBlock(pos + (0, 1, 0), BlocksRegistry.ShortGrass); var poppyNoise = noise.Decoration.GetValue(worldX * 0.03, 9, worldZ * 0.03); // 0.03 makes more groupings if (poppyNoise > 1)